:root{
  --bg:#0b0d10;
  --bg2:#12151b;
  --card:#0f1319;
  --text:#f2f5ff;
  --muted:#a7b0c7;
  --line:#1e2430;
  --accent:#2d6bff;
  --accent2:#7aa2ff;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 28px;
  --max: 1180px;
  --topbar-h: 72px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 30% 10%, rgba(45,107,255,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 35%, rgba(122,162,255,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--max);margin:0 auto;padding:0 20px}
.main{min-height:60vh}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(10,12,15,.78);
  border-bottom:1px solid rgba(30,36,48,.65);
}
.topbar__inner{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:15px 15px;
}

.brandBlock{display:flex;flex-direction:column;align-items:flex-start;gap:6px;min-width:120px}
.brand{display:flex;align-items:center}
.brand__logo{height:60px;width:auto}

.langSwitch{display:flex;gap:8px;align-items:center}
.langSwitch__btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:24px;border-radius:10px;
  border:1px solid rgba(30,36,48,.85);
  background:rgba(12,15,20,.35);
}
.langSwitch__btn:hover{background:rgba(30,36,48,.35)}
.langSwitch__btn.is-active{border-color:rgba(45,107,255,.85);box-shadow:0 0 0 2px rgba(45,107,255,.18) inset}

.topbar__countdown{display:flex;justify-content:center}
.cd{display:flex;align-items:center;gap:8px}
.cd__seg{display:flex;align-items:baseline;gap:6px}
.cd__num{font-weight:700;letter-spacing:.5px}
.cd__lab{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:1px}
.cd__sep{opacity:.45}

.cd--tiny .cd__num{font-size:14px}
.cd--tiny .cd__lab{font-size:10px}

.topbar__right{display:flex;align-items:center;justify-content:flex-end;gap:12px}
.nav{display:flex;justify-content:flex-end;gap:18px;align-items:center}
.nav a{font-size:13px;color:rgba(242,245,255,.88);text-transform:uppercase;letter-spacing:1.2px}
.nav a:hover{color:#fff}
.nav__cta{
  padding:10px 14px;border-radius:999px;
  background:linear-gradient(135deg, rgba(45,107,255,.95), rgba(122,162,255,.85));
  color:#081024;
  font-weight:700;
}
.topbar__actions{display:flex;justify-content:flex-end;align-items:center;gap:12px}
.lang{
  font-size:12px;
  padding:8px 10px;
  border:1px solid rgba(30,36,48,.85);
  border-radius:999px;
  color:rgba(242,245,255,.9);
}
.burger{display:none;background:transparent;border:0;padding:10px;cursor:pointer}
.burger span{display:block;width:22px;height:2px;background:rgba(242,245,255,.9);margin:4px 0;border-radius:2px}
.mobileNav{
  border-top:1px solid rgba(30,36,48,.75);
  background:rgba(10,12,15,.92);
  padding:12px 16px 18px;
}
.mobileNav__top{display:flex;justify-content:flex-start;padding:6px 6px 10px}
.mobileNav__lang{display:flex;gap:10px;align-items:center}
.mobileNav a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color:rgba(242,245,255,.92);
  text-transform:uppercase;
  letter-spacing:1.1px;
  font-size:13px;
}
.mobileNav a:hover{background:rgba(30,36,48,.45)}
.mobileNav__cta{
  margin-top:10px;
  background:linear-gradient(135deg, rgba(45,107,255,.95), rgba(122,162,255,.85));
  color:#081024 !important;
  font-weight:800;
  text-align:center;
}

.hero{position:relative;overflow:hidden}
.hero__bg{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 600px at 60% 35%, rgba(45,107,255,.22), transparent 60%),
    radial-gradient(800px 560px at 20% 35%, rgba(122,162,255,.12), transparent 60%);
  pointer-events:none;
}
.hero__wrap{max-width:1400px;margin:0 auto;padding:22px 18px 30px}
.hero__top{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:16px 6px}
.hero__countdownLabel{font-size:12px;color:rgba(242,245,255,.75);text-transform:uppercase;letter-spacing:1.2px;margin-bottom:8px}
.cd--big{gap:14px}
.cd__bigSeg{display:flex;flex-direction:column;align-items:flex-start;gap:4px;padding:12px 14px;border:1px solid rgba(30,36,48,.9);border-radius:16px;background:rgba(12,15,20,.55)}
.cd__bigNum{font-family:Oswald, Inter, sans-serif;font-size:34px;line-height:1;letter-spacing:1px}
.cd__bigLab{font-size:11px;color:var(--muted);letter-spacing:1.2px}

.hero__navPills{display:flex;gap:10px}
.pill{
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(30,36,48,.9);
  background:rgba(12,15,20,.45);
  color:rgba(242,245,255,.8);
  cursor:pointer;
  font-weight:700;
}
.pill.is-active{background:rgba(45,107,255,.18);border-color:rgba(45,107,255,.65);color:#fff}

.slider{position:relative}
.slide{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
  border:1px solid rgba(30,36,48,.85);
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(12,15,20,.72), rgba(12,15,20,.38));
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:520px;
  opacity:0; transform: translateY(10px);
  position:absolute; inset:0;
  pointer-events:none;
  transition: opacity .35s ease, transform .35s ease;
}
.slide.is-active{opacity:1;transform:none;position:relative;pointer-events:auto}
.slide__left{padding:46px 44px 40px}
.slide__right{position:relative;padding:24px 24px 24px 0;display:flex;align-items:center;justify-content:center}

.kicker{
  font-size:12px;
  color:rgba(242,245,255,.7);
  letter-spacing:1.6px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.h1{
  font-family:Oswald, Inter, sans-serif;
  font-size:76px;
  line-height:.92;
  letter-spacing:1px;
  margin:0 0 16px;
}
.lead{font-size:16px;color:rgba(242,245,255,.82);max-width:520px;margin:0 0 24px}
.hero__ctaRow{display:flex;gap:12px;flex-wrap:wrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(30,36,48,.95);
  font-weight:700;
  letter-spacing:.2px;
}
.btn--primary{
  background:linear-gradient(135deg, rgba(45,107,255,.98), rgba(122,162,255,.85));
  border-color:rgba(45,107,255,.65);
  color:#081024;
}
.btn--ghost{background:rgba(12,15,20,.35);color:rgba(242,245,255,.92)}
.btn--full{width:100%}

.partnerStrip{margin-top:26px;padding-top:18px;border-top:1px solid rgba(30,36,48,.65)}
.partnerStrip__label{font-size:12px;letter-spacing:1.3px;text-transform:uppercase;color:rgba(242,245,255,.65);margin-bottom:10px}
.partnerStrip__logos{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.partnerStrip__logo{padding:10px 12px;border:1px solid rgba(30,36,48,.65);border-radius:14px;background:rgba(12,15,20,.35)}
.partnerStrip__logo img{height:20px;width:auto;opacity:.95}

.media{
  position:relative;
  width:100%;
  max-width:560px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(30,36,48,.75);
  background:rgba(0,0,0,.25);
}
.media img{width:100%;height:520px;object-fit:cover}
.media__glow{
  position:absolute; inset:-40px;
  background: radial-gradient(500px 420px at 60% 40%, rgba(45,107,255,.22), transparent 60%);
  pointer-events:none;
}

.floatingCard{
  position:absolute;
  right:28px;
  bottom:26px;
  width:min(520px, 92%);
  border-radius:26px;
  background:rgba(45,107,255,.12);
  border:1px solid rgba(45,107,255,.35);
  padding:18px 18px 18px 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
}
.floatingCard__meta{font-size:12px;color:rgba(242,245,255,.72);letter-spacing:.5px;margin-bottom:8px}
.floatingCard__title{font-weight:900;letter-spacing:.6px;text-transform:uppercase;margin-bottom:8px}
.floatingCard__text{color:rgba(242,245,255,.82);font-size:14px;max-width:420px}
.floatingCard__go{
  position:absolute;
  right:14px;top:14px;
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-radius:999px;
  background:rgba(8,12,18,.6);
  border:1px solid rgba(30,36,48,.85);
  font-size:18px;
}

.section{padding:56px 0}
.section--tight{padding:30px 0 56px}
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.card{
  border-radius:18px;
  border:1px solid rgba(30,36,48,.85);
  background:rgba(12,15,20,.5);
  padding:18px;
}
.card--flat{background:rgba(12,15,20,.35)}
.card__icon{opacity:.85;font-weight:800;letter-spacing:.6px;color:rgba(122,162,255,.95);margin-bottom:10px}
.card__title{font-weight:800;letter-spacing:.4px;margin-bottom:6px}
.card__text{color:rgba(242,245,255,.78);font-size:14px}

.section__split{display:grid;grid-template-columns:1.15fr .85fr;gap:16px;align-items:start;margin-top:18px}
.h2{font-family:Oswald, Inter, sans-serif;font-size:40px;letter-spacing:.6px;margin:0 0 10px}
.p{color:rgba(242,245,255,.82);margin:0 0 18px;max-width:740px}

.infoChips{display:flex;gap:10px;flex-wrap:wrap}
.chip{padding:10px 12px;border-radius:999px;border:1px solid rgba(30,36,48,.85);background:rgba(12,15,20,.35);color:rgba(242,245,255,.86);font-size:13px}

.callout{
  border-radius:22px;
  border:1px solid rgba(45,107,255,.35);
  background:linear-gradient(180deg, rgba(45,107,255,.12), rgba(12,15,20,.35));
  padding:18px;
}
.callout__title{font-weight:900;letter-spacing:.6px;text-transform:uppercase;margin-bottom:6px}
.callout__text{color:rgba(242,245,255,.8);margin-bottom:12px}

.pageHead{padding:34px 0 10px}
.pageHead .lead{max-width:780px}
.searchRow{margin-top:16px}
.input{
  width:min(560px, 100%);
  padding:12px 14px;border-radius:14px;
  background:rgba(12,15,20,.45);
  border:1px solid rgba(30,36,48,.9);
  color:rgba(242,245,255,.9);
  outline:none;
}

.panel{
  border-radius:18px;border:1px solid rgba(30,36,48,.85);
  background:rgba(12,15,20,.45);
  padding:18px;
}
.panel__title{font-weight:900;text-transform:uppercase;letter-spacing:.8px;margin-bottom:10px}
.panel__text{color:rgba(242,245,255,.82);font-size:14px}
.panel__foot{margin-top:14px}
.list{margin:0;padding-left:18px;color:rgba(242,245,255,.82)}
.list li{margin:8px 0}

.timeline{display:grid;gap:12px}
.timeline__day{
  border:1px solid rgba(30,36,48,.85);
  border-radius:18px;
  background:rgba(12,15,20,.45);
  overflow:hidden;
}
.timeline__date{padding:14px 16px;border-bottom:1px solid rgba(30,36,48,.75);font-weight:900;letter-spacing:.8px}
.timeline__items{padding:8px 16px 12px}
.timeline__item{display:grid;grid-template-columns:74px 1fr;gap:12px;padding:10px 0;border-bottom:1px dashed rgba(30,36,48,.55)}
.timeline__item:last-child{border-bottom:0}
.timeline__time{color:rgba(122,162,255,.95);font-weight:900}
.timeline__title{color:rgba(242,245,255,.86)}

.note{
  margin-top:14px;
  border-radius:18px;
  border:1px solid rgba(45,107,255,.35);
  background:rgba(45,107,255,.10);
  padding:16px;
}
.note__title{font-weight:900;letter-spacing:.6px;text-transform:uppercase;margin-bottom:6px}
.note__text{color:rgba(242,245,255,.82)}

.artistCard{
  border-radius:18px;
  border:1px solid rgba(30,36,48,.85);
  background:rgba(12,15,20,.45);
  overflow:hidden;
  display:flex;flex-direction:column;
  transition: transform .18s ease, border-color .18s ease;
}
.artistCard:hover{transform:translateY(-2px);border-color:rgba(45,107,255,.55)}
.artistCard__img{width:100%;height:220px;object-fit:cover}
.artistCard__body{padding:14px}
.artistCard__name{font-weight:900;letter-spacing:.3px;margin-bottom:6px}
.artistCard__meta{color:rgba(242,245,255,.7);font-size:13px}

.profileHead{display:grid;grid-template-columns:120px 1fr auto;gap:16px;align-items:center;margin-top:10px}
.profileHead__avatar{width:120px;height:120px;border-radius:22px;object-fit:cover;border:1px solid rgba(30,36,48,.85)}
.profileHead__meta{color:rgba(242,245,255,.7);margin-top:6px}
.profileHead__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.tagRow{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.tag{padding:8px 10px;border-radius:999px;border:1px solid rgba(30,36,48,.85);background:rgba(12,15,20,.35);font-size:12px;color:rgba(242,245,255,.85)}
.backlink{display:inline-block;color:rgba(242,245,255,.75);margin-bottom:10px}
.embed{margin-top:12px;border-radius:18px;overflow:hidden;border:1px solid rgba(30,36,48,.85)}

.partnerCard{
  border-radius:18px;border:1px solid rgba(30,36,48,.85);
  background:rgba(12,15,20,.45);
  padding:14px;
  display:flex;flex-direction:column;align-items:center;gap:10px;
  transition: transform .18s ease, border-color .18s ease;
}
.partnerCard:hover{transform:translateY(-2px);border-color:rgba(45,107,255,.55)}
.partnerCard img{height:44px;width:auto}
.partnerCard__name{font-size:13px;color:rgba(242,245,255,.82);text-transform:uppercase;letter-spacing:1px}

.yearBlock{margin-bottom:22px}
.yearBlock__head{display:flex;gap:14px;align-items:baseline;margin-bottom:12px}
.yearBlock__year{font-family:Oswald, Inter, sans-serif;font-size:40px}
.yearBlock__title{color:rgba(242,245,255,.8)}
.winnerCard{
  border-radius:18px;border:1px solid rgba(30,36,48,.85);
  background:rgba(12,15,20,.45);
  padding:14px;
}
.winnerCard__cat{font-weight:900;text-transform:uppercase;letter-spacing:.9px;margin-bottom:6px}
.winnerCard__artist{color:rgba(242,245,255,.78);font-size:13px;display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-bottom:10px}
.winnerCard__artist a{color:rgba(122,162,255,.95)}
.winnerCard__imgs{display:flex;gap:10px;flex-wrap:wrap}
.winnerCard__imgs img{width:calc(50% - 5px);border-radius:14px;border:1px solid rgba(30,36,48,.85);object-fit:cover;height:150px}

.footer{
  border-top:1px solid rgba(30,36,48,.7);
  background:rgba(10,12,15,.7);
  padding:34px 0 18px;
  margin-top:40px;
}
.footer__grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:14px}
.footer__brand{font-family:Oswald, Inter, sans-serif;font-size:26px;letter-spacing:1px}
.footer__muted{color:rgba(242,245,255,.70);margin-top:6px}
.footer__head{font-weight:900;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px}
.footer__link{display:block;color:rgba(242,245,255,.75);margin:8px 0}
.footer__link:hover{color:#fff}
.footer__bottom{display:flex;justify-content:space-between;color:rgba(242,245,255,.6);font-size:13px;padding-top:14px;margin-top:14px;border-top:1px solid rgba(30,36,48,.55)}

@media (max-width: 980px){
  .topbar__inner{grid-template-columns: auto 1fr auto}
  .nav{display:none}
  .burger{display:block}
  .topbar__countdown{justify-content:center}
  .slide{grid-template-columns:1fr;min-height:unset}
  .slide__left{padding:30px 22px}
  .slide__right{padding:0 22px 26px}
  .media img{height:380px}
  .floatingCard{position:relative;right:auto;bottom:auto;margin-top:12px}
  .h1{font-size:56px}
  .grid4{grid-template-columns:repeat(2,1fr)}
  .grid3{grid-template-columns:repeat(2,1fr)}
  .section__split{grid-template-columns:1fr}
  .profileHead{grid-template-columns:100px 1fr;grid-template-rows:auto auto}
  .profileHead__actions{grid-column:1/-1;justify-content:flex-start}
}
@media (max-width: 560px){
  :root{--topbar-h:66px}
  .topbar__inner{gap:10px;padding:0 12px}
  .brandBlock{gap:4px;min-width:98px}
  .brand__logo{height:26px}
  .langSwitch{display:none}
  .cd--tiny .cd__lab{display:none}
  .hero__top{flex-direction:column;align-items:flex-start}
  .h1{font-size:44px}
  .lead{font-size:15px}
  .grid4,.grid3,.grid2{grid-template-columns:1fr}
  .cd__bigSeg{padding:10px 12px}
  .cd__bigNum{font-size:28px}
  .media img{height:320px}
  .winnerCard__imgs img{width:100%;height:180px}
}
