:root{
  --bg:#05070d;
  --panel:#0c1324;
  --panel2:#101a30;
  --text:#ffffff;
  --muted:#aab8ca;
  --blue:#1bd6ff;
  --green:#7cffb2;
  --orange:#ff9f43;
  --line:rgba(255,255,255,.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  color:inherit;
  text-decoration:none;
}

img,
svg{
  max-width:100%;
  display:block;
}

.page{
  width:100%;
  min-height:100svh;
  overflow:hidden;
  padding:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(120deg, rgba(27,214,255,.10), transparent 28%),
    linear-gradient(240deg, rgba(124,255,178,.08), transparent 32%),
    #05070d;
}

.hero{
  width:100%;
  max-width:1180px;
  overflow:hidden;
  position:relative;

  border-radius:34px;
  border:1px solid var(--line);

  background:
    radial-gradient(circle at 12% 18%, rgba(27,214,255,.18), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(124,255,178,.12), transparent 28%),
    linear-gradient(145deg, rgba(12,19,36,.95), rgba(5,7,13,.98));

  box-shadow:0 35px 90px rgba(0,0,0,.55);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.08;

  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);

  background-size:46px 46px;
}

.hero::after{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  right:-120px;
  top:-120px;
  border-radius:50%;
  background:rgba(27,214,255,.16);
  filter:blur(30px);
  pointer-events:none;
}

.header{
  position:relative;
  z-index:2;

  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  padding:24px 34px;
}

.logo-area{
  width:100%;
  max-width:320px;
  min-width:0;
  display:flex;
  align-items:center;
}

.logo{
  width:100%;
  max-width:320px;
  height:auto;
  object-fit:contain;
}

.live-status{
  flex:0 0 auto;

  display:flex;
  align-items:center;
  gap:10px;

  padding:11px 16px;

  border-radius:999px;
  border:1px solid rgba(124,255,178,.25);
  background:rgba(124,255,178,.08);

  color:#edfff5;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
}

.live-status span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 7px rgba(124,255,178,.13);
  animation:pulse 1.5s infinite;
}

.hero-content{
  position:relative;
  z-index:2;

  width:100%;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
  gap:34px;

  padding:38px 44px 46px;
}

.main-text,
.side-panel{
  min-width:0;
}

.small-label{
  display:inline-flex;
  margin-bottom:18px;
  padding:9px 14px;

  border-radius:999px;
  border:1px solid rgba(27,214,255,.25);
  background:rgba(27,214,255,.08);

  color:#d8faff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.09em;
}

h1{
  max-width:720px;
  margin-bottom:20px;

  font-size:clamp(38px,5vw,72px);
  line-height:.98;
  letter-spacing:-.055em;
}

.subtitle{
  max-width:590px;
  margin-bottom:26px;

  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.animated-line{
  width:100%;
  max-width:620px;
  overflow:hidden;

  display:flex;
  gap:10px;

  margin-bottom:26px;
  padding:10px;

  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.animated-line span{
  flex:0 0 auto;
  padding:10px 16px;

  border-radius:999px;
  background:rgba(255,255,255,.07);

  color:#eaffff;
  font-size:13px;
  font-weight:800;

  animation:moveText 7s linear infinite;
}

.animated-line span:nth-child(2){
  animation-delay:.2s;
}

.animated-line span:nth-child(3){
  animation-delay:.4s;
}

.animated-line span:nth-child(4){
  animation-delay:.6s;
}

.countdown{
  width:100%;
  max-width:620px;

  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.countdown div{
  min-width:0;
  padding:22px 12px;

  text-align:center;

  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);

  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
}

.countdown strong{
  display:block;
  font-size:40px;
  line-height:1;
  font-weight:900;
}

.countdown span{
  display:block;
  margin-top:8px;

  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.side-panel{
  display:grid;
  gap:12px;
}

.panel-card{
  width:100%;
  min-width:0;

  padding:17px;

  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);

  background:rgba(255,255,255,.055);
  backdrop-filter:blur(12px);

  animation:floatCard 4s ease-in-out infinite;
}

.panel-card:nth-child(2){
  animation-delay:.2s;
}

.panel-card:nth-child(3){
  animation-delay:.4s;
}

.panel-card:nth-child(4){
  animation-delay:.6s;
}

.panel-card small{
  display:block;
  margin-bottom:6px;

  color:var(--muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.panel-card strong,
.panel-card a{
  display:block;

  color:#ffffff;
  font-size:16px;
  font-weight:800;
  line-height:1.35;

  overflow-wrap:anywhere;
}

.panel-card p{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.highlight{
  border-color:rgba(27,214,255,.22);
  background:linear-gradient(145deg, rgba(27,214,255,.10), rgba(124,255,178,.06));
}

.socials{
  width:100%;

  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}

.socials a{
  min-width:0;
  height:56px;

  display:grid;
  place-items:center;

  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);

  transition:.25s ease;
}

.socials a:hover{
  transform:translateY(-3px);
  background:rgba(27,214,255,.13);
  border-color:rgba(27,214,255,.35);
}

.socials svg{
  width:24px;
  height:24px;
  fill:#eafaff;
}

@keyframes pulse{
  0%,100%{
    opacity:.7;
  }
  50%{
    opacity:1;
  }
}

@keyframes moveText{
  0%{
    transform:translateX(0);
  }
  50%{
    transform:translateX(12px);
  }
  100%{
    transform:translateX(0);
  }
}

@keyframes floatCard{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-5px);
  }
}

@media(max-width:960px){

  .page{
    align-items:flex-start;
    padding:16px;
  }

  .hero{
    border-radius:28px;
  }

  .header{
    padding:22px;
  }

  .logo-area{
    max-width:280px;
  }

  .logo{
    max-width:280px;
  }

  .hero-content{
    grid-template-columns:1fr;
    padding:30px 24px 26px;
  }

  h1{
    font-size:48px;
  }

  .subtitle{
    font-size:16px;
  }
}

@media(max-width:600px){

  .page{
    padding:10px;
  }

  .hero{
    border-radius:22px;
  }

  .header{
    flex-direction:column;
    justify-content:center;
    padding:18px 14px;
    gap:14px;
  }

  .logo-area{
    max-width:240px;
    justify-content:center;
  }

  .logo{
    max-width:240px;
  }

  .live-status{
    font-size:12px;
    white-space:normal;
    text-align:center;
  }

  .hero-content{
    padding:22px 14px 16px;
    gap:22px;
  }

  .small-label{
    font-size:11px;
    margin-bottom:14px;
  }

  h1{
    font-size:35px;
    line-height:1.03;
    letter-spacing:-.04em;
  }

  .subtitle{
    font-size:15px;
    margin-bottom:20px;
  }

  .animated-line{
    max-width:100%;
    margin-bottom:20px;
    border-radius:18px;
  }

  .animated-line span{
    padding:9px 13px;
    font-size:12px;
  }

  .countdown{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .countdown div{
    padding:18px 8px;
    border-radius:18px;
  }

  .countdown strong{
    font-size:31px;
  }

  .panel-card{
    padding:15px;
    border-radius:18px;
  }

  .socials{
    gap:8px;
  }

  .socials a{
    height:48px;
    border-radius:15px;
  }

  .hero::after{
    display:none;
  }
}

@media(max-width:380px){

  .page{
    padding:8px;
  }

  .logo-area,
  .logo{
    max-width:210px;
  }

  h1{
    font-size:30px;
  }

  .countdown strong{
    font-size:28px;
  }

  .panel-card strong,
  .panel-card a{
    font-size:14px;
  }
}