*{box-sizing:border-box;margin:0;padding:0}
:root{
  --black:#000;
  --panel:#070604;
  --panel2:#0d0a06;
  --gold:#d6a13c;
  --gold2:#ffe2a2;
  --gold3:#805619;
  --text:#fff6e5;
  --muted:#b9ab90;
  --line:rgba(214,161,60,.32);
  --lineSoft:rgba(255,226,162,.13);
  --shadow:0 28px 90px rgba(0,0,0,.68);
}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  overflow-x:hidden;
  background:#000;
  color:var(--text);
  font-family:Inter,Arial,Helvetica,sans-serif;
}
a{text-decoration:none;color:inherit}
.loader{
  position:fixed;
  inset:0;
  z-index:999;
  display:grid;
  place-items:center;
  background:#000;
  transition:opacity .45s ease,visibility .45s ease;
}
.loader img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:0 0 60px rgba(214,161,60,.25);
}
.loader span{
  position:absolute;
  width:220px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:translateY(88px);
  animation:loadLine 1s ease-in-out infinite;
}
.loader.hide{opacity:0;visibility:hidden}
@keyframes loadLine{0%,100%{opacity:.35;width:120px}50%{opacity:1;width:240px}}
.texture{
  position:fixed;inset:0;pointer-events:none;z-index:-3;opacity:.13;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px);
  background-size:74px 74px;
}
.page-glow{position:fixed;border-radius:999px;filter:blur(110px);opacity:.16;z-index:-4}
.glow-left{width:420px;height:420px;background:var(--gold);left:-220px;top:120px}
.glow-right{width:520px;height:520px;background:var(--gold3);right:-270px;top:160px}
.header{
  width:min(1180px,calc(100% - 32px));
  margin:18px auto 0;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 16px;
  border:1px solid var(--lineSoft);
  border-radius:22px;
  background:rgba(0,0,0,.88);
  backdrop-filter:blur(16px);
  position:sticky;
  top:14px;
  z-index:50;
}
.brand{display:flex;align-items:center;gap:13px;min-width:max-content}
.brand img{width:54px;height:54px;border-radius:14px;object-fit:cover;border:1px solid var(--line);box-shadow:0 0 26px rgba(214,161,60,.22)}
.brand strong{display:block;font-size:14px;letter-spacing:2px}
.brand span{display:block;font-size:12px;color:var(--muted);margin-top:3px}
.nav{display:flex;align-items:center;gap:20px}
.nav a{font-size:13px;color:var(--muted);text-transform:uppercase;letter-spacing:.8px}
.nav a:hover{color:var(--gold2)}
.header-button{
  min-height:42px;
  padding:0 17px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--gold2);
  border:1px solid var(--line);
  background:rgba(214,161,60,.07);
  font-size:13px;
  font-weight:800;
}
main{width:min(1180px,calc(100% - 32px));margin:0 auto}
.hero{
  min-height:calc(100vh - 112px);
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:44px;
  align-items:center;
  padding:62px 0 74px;
}
.eyebrow{
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:2.4px;
  text-transform:uppercase;
  margin-bottom:16px;
}
h1{
  max-width:690px;
  font-family:Inter,Arial,Helvetica,sans-serif;
  font-size:clamp(48px,6.3vw,88px);
  line-height:.98;
  letter-spacing:-4px;
  font-weight:950;
}
.lead{
  max-width:610px;
  margin-top:24px;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.button{
  min-height:50px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.8px;
  transition:.2s;
}
.button:hover{transform:translateY(-2px)}
.button.gold{
  color:#140d02;
  background:linear-gradient(135deg,#fff0c5,#d6a13c,#805619);
  box-shadow:0 18px 46px rgba(214,161,60,.22);
}
.button.outline{
  color:var(--gold2);
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}
.hero-media{display:flex;justify-content:center}
.brand-frame{
  width:min(100%,620px);
  padding:12px;
  border:1px solid var(--line);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(214,161,60,.10),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.brand-frame img{
  width:100%;
  display:block;
  border-radius:18px;
  border:1px solid var(--lineSoft);
}
.gold-strip{
  overflow:hidden;
  border-top:1px solid var(--lineSoft);
  border-bottom:1px solid var(--lineSoft);
  margin-bottom:82px;
  background:rgba(214,161,60,.035);
}
.gold-strip-track{
  display:inline-flex;
  gap:34px;
  padding:13px 0;
  white-space:nowrap;
  animation:strip 24s linear infinite;
}
.gold-strip span{
  color:var(--gold2);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.4px;
}
.gold-strip span:before{content:"◆ ";color:var(--gold)}
@keyframes strip{to{transform:translateX(-50%)}}
.main-sponsor{
  display:grid;
  grid-template-columns:1fr 390px;
  gap:22px;
  align-items:stretch;
  margin-bottom:82px;
}
.main-copy,.main-card,.sponsor-card,.apply{
  border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(214,161,60,.08),rgba(255,255,255,.016)),rgba(7,6,4,.96);
  box-shadow:var(--shadow);
}
.main-copy{padding:34px;border-radius:28px}
.main-copy h2,.section-head h2,.apply h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  letter-spacing:-1px;
  font-weight:900;
}
.main-copy p,.main-card p,.sponsor-card p,.apply p{
  color:var(--muted);
  line-height:1.65;
  margin-top:14px;
}
.main-card{
  padding:26px;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.main-card span{
  align-self:flex-start;
  padding:8px 12px;
  border-radius:999px;
  color:#140d02;
  background:linear-gradient(135deg,#fff0c5,#d6a13c);
  font-size:12px;
  font-weight:900;
}
.main-card h3{font-size:28px;margin-top:24px}
.main-card .button{align-self:flex-start;margin-top:24px}
.section{margin-bottom:82px}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:24px;
  padding-bottom:22px;
  border-bottom:1px solid var(--lineSoft);
}
.sponsor-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.sponsor-card{
  min-height:345px;
  padding:24px;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.sponsor-logo{
  width:68px;
  height:68px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#000;
  padding:5px;
  box-shadow:0 0 34px rgba(214,161,60,.16);
  margin-bottom:18px;
}
.sponsor-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:13px;
}
.card-top{display:flex;justify-content:space-between;align-items:center;gap:12px}
.card-top span{
  color:var(--gold2);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.2px;
}
.card-top b{
  color:rgba(255,226,162,.24);
  font-size:32px;
}
.sponsor-card h3{
  font-size:28px;
  line-height:1.08;
  margin-top:8px;
  font-weight:900;
}
.card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.card-actions a{
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.card-actions a:first-child{
  color:#140d02;
  background:linear-gradient(135deg,#fff0c5,#d6a13c,#805619);
}
.card-actions a:last-child{
  color:var(--gold2);
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
}
.why{
  margin-bottom:82px;
  border-top:1px solid var(--lineSoft);
  border-bottom:1px solid var(--lineSoft);
}
.why-line{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:24px;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid var(--lineSoft);
}
.why-line:last-child{border-bottom:0}
.why-line span{
  color:rgba(255,226,162,.28);
  font-size:32px;
  font-weight:900;
}
.why-line p{
  color:var(--text);
  font-size:18px;
  font-weight:800;
}
.apply{
  margin-bottom:82px;
  padding:42px;
  border-radius:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.apply p{max-width:620px}
.footer{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 30px;
  padding-top:22px;
  border-top:1px solid var(--lineSoft);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  color:var(--muted);
  font-size:13px;
}
.footer strong{display:block;color:var(--text);letter-spacing:1.5px}
.footer p{margin-top:4px}
.footer-links{display:flex;gap:18px;justify-content:center}
.footer-links a{color:var(--gold2);font-weight:800}
.footer>span{text-align:right}
.mobile-dock{display:none}
@media(max-width:1050px){
  .header-button{display:none}
  .hero{grid-template-columns:1fr}
  .hero-media{justify-content:flex-start}
  .brand-frame{max-width:560px}
  .main-sponsor{grid-template-columns:1fr}
  .sponsor-grid{grid-template-columns:1fr}
  .apply{flex-direction:column;align-items:flex-start}
  .footer{grid-template-columns:1fr;align-items:flex-start}
  .footer-links{justify-content:flex-start;flex-wrap:wrap}
  .footer>span{text-align:left}
}
@media(max-width:760px){
  body{padding-bottom:76px}
  .loader img{width:94px;height:94px}
  .header{flex-direction:column;align-items:flex-start}
  .nav{width:100%;overflow-x:auto;padding-bottom:4px}
  main,.header,.footer{width:min(100% - 24px,1180px)}
  .hero{min-height:auto;padding:44px 0 44px}
  h1{font-size:46px;letter-spacing:-2.4px}
  .lead{font-size:16px}
  .button{width:100%;padding:0 16px}
  .gold-strip{margin-bottom:58px}
  .main-copy,.main-card,.sponsor-card,.apply{border-radius:22px;padding:22px}
  .card-actions a{width:100%}
  .section-head{display:block}
  .why-line{grid-template-columns:54px 1fr;gap:14px}
  .why-line p{font-size:16px}
  .mobile-dock{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:80;
    padding:10px;
    border:1px solid var(--line);
    background:rgba(0,0,0,.94);
    backdrop-filter:blur(16px);
  }
  .mobile-dock a{
    min-height:46px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#140d02;
    background:linear-gradient(135deg,#fff0c5,#d6a13c,#805619);
    font-size:13px;
    font-weight:900;
  }
  .mobile-dock a:last-child{
    color:var(--gold2);
    border:1px solid var(--line);
    background:rgba(255,255,255,.03);
  }
}


/* Premium upgrade: sponsor logo, status, hover, mobile polish */
.sponsor-card{
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.sponsor-card:hover{
  transform:translateY(-5px);
  border-color:rgba(255,226,162,.45);
  box-shadow:0 34px 100px rgba(214,161,60,.13);
}
.sponsor-logo{
  width:68px;
  height:68px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#000;
  padding:5px;
  box-shadow:0 0 34px rgba(214,161,60,.16);
  margin:16px 0 18px;
}
.sponsor-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:13px;
}
.status{
  display:inline-flex;
  margin-top:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--lineSoft);
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}
@media(max-width:760px){
  .hero{padding-top:34px}
  .brand-frame{max-width:420px}
  .sponsor-logo{width:60px;height:60px;border-radius:16px}
}


/* Chat + announcement + active sponsor + premium loader */
.announce-bar{
  width:min(1180px,calc(100% - 32px));
  margin:14px auto 0;
  min-height:38px;
  padding:0 16px;
  border:1px solid var(--lineSoft);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:var(--gold2);
  background:linear-gradient(90deg,rgba(214,161,60,.08),rgba(255,255,255,.018),rgba(214,161,60,.08));
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.announce-bar b{color:var(--gold)}
.loader:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  border:1px solid rgba(214,161,60,.18);
  box-shadow:0 0 80px rgba(214,161,60,.18), inset 0 0 60px rgba(214,161,60,.08);
  animation:loaderPulse 1.25s ease-in-out infinite;
}
.loader img{animation:logoGlow 1.35s ease-in-out infinite}
@keyframes loaderPulse{0%,100%{transform:scale(.92);opacity:.35}50%{transform:scale(1.04);opacity:.9}}
@keyframes logoGlow{0%,100%{filter:brightness(1)}50%{filter:brightness(1.28)}}
.status{position:relative;padding-left:22px}
.status:before{
  content:"";
  position:absolute;
  left:8px;
  top:50%;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 0 rgba(214,161,60,.55);
  transform:translateY(-50%);
  animation:activePulse 1.5s infinite;
}
@keyframes activePulse{
  0%{box-shadow:0 0 0 0 rgba(214,161,60,.65)}
  70%{box-shadow:0 0 0 8px rgba(214,161,60,0)}
  100%{box-shadow:0 0 0 0 rgba(214,161,60,0)}
}
.chat-section{
  margin-bottom:82px;
  padding:32px;
  border:1px solid var(--line);
  border-radius:30px;
  background:radial-gradient(circle at 12% 20%,rgba(214,161,60,.16),transparent 28%),linear-gradient(145deg,rgba(214,161,60,.08),rgba(255,255,255,.016)),rgba(7,6,4,.96);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:92px 1fr auto;
  align-items:center;
  gap:24px;
}
.chat-badge{
  width:92px;
  height:92px;
  border-radius:24px;
  border:1px solid var(--line);
  padding:7px;
  background:#000;
  box-shadow:0 0 42px rgba(214,161,60,.18);
}
.chat-badge img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}
.chat-content h2{
  font-size:clamp(28px,3.5vw,44px);
  line-height:1.06;
  letter-spacing:-1px;
  font-weight:950;
}
.chat-content p:not(.eyebrow){
  color:var(--muted);
  line-height:1.65;
  margin-top:12px;
  max-width:650px;
}
@media(max-width:1050px){
  .chat-section{grid-template-columns:1fr;align-items:flex-start}
  .chat-section .button{width:max-content}
}
@media(max-width:760px){
  .announce-bar{
    width:min(100% - 24px,1180px);
    border-radius:18px;
    min-height:auto;
    padding:11px 14px;
    flex-wrap:wrap;
    text-align:center;
    font-size:10px;
  }
  .chat-section{border-radius:22px;padding:22px}
  .chat-section .button{width:100%}
  .mobile-dock.three{grid-template-columns:1fr 1fr 1fr}
  .mobile-dock.three a{font-size:12px}
}


/* New Saltanat visual integration */
.brand-frame.wide-visual{
  padding:8px;
  border-radius:30px;
}
.brand-frame.wide-visual img{
  aspect-ratio:1/1;
  object-fit:cover;
  object-position:center;
}
.loader img{
  object-fit:cover;
}
.chat-badge img,
.sponsor-logo img{
  object-fit:cover;
}
@media(max-width:760px){
  .brand-frame.wide-visual{
    max-width:440px;
  }
}


/* Professional final polish */
.header{
  box-shadow:0 18px 70px rgba(0,0,0,.34);
}
.announce-bar{
  margin-top:16px;
  box-shadow:0 16px 60px rgba(214,161,60,.06);
}
.hero{
  padding-top:70px;
}
.hero-content{
  position:relative;
}
.hero-content:before{
  content:"";
  position:absolute;
  left:0;
  top:-28px;
  width:72px;
  height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
.brand-frame{
  overflow:hidden;
}
.brand-frame img{
  filter:contrast(1.04) saturate(1.02);
}
.main-sponsor{
  margin-top:4px;
}
.main-copy,.main-card,.sponsor-card,.chat-section,.apply{
  background:
    linear-gradient(145deg,rgba(214,161,60,.075),rgba(255,255,255,.012)),
    rgba(3,3,3,.98);
}
.section-head{
  align-items:center;
}
.sponsor-card{
  border-color:rgba(214,161,60,.25);
}
.sponsor-card:hover{
  background:
    radial-gradient(circle at 20% 0%,rgba(214,161,60,.14),transparent 35%),
    linear-gradient(145deg,rgba(214,161,60,.08),rgba(255,255,255,.015)),
    rgba(3,3,3,.98);
}
.chat-section{
  margin-top:10px;
}
.apply{
  border-radius:28px;
}
.footer{
  padding-bottom:26px;
}
@media(max-width:760px){
  .hero{
    padding-top:46px;
  }
  .hero-content:before{
    top:-18px;
  }
  .announce-bar{
    margin-top:12px;
  }
}
