  :root{
    --bg:#0b0a08;
    --panel:#141210;
    --panel-2:#1b1815;
    --gold-hi:#e8c887;
    --gold-mid:#b8934f;
    --gold-low:#6e5227;
    --ink:#f3ead9;
    --muted:#9a9184;
    --line:rgba(232,200,135,0.16);
    --ok:#9fc98a;
    --no:#c9857f;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    padding-top: 80px;
    background:var(--bg);
    color:var(--ink);
    font-family:'Manrope',sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{color:inherit;}
  img{max-width:100%;display:block;}
  ::selection{background:var(--gold-mid);color:#141210;}

  .display{
    font-family:'Cormorant Garamond',serif;
    font-weight:700;
    letter-spacing:0.02em;
  }
  .numeric{
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-variant-numeric:lining-nums tabular-nums;
    font-feature-settings:'lnum' 1,'tnum' 1;
  }
  .eyebrow{
    font-size:12px;
    letter-spacing:0.26em;
    text-transform:uppercase;
    color:var(--gold-mid);
    font-weight:700;
  }

  body {
    animation: pageEnter .5s ease;
}

@keyframes pageEnter {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

  section.block, footer{
    padding-left:max(24px, calc((100% - 1180px) / 2)) !important;
    padding-right:max(24px, calc((100% - 1180px) / 2)) !important;
  }
  main{
    padding-left:max(24px, calc((100% - 1180px) / 2)) !important;
    padding-right:max(24px, calc((100% - 1180px) / 2)) !important;
    padding-top: 30px;
  }
  header{
    padding-left:max(24px, calc((100% - 1920px) / 2));
    padding-right:max(24px, calc((100% - 1920px) / 2));
  }
  .hero{
    padding-left:max(24px, calc((100% - 1320px) / 2)) !important;
    padding-right:max(24px, calc((100% - 1320px) / 2)) !important;
  }
  .hero-block{
    padding-left:max(24px, calc((100% - 1320px) / 2)) !important;
    padding-right:max(24px, calc((100% - 1320px) / 2)) !important;
  }

  .btn-vote{
    display:inline-block;
    background:linear-gradient(180deg, var(--gold-hi), var(--gold-mid));
    color:#1a1408;
    border:none;
    padding:14px 32px;
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-size:14px;
    letter-spacing:0.07em;
    text-transform:uppercase;
    text-decoration:none;
    cursor:pointer;
    border-radius:2px;
    box-shadow:0 8px 26px rgba(232,200,135,0.18);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-vote:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(232,200,135,0.3); }
  .btn-vote.small{ padding:10px 22px; font-size:12px; }
  .btn-vote.ghost{
    background:none; color:var(--gold-hi); box-shadow:none;
    border:1px solid var(--gold-low);
  }
  .btn-vote.ghost:hover{ border-color:var(--gold-hi); box-shadow:none; }
  .btn-ghost{
    color:var(--gold-hi);
    text-decoration:none;
    font-size:13px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    border-bottom:1px solid var(--gold-low);
    padding-bottom:4px;
    white-space:nowrap;
  }
  .btn-ghost:hover{ border-color:var(--gold-hi); }

  header{
    position:fixed;
    display:flex; align-items:center; justify-content: space-between;
    gap:25px;
    padding-top:18px; padding-bottom:23px;
    border-bottom:1px solid var(--line);
    flex-wrap:wrap;
    top: 0;
    left: 0;
    width: 100%;
    background:var(--bg);
    z-index: 1000;
  }
  .brand{ display:flex; align-items:center; gap:10px; text-decoration:none; margin-right: auto; }
  .brand img{ height:40px; width:auto; }
  .brand span{
    font-family:'Cormorant Garamond',serif; font-weight:700;
    font-size:19px; letter-spacing:0.05em; color:var(--gold-hi);
  }
  nav.top-links{ display:flex; align-items:center; gap:22px; font-size:12.5px; color:var(--muted); flex-wrap:wrap; }
  nav.top-links a{ text-decoration:none; }
  nav.top-links a:hover{ color:var(--gold-hi); }
  .header-right{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
  .header-left{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }

.top-buttons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-buttons a {
  display: inline-block;

  padding: 8px 16px;

  background: var(--bg);
  color: var(--gold-hi);

  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;

  text-decoration: none;

  border: 1px solid var(--gold-mid);
  border-radius: 2px;

  box-shadow: 0 5px 16px rgba(232, 200, 135, .08);

  transition:
    color .2s ease,
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.top-buttons a:hover {
  color: #1a1408;
  background: var(--gold-hi);

  transform: translateY(-1px);

  box-shadow:
    0 7px 20px rgba(232, 200, 135, .22);
}

  .hero{
    position:relative;
    padding-top:6vw; padding-bottom:4vw;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
    align-items:start;
    border-bottom:1px solid var(--line);
    overflow:hidden;
  }
  .sweep{
    position:absolute; top:-30%; right:-15%;
    width:70%; height:160%;
    background:radial-gradient(ellipse at center, rgba(232,200,135,0.14), transparent 65%);
    filter:blur(40px);
    pointer-events:none;
    animation:driftSweep 24s ease-in-out infinite alternate;
    z-index:0;
  }
  @keyframes driftSweep{ 0%{transform:translateY(0) scale(1);} 100%{transform:translateY(-3%) scale(1.05);} }
  @media (prefers-reduced-motion:reduce){ .sweep{animation:none;} }

  .hero-bg-video{
    position:absolute; inset:0; z-index:0;
    overflow:hidden; pointer-events:none;
    mix-blend-mode:screen; opacity:0.6;
  }
  .hero-bg-video video{ width:100%; height:100%; object-fit:cover; }

  .hero-content{ position:relative; z-index:2; }
  .hero-content .wordmark{ max-width:520px; margin:16px 0 4px; }
  .hero-content h2.sub{
    font-family:'Cormorant Garamond',serif; font-weight:600;
    font-size:clamp(20px,2.4vw,28px);
    color:var(--ink); margin:0 0 22px; line-height:1.3;
  }
  .hero p.lead{
    margin:0 0 34px;
    font-size:16px; line-height:1.75;
    color:var(--muted);
    max-width:600px;
  }


  .hero p.lead strong{ color:var(--ink); font-weight:600; }
  .cta-row{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }

  .hero-visual{ position:relative; z-index:2; }
  .render-frame{
    position:relative;
    height:clamp(300px, 32vw, 440px);
    border:1px dashed var(--gold-low);
    background:
      radial-gradient(ellipse 70% 50% at 50% 20%, rgba(232,200,135,0.14), transparent 60%),
      linear-gradient(180deg, #1c1812, #0e0c09);
    display:flex; align-items:center; justify-content:center;
    text-align:center; padding:24px;
    overflow:hidden;
  }
  .render-frame img, .render-frame video{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  }
  .render-frame .placeholder-note{
    position:relative; z-index:1;
    font-size:12.5px; line-height:1.6; color:var(--muted);
    max-width:220px;
  }
  .render-frame .placeholder-note b{ color:var(--gold-hi); display:block; margin-bottom:6px; font-size:13px; }

  .countdown-box{
    transform: translateY(-50%);  /* поднимает вверх на 15% от своей высоты */
    margin-top:-90px;
    border:1px solid var(--line);
    background:var(--panel);
    padding:18px 20px;
  }
  .countdown-box .cap-top{ font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-mid); margin-bottom:12px; }
  .countdown{ display:flex; }
  .countdown .unit{ flex:1; text-align:center; border-right:1px solid var(--line); }
  .countdown .unit:last-child{ border-right:none; }
  .countdown .num{ font-size:clamp(24px,3vw,32px); line-height:1; color:var(--ink); }
  .countdown .lbl{ margin-top:6px; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); }
  .countdown-caption{ margin-top:12px; font-size:11.5px; color:var(--gold-mid); text-align:center; }
  .countdown-box .btn-vote{ width:100%; text-align:center; margin-top:14px; }



  section.block{ position:relative; z-index:2; padding:70px 0; border-bottom:1px solid var(--line); overflow: hidden; }
  .block-head{ margin-bottom:40px; max-width:720px; }
  .block-head-about{ margin-bottom:-80px; max-width:720px !important; }
  .block-head h2{ font-size:clamp(28px,3.6vw,42px); margin:10px 0 12px; color:var(--gold-hi); }
  .block-head p{ color:var(--muted); line-height:1.7; font-size:15px; }
  .block-head-row{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }

  .history-grid p{ color:var(--muted); line-height:1.8; font-size:15px; margin:0 0 16px; max-width:760px; }
  .history-grid p strong{ color:var(--ink); }
  .history-grid a{ color:var(--gold-hi); text-decoration:underline; text-decoration-color:var(--gold-low); text-underline-offset:2px; }
  .history-grid a:hover{ text-decoration-color:var(--gold-hi); }

  /* ---------- facts / trivia tabs ---------- */
  .facts-tabs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:2px; }
  .facts-tab{
    background:var(--panel); border:1px solid var(--line); color:var(--muted);
    font-family:'Manrope',sans-serif; font-weight:700; font-size:12.5px;
    letter-spacing:0.06em; text-transform:uppercase;
    padding:11px 20px; cursor:pointer; border-bottom:none;
  }
  .facts-tab.active{ color:var(--gold-hi); background:var(--panel-2); }
  .facts-panel-wrap{ border:1px solid var(--line); background:var(--panel-2); padding:30px 32px; }
  .facts-panel{ display:none; }
  .facts-panel.active{ display:block; }
  .facts-panel ul{ margin:0; padding:0; list-style:none; columns:2; column-gap:40px; }
  .facts-panel li{
    font-size:14px; line-height:1.65; color:var(--muted);
    padding:0 0 16px; break-inside:avoid; position:relative; padding-left:18px;
  }
  .facts-panel li::before{ content:'✦'; position:absolute; left:0; top:1px; color:var(--gold-mid); font-size:11px; }
  .facts-panel a{ color:var(--gold-hi); text-decoration:underline; text-decoration-color:var(--gold-low); text-underline-offset:2px; }
  .facts-panel a:hover{ text-decoration-color:var(--gold-hi); }
  @media (max-width:700px){ .facts-panel ul{ columns:1; } .facts-panel-wrap{ padding:24px 20px; } }

  .about-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
  .about-card{ background:var(--panel); border:1px solid var(--line); padding:26px 24px; }
  .about-card .n{ font-size:30px; color:var(--gold-mid); }
  .about-card h3{ margin:10px 0 10px; font-size:17px; color:var(--ink); font-weight:700; }
  .about-card p{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.6; }

  .nom-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:var(--line); border:1px solid var(--line);
  }
  .nom-card{ background:var(--panel); padding:24px 22px; cursor:pointer; transition:background .2s ease; }
  .nom-card:hover{ background:var(--panel-2); }
  .nom-card .nom-index{ font-size:11px; letter-spacing:0.18em; color:var(--gold-low); text-transform:uppercase; }
  .nom-card h3{ font-family:'Cormorant Garamond',serif; font-size:21px; color:var(--gold-hi); margin:10px 0 12px; line-height:1.2; min-height:52px; }
  .nom-card ul{ list-style:none; margin:0; padding:0; font-size:13px; color:var(--muted); line-height:1.9; max-height:0; overflow:hidden; transition:max-height .3s ease; }
  .nom-card.open ul{ max-height:300px; }
  .nom-card ul li{ border-top:1px dashed var(--line); padding-top:5px; margin-top:5px; }
  .nom-card ul li:first-child{ border-top:none; margin-top:0; }
  .nom-toggle{ font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-mid); margin-top:12px; display:inline-block; }
  .nom-cta{ margin-top:36px; text-align:center; }

  footer{ position:relative; z-index:2; padding-top:64px; padding-bottom:36px; }
  .footer-top{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom:44px; }
  .footer-top .brand img{ height:34px; }
  .footer-grid{
    display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:46px;
    padding-bottom:44px; border-bottom:1px solid var(--line); border-top:1px solid var(--line);
    padding-top:44px;
  }
  .footer-grid h4{ font-size:12px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-mid); margin:0 0 18px; }
  .staff-item{ display:flex; justify-content:space-between; gap:12px; font-size:14px; padding:10px 0; border-top:1px solid var(--line); }
  .staff-item:first-of-type{ border-top:none; }
  .staff-item .role{ color:var(--muted); font-size:12px; text-align:right; }
  .foot-links a{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink); font-size:14px; padding:10px 0; border-top:1px solid var(--line); }
  .foot-links a:first-of-type{ border-top:none; }
  .foot-links a:hover{ color:var(--gold-hi); }
  .foot-links svg{ width:15px; height:15px; fill:currentColor; flex-shrink:0; }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:11.5px; color:var(--muted); flex-wrap:wrap; gap:10px; }

  @media (max-width:900px){
    .hero{ grid-template-columns:1fr; padding-top:12vw; }
    .history-grid, .about-grid, .nom-grid{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr; gap:34px; }
    .render-frame{ height:56vw; }
  }

    @media (max-width: 700px) {
  header {
    display: block;
    padding: 12px 16px 14px;
  }

  .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    margin-right: 0;
    min-width: 0;
  }

  .brand img {
    height: 32px;
  }

  .brand span {
    font-size: 14px;
    white-space: nowrap;
  }

  .top-buttons {
    display: flex;
    gap: 12px;
    font-size: 11px;
  }

  .header-right {
    margin-top: 12px;
    display: block;
  }

  .top-links {
    display: none !important;
  }

  .btn-vote.small {
    width: 100%;
    padding: 10px 14px;
  }
}

.scroll-hint {
  position: absolute;

  left: 0;
  bottom: 80px;

  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: var(--muted);

  text-decoration: none;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition:
    color .25s ease,
    transform .25s ease;
}

.scroll-hint {
  transition:
    opacity .5s ease,
    transform .5s ease;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.scroll-hint:hover {
  color: var(--gold-hi);
}

.scroll-arrow {
  position: relative;

  width: 34px;
  height: 42px;

  display: flex;
  justify-content: center;

  animation: scrollArrowMove 1.8s ease-in-out infinite;
}

/* вертикальная линия */
.scroll-arrow::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 1px;
  height: 27px;

  background: var(--gold-hi);

  transform: translateX(-50%);

  box-shadow:
    0 0 8px rgba(232, 200, 135, 0.45);
}

/* наконечник стрелки */
.scroll-arrow span {
  position: absolute;

  bottom: 5px;

  width: 12px;
  height: 12px;

  border-right: 1px solid var(--gold-hi);
  border-bottom: 1px solid var(--gold-hi);

  transform: rotate(45deg);

  box-shadow:
    3px 3px 8px rgba(232, 200, 135, 0.2);
}


@keyframes scrollArrowMove {

  0%,
  100% {
    transform: translateY(0);

    opacity: .55;
  }

  50% {
    transform: translateY(7px);

    opacity: 1;
  }

}

  .about-extra{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.about-bottom{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;

  margin-top:24px;

  align-items:start;
}

/* Место под рендер */

.about-render{
  position:relative;
  height:320px;
  overflow:hidden;
  border:1px solid var(--line);

  background:
    radial-gradient(
      ellipse 70% 60% at 50% 20%,
      rgba(232,200,135,.18),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #211b13,
      #0e0c09
    );
}

.about-render::before{
  content:'';
  position:absolute;
  inset:12px;
  border:1px dashed rgba(232,200,135,.25);
  z-index:2;
  pointer-events:none;
}

.about-render img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.85;
  transition:transform .6s ease, opacity .4s ease;
}

.about-render:hover img{
  transform:scale(1.04);
  opacity:1;
}

.about-render-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(11,10,8,.05) 20%,
      rgba(11,10,8,.3) 55%,
      rgba(11,10,8,.95) 100%
    );
  pointer-events:none;
}

.about-render-caption{
  position:absolute;
  left:28px;
  right:28px;
  bottom:24px;
  z-index:3;
}

.about-render-caption span{
  display:block;
  margin-bottom:7px;
  color:var(--gold-mid);
  font-size:10px;
  letter-spacing:.22em;
  font-weight:700;
}

.about-render-caption strong{
  color:var(--ink);
  font-family:'Cormorant Garamond',serif;
  font-size:28px;
  line-height:1;
}


/* Социальные сети */

.about-socials{
  align-self:start;

  padding:26px 30px;

  border:1px solid var(--line);
  background:var(--panel);
}

.about-social-title{
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:13px;

  color:var(--gold-mid);
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:700;
}

.about-social-title span{
  width:18px;
  height:1px;
  background:var(--gold-mid);
}

.about-social-link{
  display:grid;
  grid-template-columns:46px 1fr 20px;
  align-items:center;
  gap:16px;

  min-height:72px;
  padding:10px 0;

  border-top:1px solid var(--line);

  color:var(--ink);
  text-decoration:none;

  transition:
    color .2s ease,
    transform .2s ease;
}

.about-social-link:last-child{
  border-bottom:1px solid var(--line);
}

.about-social-link:hover{
  color:var(--gold-hi);
  transform:translateX(3px);
}

.about-social-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:25px;
  height:25px;

  border:1px solid var(--gold-low);

  color:var(--gold-hi);
  font-size:12px;
}

.about-social-link strong{
  display:block;
  font-size:12px;
}

.about-social-link small{
  display:block;
  margin-top:2px;

  color:var(--muted);
  font-size:10px;
}

.about-social-link > b{
  color:var(--gold-mid);
  font-size:14px;
}

  .history-section{
  position:relative;
  margin-top:90px;
  padding:70px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.history-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:45px;
}

.history-header h2{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(42px,6vw,78px);
  line-height:.9;
  color:var(--gold-hi);
}

.history-header h2 span{
  color:var(--text);
}

.history-controls{
  display:flex;
  align-items:center;
  gap:18px;
}

.history-arrow{
  width:42px;
  height:42px;
  border:1px solid var(--gold-low);
  background:transparent;
  color:var(--gold-hi);
  font-size:20px;
  cursor:pointer;
  transition:.2s ease;
}

.history-arrow:hover{
  background:var(--gold-hi);
  color:#1a1408;
}

.history-counter{
  display:flex;
  gap:7px;
  font-size:13px;
  letter-spacing:.1em;
  color:var(--muted);
}

.history-counter span:first-child{
  color:var(--gold-hi);
}

.history-slider{
  position:relative;
  min-height:420px;
}

.history-slide{
  display:none;
  grid-template-columns:42% 1fr;
  gap:70px;
  align-items:center;
  animation:historyFade .45s ease;
}

.history-slide.active{
  display:grid;
}

.history-year{
  position:relative;
  display:flex;
  align-items:center;
  gap:24px;

  font-family:'Cormorant Garamond',serif;
  font-size:clamp(90px,12vw,170px);
  line-height:1;
  font-weight:700;
  color:var(--gold-hi);
  letter-spacing:-0.06em;

  padding: 115px 0;

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      black 18%,
      black 82%,
      transparent 100%
    );
}

.history-year img{
  position:absolute;

  top:0;
  bottom:0;
  left:-40px;

  width:calc(100% + 80px);
  height:100%;

  object-fit:cover;
  opacity:.28;

  z-index:0;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 22%,
      black 78%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 22%,
      black 78%,
      transparent 100%
    );
}

.history-year span{
  position:relative;
  z-index:1;
}

.history-year::before{
  content:'';
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(
      90deg,
      var(--bg),
      rgba(0,0,0,.55)
    ),
    var(--year-bg);

  background-size:cover;
  background-position:center;

  opacity:.28;
  z-index:-1;
}

.history-year::after{
  content:'CEREMONY';
  position:absolute;
  left:28px;
  bottom:95px;

  font-family:'Manrope',sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:.28em;
  color:var(--muted);
  opacity:.7;
}

.history-info{
  max-width:570px;
}

.history-label{
  margin-bottom:18px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
}

.history-info h3{
  margin:0 0 25px;
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  color:var(--gold-hi);
}

.history-winner{
  border-left:2px solid var(--gold-hi);
  padding-left:20px;
  margin-bottom:24px;
}

.winner-title{
  font-size:26px;
  font-weight:800;
  color:var(--text);
}

.winner-author{
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
}

.history-info p{
  max-width:500px;
  color:var(--muted);
  line-height:1.7;
}

.history-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

@keyframes historyFade{
  from{
    opacity:0;
    transform:translateX(20px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@media(max-width:700px){

  .history-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .history-slide.active{
    grid-template-columns:1fr;
    gap:45px;
  }

  .history-year{
    font-size:120px;
  }

  .history-info h3{
    font-size:40px;
  }

}

.ca-light-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.ca-light-rays span {
    position: absolute;
    bottom: -100%;
    left: 50%;
    width: 7%;
    height: 230%;
    transform-origin: 50% 100%;

    background: linear-gradient(
        to top,
        rgba(255, 196, 70, 0.5),
        rgba(255, 225, 145, 0.25) 35%,
        rgba(255, 255, 255, 0.08) 65%,
        transparent 90%
    );

    filter: blur(12px);
    opacity: 0.75;

    animation: ca-ray-move 10s ease-in-out infinite alternate;
}

/* Левые лучи */
.ca-light-rays span:nth-child(1) {
    width: 5%;
    transform: translateX(-50%) rotate(-24deg);
    animation-delay: -2s;
}

.ca-light-rays span:nth-child(2) {
    width: 6%;
    transform: translateX(-50%) rotate(-16deg);
    animation-delay: -6s;
}

.ca-light-rays span:nth-child(3) {
    width: 5%;
    transform: translateX(-50%) rotate(-10deg);
    animation-delay: -4s;
}

/* Центральные */
.ca-light-rays span:nth-child(4) {
    width: 4%;
    transform: translateX(-50%) rotate(-4deg);
    opacity: 0.45;
    animation-delay: -1s;
}

.ca-light-rays span:nth-child(5) {
    width: 4%;
    transform: translateX(-50%) rotate(4deg);
    opacity: 0.45;
    animation-delay: -5s;
}

/* Правые */
.ca-light-rays span:nth-child(6) {
    width: 5%;
    transform: translateX(-50%) rotate(10deg);
    animation-delay: -7s;
}

.ca-light-rays span:nth-child(7) {
    width: 6%;
    transform: translateX(-50%) rotate(16deg);
    animation-delay: -3s;
}

.ca-light-rays span:nth-child(8) {
    width: 5%;
    transform: translateX(-50%) rotate(24deg);
    animation-delay: -8s;
}

@keyframes ca-ray-move {
    0% {
        margin-left: -55px;
        opacity: 0.45;
        filter: blur(10px);
    }

    50% {
        margin-left: 35px;
        opacity: 0.8;
        filter: blur(16px);
    }

    100% {
        margin-left: -20px;
        opacity: 0.55;
        filter: blur(12px);
    }
}

.ca-light-rays {
    background:
        radial-gradient(
            ellipse at 50% 100%,
            rgba(255, 210, 100, 0.08),
            transparent 55%
        );
}
.ca-particles i {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff1b0;
    box-shadow: 0 0 10px #ffd76a;

    animation: particle-float 8s linear infinite;
}

.ca-particles i:nth-child(1) { left: 20%; animation-delay: -2s; }
.ca-particles i:nth-child(2) { left: 32%; animation-delay: -5s; }
.ca-particles i:nth-child(3) { left: 45%; animation-delay: -1s; }
.ca-particles i:nth-child(4) { left: 55%; animation-delay: -7s; }
.ca-particles i:nth-child(5) { left: 68%; animation-delay: -3s; }
.ca-particles i:nth-child(6) { left: 76%; animation-delay: -6s; }
.ca-particles i:nth-child(7) { left: 40%; animation-delay: -4s; }
.ca-particles i:nth-child(8) { left: 60%; animation-delay: -8s; }

@keyframes particle-float {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-500px) translateX(40px);
        opacity: 0;
    }
}

.ca-light-rays {
    background:
        radial-gradient(
            ellipse at 50% 100%,
            rgba(255, 220, 120, 0.35) 0%,
            rgba(255, 180, 40, 0.15) 25%,
            transparent 90%
        );
}

    .crumbs{ font-size:12px; color:var(--muted); margin:36px 0 0; letter-spacing:.04em; }
    .crumbs a{ text-decoration:none; color:var(--muted); }
    .crumbs a:hover{ color:var(--gold-hi); }

    .hero-block{ text-align: center; padding-top:22px; padding-bottom:44px; border-bottom:1px solid var(--line); }
    h1.page-title{ font-size:clamp(32px,5vw,54px); line-height:1.06; margin:14px 0 18px; color:var(--gold-hi); }
    .hero-block p.lead{
      font-size:16px; line-height:1.75; color:var(--muted); margin:0 0 26px;
    }

    section.block{ padding:64px 0; border-bottom:1px solid var(--line); }
    .block-head{ margin-bottom:36px; max-width:760px; }
    .block-head h2{ font-size:clamp(26px,3.4vw,38px); margin:10px 0 12px; color:var(--gold-hi); }
    .block-head p{ color:var(--muted); line-height:1.7; font-size:15px; }

    .check-grid{ display:flex; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
    .check-col{ background:var(--panel); padding:28px 30px; }
    .check-col h3{ font-family:'Cormorant Garamond',serif; font-size:20px; margin:0 0 18px; display:flex; align-items:center; gap:10px; }
    .check-col.ok h3{ color:var(--ok); }
    .check-col.no h3{ color:var(--no); }
    .check-col ul{ margin:0; padding:0; list-style:none; }
    .check-col li{
      font-size:14.5px; line-height:1.6; color:var(--muted); padding:0 0 14px 24px; position:relative;
    }
    .check-col.ok li::before{ content:'✓'; position:absolute; left:0; top:0; color:var(--ok); font-weight:800; }
    .check-col.no li::before{ content:'✕'; position:absolute; left:0; top:0; color:var(--no); font-weight:800; }

    .longlist-panel{
      border:1px solid var(--line); background:var(--panel-2); padding:34px 36px; max-width:820px;
      position:relative;
    }
    .longlist-panel::before{
      content:'Лонг-лист'; position:absolute; top:-13px; left:30px; background:var(--bg);
      padding:0 12px; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-mid);
    }
    .longlist-panel p{ color:var(--muted); line-height:1.8; font-size:15px; margin:0 0 16px; }
    .longlist-panel p strong{ color:var(--ink); }
    .longlist-flow{ display:flex; align-items:center; gap:10px; margin:26px 0 6px; flex-wrap:wrap; }
    .lf-step{
      border:1px solid var(--gold-low); padding:10px 18px; font-size:12.5px; color:var(--ink); white-space:nowrap;
    }
    .lf-step.active{ background:linear-gradient(180deg, var(--gold-hi), var(--gold-mid)); color:#1a1408; border-color:transparent; font-weight:800; }
    .lf-arrow{ color:var(--gold-mid); font-size:16px; }

    .steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
    .step-card{ background:var(--panel); padding:28px 24px; }
    .step-card .n{ font-size:30px; color:var(--gold-mid); }
    .step-card h3{ margin:12px 0 10px; font-size:16px; color:var(--ink); font-weight:700; }
    .step-card p{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.6; }

    table.req-table{ width:100%; border-collapse:collapse; }
    table.req-table th, table.req-table td{
      text-align:left; padding:16px 18px; border-bottom:1px solid var(--line); font-size:14px;
    }
    table.req-table th{
      color:var(--gold-mid); font-size:11px; letter-spacing:.12em; text-transform:uppercase; font-weight:700;
      border-bottom:1px solid var(--gold-low);
    }
    table.req-table td{ color:var(--muted); }
    table.req-table td:first-child{ color:var(--ink); font-weight:700; white-space:nowrap; }

    section#who {
      margin: 0 auto;
      max-width: 1600px;
    }

    section#longlist {
      margin: 0 auto;
      max-width: 1600px;
    }

    section#faq-form   {
      margin: 0 auto;
      max-width: 1600px;
    }

    .faq-item{ border-bottom:1px solid var(--line); max-width:820px; }
    .faq-q{
      padding:22px 4px; display:flex; align-items:center; justify-content:space-between; cursor:pointer;
      font-family:'Cormorant Garamond',serif; font-size:19px; color:var(--ink);
    }
    .faq-q .plus{ color:var(--gold-mid); font-size:20px; transition:transform .2s ease; }
    .faq-item.open .plus{ transform:rotate(45deg); }
    .faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
    .faq-item.open .faq-a{ max-height:300px; }
    .faq-a p{ color:var(--muted); font-size:14.5px; line-height:1.75; padding:0 4px 22px; margin:0; }

    .cta-block{ text-align:center; padding:70px 0; }
    .cta-block h2{ font-size:clamp(26px,3.6vw,40px); color:var(--gold-hi); margin:0 0 14px; }
    .cta-block p{ color:var(--muted); margin:0 0 28px; }


  footer{ position:relative; z-index:2; padding-top:64px; padding-bottom:36px; }
  .footer-top{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom:44px; }
  .footer-top .brand img{ height:34px; }
  .footer-grid{
    display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:46px;
    padding-bottom:44px; border-bottom:1px solid var(--line); border-top:1px solid var(--line);
    padding-top:44px;
  }
  .footer-grid h4{ font-size:12px; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold-mid); margin:0 0 18px; }
  .staff-item{ display:flex; justify-content:space-between; gap:12px; font-size:14px; padding:10px 0; border-top:1px solid var(--line); }
  .staff-item:first-of-type{ border-top:none; }
  .staff-item .role{ color:var(--muted); font-size:12px; text-align:right; }
  .foot-links a{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink); font-size:14px; padding:10px 0; border-top:1px solid var(--line); }
  .foot-links a:first-of-type{ border-top:none; }
  .foot-links a:hover{ color:var(--gold-hi); }
  .foot-links svg{ width:15px; height:15px; fill:currentColor; flex-shrink:0; }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:11.5px; color:var(--muted); flex-wrap:wrap; gap:10px; }

    @media (max-width:800px){
      .check-grid{ grid-template-columns:1fr; }
      .steps-grid{ grid-template-columns:1fr 1fr; }
      table.req-table{ font-size:13px; }
    }
    @media (max-width:520px){
      .steps-grid{ grid-template-columns:1fr; }
    }

      @media (max-width: 700px) {
  header {
    display: block;
    padding: 12px 16px 14px;
  }

  .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    margin-right: 0;
    min-width: 0;
  }

  .brand img {
    height: 32px;
  }

  .brand span {
    font-size: 14px;
    white-space: nowrap;
  }

  .top-buttons {
    display: flex;
    gap: 12px;
    font-size: 11px;
  }

  .header-right {
    margin-top: 12px;
    display: block;
  }

  .top-links {
    display: none !important;
  }

  .btn-vote.small {
    width: 100%;
    padding: 10px 14px;
  }
}

/* ================================
   ФОН СТРАНИЦЫ ПРАВИЛ
================================ */

html {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
}


/* ================================
   ОСНОВНОЙ ФОНОВЫЙ СЛОЙ
================================ */

.rules-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  pointer-events: none;

  z-index: 0;
}


/* ================================
   КОНТЕНТ ПОВЕРХ ФОНА
================================ */

main,
footer {
  position: relative;
  z-index: 1;
}


/* ================================
   МЯГКИЕ ЗОЛОТЫЕ СВЕЧЕНИЯ
================================ */

.rules-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(232, 200, 135, 0.08) 0%,
    rgba(232, 200, 135, 0.025) 35%,
    transparent 72%
  );

  filter: blur(20px);

  animation: rulesGlowMove 18s ease-in-out infinite;
}

.glow-one {
  top: 8%;
  left: -160px;
}

.glow-two {
  top: 58%;
  right: -180px;

  animation-delay: -9s;
}


/* ================================
   СВЕТОВЫЕ ЛУЧИ
================================ */

.rules-light-beam {
  position: absolute;

  top: -15%;

  width: 1px;
  height: 130%;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(232, 200, 135, 0.1),
    rgba(232, 200, 135, 0.025),
    transparent
  );

  opacity: 0.5;

  transform-origin: top center;

  filter: blur(1px);

  animation: beamMove 16s ease-in-out infinite;
}

.beam-one {
  left: 18%;
  transform: rotate(12deg);
}

.beam-two {
  left: 52%;
  transform: rotate(-8deg);

  opacity: 0.25;

  animation-delay: -6s;
}

.beam-three {
  right: 16%;
  transform: rotate(-14deg);

  opacity: 0.35;

  animation-delay: -11s;
}


/* ================================
   ЗОЛОТАЯ ПЫЛЬ
================================ */

.rules-dust {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}


.dust {
  position: absolute;

  display: block;

  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: rgba(232, 200, 135, 0.8);

  box-shadow:
    0 0 6px rgba(232, 200, 135, 0.8),
    0 0 16px rgba(232, 200, 135, 0.35);

  animation:
    dustFloat 14s ease-in-out infinite,
    dustPulse 5s ease-in-out infinite;
}


/* ================================
   РАСПРЕДЕЛЕНИЕ ПЫЛИ
================================ */

.dust-1 {
  top: 4%;
  left: 14%;
}

.dust-2 {
  top: 7%;
  left: 67%;

  width: 2px;
  height: 2px;

  animation-delay: -4s;
}

.dust-3 {
  top: 12%;
  left: 35%;

  width: 5px;
  height: 5px;

  animation-delay: -8s;
}

.dust-4 {
  top: 17%;
  right: 12%;

  animation-delay: -2s;
}

.dust-5 {
  top: 23%;
  left: 8%;

  width: 2px;
  height: 2px;

  animation-delay: -10s;
}

.dust-6 {
  top: 29%;
  left: 46%;

  width: 4px;
  height: 4px;

  animation-delay: -6s;
}

.dust-7 {
  top: 34%;
  right: 24%;

  animation-delay: -12s;
}

.dust-8 {
  top: 40%;
  left: 20%;

  width: 2px;
  height: 2px;

  animation-delay: -3s;
}

.dust-9 {
  top: 46%;
  right: 8%;

  width: 5px;
  height: 5px;

  animation-delay: -9s;
}

.dust-10 {
  top: 51%;
  left: 58%;

  animation-delay: -5s;
}

.dust-11 {
  top: 57%;
  left: 11%;

  width: 2px;
  height: 2px;

  animation-delay: -11s;
}

.dust-12 {
  top: 63%;
  right: 34%;

  width: 4px;
  height: 4px;

  animation-delay: -7s;
}

.dust-13 {
  top: 68%;
  left: 29%;

  animation-delay: -1s;
}

.dust-14 {
  top: 73%;
  right: 14%;

  width: 2px;
  height: 2px;

  animation-delay: -8s;
}

.dust-15 {
  top: 78%;
  left: 7%;

  width: 5px;
  height: 5px;

  animation-delay: -4s;
}

.dust-16 {
  top: 83%;
  left: 52%;

  animation-delay: -13s;
}

.dust-17 {
  top: 87%;
  right: 27%;

  width: 2px;
  height: 2px;

  animation-delay: -6s;
}

.dust-18 {
  top: 91%;
  left: 19%;

  width: 4px;
  height: 4px;

  animation-delay: -10s;
}

.dust-19 {
  top: 94%;
  right: 9%;

  animation-delay: -3s;
}

.dust-20 {
  top: 97%;
  left: 42%;

  width: 2px;
  height: 2px;

  animation-delay: -7s;
}

.dust-21 {
  top: 26%;
  left: 76%;

  width: 2px;
  height: 2px;

  animation-delay: -12s;
}

.dust-22 {
  top: 48%;
  left: 73%;

  width: 4px;
  height: 4px;

  animation-delay: -5s;
}

.dust-23 {
  top: 70%;
  left: 65%;

  width: 2px;
  height: 2px;

  animation-delay: -9s;
}

.dust-24 {
  top: 88%;
  left: 73%;

  width: 5px;
  height: 5px;

  animation-delay: -2s;
}


/* ================================
   ДВИЖЕНИЕ ПЫЛИ
================================ */

@keyframes dustFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(18px, -22px);
  }

  50% {
    transform: translate(-14px, -38px);
  }

  75% {
    transform: translate(22px, -15px);
  }

}


/* ================================
   ПУЛЬСАЦИЯ
================================ */

@keyframes dustPulse {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.9;
  }

}


/* ================================
   ДВИЖЕНИЕ ЛУЧЕЙ
================================ */

@keyframes beamMove {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 0.65;
  }

}


/* ================================
   ДВИЖЕНИЕ СВЕЧЕНИЙ
================================ */

@keyframes rulesGlowMove {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(80px, 40px);
  }

}

.rules-sparkles {
  position: absolute;
  inset: 0;
}


/* ЯРКАЯ ИСКРА */

.sparkle {
  position: absolute;

  width: 5px;
  height: 5px;

  background: var(--gold-hi);

  transform: rotate(45deg);

  box-shadow:
    0 0 8px var(--gold-hi),
    0 0 22px rgba(232, 200, 135, .8),
    0 0 45px rgba(232, 200, 135, .35);

  animation: sparkleFlash 4s ease-in-out infinite;
}


/* ВЕРТИКАЛЬНЫЙ ЛУЧ */

.sparkle::before,
.sparkle::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold-hi),
    transparent
  );

  transform: translate(-50%, -50%);
}

.sparkle::before {
  width: 1px;
  height: 52px;
}

.sparkle::after {
  width: 52px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    var(--gold-hi),
    transparent
  );
}


/* ПОЗИЦИИ */

.sparkle-1 {
  top: 15%;
  left: 24%;
}

.sparkle-2 {
  top: 31%;
  right: 18%;

  transform: scale(.65) rotate(45deg);

  animation-delay: -1.5s;
}

.sparkle-3 {
  top: 49%;
  left: 8%;

  transform: scale(.45) rotate(45deg);

  animation-delay: -3s;
}

.sparkle-4 {
  top: 62%;
  right: 31%;

  transform: scale(.8) rotate(45deg);

  animation-delay: -2.2s;
}

.sparkle-5 {
  top: 78%;
  left: 39%;

  transform: scale(.55) rotate(45deg);

  animation-delay: -4s;
}

.sparkle-6 {
  top: 91%;
  right: 12%;

  transform: scale(.7) rotate(45deg);

  animation-delay: -.8s;
}


/* ВСПЫШКА */

@keyframes sparkleFlash {

  0%,
  100% {
    opacity: 0;
    transform: scale(.3) rotate(45deg);
  }

  35% {
    opacity: .25;
  }

  50% {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }

  65% {
    opacity: .2;
  }

}

.rules-atmosphere {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse at 18% 12%,
      rgba(232, 200, 135, 0.09) 0%,
      rgba(232, 200, 135, 0.035) 22%,
      transparent 48%
    ),

    radial-gradient(
      ellipse at 84% 38%,
      rgba(184, 147, 79, 0.07) 0%,
      rgba(184, 147, 79, 0.025) 24%,
      transparent 52%
    ),

    radial-gradient(
      ellipse at 35% 78%,
      rgba(232, 200, 135, 0.055) 0%,
      transparent 45%
    ),

    linear-gradient(
      120deg,
      rgba(232, 200, 135, 0.025),
      transparent 35%,
      rgba(232, 200, 135, 0.018) 70%,
      transparent
    );

  opacity: .9;

  animation: atmosphereMove 24s ease-in-out infinite alternate;
}

@keyframes atmosphereMove {

  0% {
    transform: scale(1);
    opacity: .65;
  }

  50% {
    transform: scale(1.06) translate(1%, -1%);
    opacity: 1;
  }

  100% {
    transform: scale(1.02) translate(-1%, 1%);
    opacity: .75;
  }

}

 .stats-row{ display:flex; gap:1px; background:var(--line); border:1px solid var(--line); margin-top:30px; flex-wrap:wrap; }
  .stat{ flex:1; min-width:150px; background:var(--panel); padding:20px 22px; }
  .stat .n{ font-size:30px; color:var(--gold-mid); }
  .stat .l{ font-size:11.5px; color:var(--muted); letter-spacing:.04em; margin-top:4px; }

  .year-tabs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:2px; }
  .year-tab{
    background:var(--panel); border:1px solid var(--line); color:var(--muted);
    font-weight:700; font-size:13px; letter-spacing:.04em;
    padding:12px 22px; cursor:pointer; border-bottom:none;
  }
  .year-tab.active{ color:var(--gold-hi); background:var(--panel-2); }

  .year-panel-wrap{ border:1px solid var(--line); background:var(--panel-2); padding:8px; }
  .year-panel{ display:none; }
  .year-panel.active{ display:block; }

  .win-table{ width:100%; border-collapse:collapse; }
  .win-table th{
    text-align:left; padding:16px 22px; font-size:11px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--gold-mid); border-bottom:1px solid var(--gold-low);
  }
  .win-table td{ padding:18px 22px; border-bottom:1px solid var(--line); vertical-align:top; }
  .win-table tr:last-child td{ border-bottom:none; }
  .win-table tr:hover td{ background:rgba(232,200,135,0.03); }
  .cat-name{ font-family:'Cormorant Garamond',serif; font-size:17px; color:var(--ink); font-weight:700; }
  .win-name{ color:var(--gold-hi); font-weight:700; font-size:14.5px; }
  .win-authors{ color:var(--muted); font-size:12.5px; margin-top:3px; }
  .win-badge{
    display:inline-block; font-size:9.5px; letter-spacing:.1em; text-transform:uppercase;
    color:#1a1408; background:linear-gradient(180deg, var(--gold-hi), var(--gold-mid));
    padding:3px 9px; margin-left:8px; vertical-align:middle;
  }

  .legend{ margin-top:18px; font-size:12px; color:var(--muted); display:flex; gap:20px; flex-wrap:wrap; }
  .legend span{ display:inline-flex; align-items:center; gap:6px; }

  .halloffame{ margin-top:70px; }
  .hof-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
  .hof-card{ background:var(--panel); padding:26px 24px; }
  .hof-card .rank{ font-size:11px; letter-spacing:.14em; color:var(--gold-low); text-transform:uppercase; }
  .hof-card h3{ font-family:'Cormorant Garamond',serif; font-size:21px; color:var(--gold-hi); margin:10px 0 6px; }
  .hof-card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.6; }


   @media (max-width:800px){
    .win-table thead{ display:none; }
    .win-table, .win-table tbody, .win-table tr, .win-table td{ display:block; width:100%; }
    .win-table tr{ padding:16px 4px; border-bottom:1px solid var(--line); }
    .win-table td{ border:none; padding:6px 4px; }
    .win-table td.cat-cell::before{ content:'Номинация'; display:block; font-size:10px; color:var(--gold-mid); letter-spacing:.1em; text-transform:uppercase; margin-bottom:4px; }
    .win-table td.win-cell::before{ content:'Победитель'; display:block; font-size:10px; color:var(--gold-mid); letter-spacing:.1em; text-transform:uppercase; margin-bottom:4px; }
    .hof-grid{ grid-template-columns:1fr; }
  }


  @media (max-width: 700px) {
  header {
    display: block;
    padding: 12px 16px 14px;
  }

  .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    margin-right: 0;
    min-width: 0;
  }

  .brand img {
    height: 32px;
  }

  .brand span {
    font-size: 14px;
    white-space: nowrap;
  }

  .top-buttons {
    display: flex;
    gap: 12px;
    font-size: 11px;
  }

  .header-right {
    margin-top: 12px;
    display: block;
  }

  .top-links {
    display: none !important;
  }

  .btn-vote.small {
    width: 100%;
    padding: 10px 14px;
  }
}

/* =========================
   AMBIENT BACKGROUND
========================= */

.ambient-background {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  min-height: 100%;

  overflow: hidden;

  pointer-events: none;

  z-index: 0;
}


/* =========================
   SOFT GOLDEN GLOWS
========================= */

.ambient-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(232, 200, 135, 0.055) 0%,
    rgba(232, 200, 135, 0.018) 35%,
    transparent 70%
  );

  filter: blur(20px);

  animation: ambientFloat 18s ease-in-out infinite alternate;
}

.glow-one {
  top: -220px;
  left: -150px;
}

.glow-two {
  right: -220px;
  top: 25%;

  width: 650px;
  height: 650px;

  animation-duration: 24s;
  animation-delay: -8s;
}

.glow-three {
  bottom: -300px;
  left: 30%;

  width: 600px;
  height: 600px;

  animation-duration: 21s;
  animation-delay: -12s;
}

@keyframes ambientFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(80px, 50px) scale(1.15);
  }
}


/* =========================
   FLOATING PARTICLES
========================= */

.ambient-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;

  display: block;

  width: 6px;
  height: 6px;

  border: 1px solid rgba(232, 200, 135, 0.35);

  transform: rotate(45deg);

  opacity: 0;

  animation: particleFloat 14s ease-in-out infinite;
}


/* individual particles */

.p1 {
  top: 18%;
  left: 12%;
  animation-delay: -2s;
}

.p2 {
  top: 32%;
  left: 28%;
  width: 4px;
  height: 4px;
  animation-delay: -8s;
}

.p3 {
  top: 72%;
  left: 18%;
  width: 9px;
  height: 9px;
  animation-delay: -5s;
}

.p4 {
  top: 22%;
  right: 18%;
  width: 5px;
  height: 5px;
  animation-delay: -11s;
}

.p5 {
  top: 58%;
  right: 12%;
  width: 8px;
  height: 8px;
  animation-delay: -4s;
}

.p6 {
  top: 82%;
  right: 30%;
  width: 4px;
  height: 4px;
  animation-delay: -9s;
}

.p7 {
  top: 44%;
  left: 8%;
  width: 4px;
  height: 4px;
  animation-delay: -13s;
}

.p8 {
  top: 12%;
  left: 52%;
  width: 8px;
  height: 8px;
  animation-delay: -6s;
}

.p9 {
  top: 88%;
  left: 48%;
  width: 5px;
  height: 5px;
  animation-delay: -10s;
}

.p10 {
  top: 38%;
  right: 38%;
  width: 4px;
  height: 4px;
  animation-delay: -3s;
}

.p11 {
  top: 66%;
  left: 42%;
  width: 7px;
  height: 7px;
  animation-delay: -7s;
}

.p12 {
  top: 28%;
  left: 72%;
  width: 5px;
  height: 5px;
  animation-delay: -12s;
}


/* =========================
   PARTICLE ANIMATION
========================= */

@keyframes particleFloat {

  0% {
    opacity: 0;
    transform: translate(0, 40px) rotate(45deg);
  }

  20% {
    opacity: 0.55;
  }

  50% {
    transform: translate(35px, -35px) rotate(135deg);
    opacity: 0.35;
  }

  80% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
    transform: translate(-25px, -80px) rotate(225deg);
  }

}

/* =========================
   AWARD GEOMETRY
========================= */

.award-orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 900px;
  height: 900px;

  border: 1px solid rgba(232, 200, 135, 0.045);

  border-radius: 50%;

  transform: translate(-50%, -50%) rotate(0deg);

  animation: orbitRotate 80s linear infinite;
}

.orbit-two {
  width: 650px;
  height: 650px;

  border-radius: 42% 58% 61% 39% / 45% 41% 59% 55%;

  animation-duration: 60s;

  animation-direction: reverse;
}

.orbit-three {
  width: 1200px;
  height: 500px;

  border-radius: 50%;

  transform: translate(-50%, -50%) rotate(35deg);

  animation-duration: 100s;
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* =========================
   CROSSING LINES
========================= */

.award-cross {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100vw;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(232, 200, 135, 0.04) 30%,
      rgba(232, 200, 135, 0.12) 50%,
      rgba(232, 200, 135, 0.04) 70%,
      transparent 100%
    );

  transform: translate(-50%, -50%) rotate(32deg);
}

.cross-two {
  transform: translate(-50%, -50%) rotate(-32deg);
}


/* =========================
   STARS
========================= */

.award-star {
  position: absolute;

  color: rgba(232, 200, 135, 0.3);

  font-size: 18px;

  animation: starPulse 5s ease-in-out infinite;
}

.star-one {
  top: 24%;
  left: 27%;
}

.star-two {
  right: 24%;
  bottom: 25%;

  font-size: 11px;

  animation-delay: -2.5s;
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.8) rotate(0deg);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2) rotate(90deg);
  }
}

.floating-lights {
  position: absolute;

  inset: 0;

  pointer-events: none;
}


.floating-light {
  position: absolute;

  display: block;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: rgba(232, 200, 135, 0.9);

  box-shadow:
    0 0 6px rgba(232, 200, 135, 0.9),
    0 0 18px rgba(232, 200, 135, 0.55),
    0 0 40px rgba(232, 200, 135, 0.18);

  animation:
    floatingLightMove 12s ease-in-out infinite,
    floatingLightPulse 4s ease-in-out infinite;
}


/* распределение по всей странице */

.light-1 {
  top: 5%;
  left: 12%;
}

.light-2 {
  top: 11%;
  right: 18%;

  width: 3px;
  height: 3px;

  animation-delay: -3s;
}

.light-3 {
  top: 19%;
  left: 38%;

  width: 7px;
  height: 7px;

  animation-delay: -7s;
}

.light-4 {
  top: 28%;
  right: 9%;

  width: 4px;
  height: 4px;

  animation-delay: -5s;
}

.light-5 {
  top: 37%;
  left: 18%;

  width: 3px;
  height: 3px;

  animation-delay: -9s;
}

.light-6 {
  top: 46%;
  right: 31%;

  width: 6px;
  height: 6px;

  animation-delay: -2s;
}

.light-7 {
  top: 56%;
  left: 8%;

  width: 4px;
  height: 4px;

  animation-delay: -6s;
}

.light-8 {
  top: 64%;
  right: 15%;

  width: 7px;
  height: 7px;

  animation-delay: -11s;
}

.light-9 {
  top: 73%;
  left: 28%;

  width: 3px;
  height: 3px;

  animation-delay: -4s;
}

.light-10 {
  top: 81%;
  right: 38%;

  width: 5px;
  height: 5px;

  animation-delay: -8s;
}

.light-11 {
  top: 90%;
  left: 14%;

  width: 6px;
  height: 6px;

  animation-delay: -1s;
}

.light-12 {
  top: 96%;
  right: 12%;

  width: 3px;
  height: 3px;

  animation-delay: -10s;
}


/* плавное движение */

@keyframes floatingLightMove {

  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(25px, -30px);
  }

  50% {
    transform: translate(-20px, -60px);
  }

  75% {
    transform: translate(35px, -25px);
  }

  100% {
    transform: translate(0, 0);
  }

}


/* пульсация свечения */

@keyframes floatingLightPulse {

  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }

}

main,
footer {
  position: relative;
  z-index: 1;
}

/* =========================
   CREATIVE AWARDS 404 PAGE
========================= */

.error-page {
    min-height: 100vh;
    width: 100%;
    background:
        radial-gradient(circle at center, rgba(220, 170, 60, 0.15), transparent 45%),
        #070707;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.error-body {
    margin: 0;
    padding: 0 !important;
    overflow: hidden;
}

.error-content {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 700px;

    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* Логотип */

.error-logo {
    display: block;

    width: 180px;
    height: auto;

    margin: 0 auto 25px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 25px rgba(220,170,60,.25));
}


/* 404 */

.error-code {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(120px, 18vw, 220px);

    font-weight: 700;

    line-height: .75;

    color: #d9a441;

    letter-spacing: -5px;

    text-shadow:
        0 0 20px rgba(217,164,65,.5),
        0 0 70px rgba(217,164,65,.25);

    margin-bottom: 25px;
}



/* Заголовок */

.error-content h1 {

    font-family: "Manrope", sans-serif;

    color: #fff;

    font-size: 42px;

    font-weight: 700;

    margin: 0 0 20px;

}



/* Описание */

.error-description {

    max-width: 430px;

    margin: 0 auto 40px;

    color: rgba(255,255,255,.65);

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    line-height: 1.7;
}



/* Кнопка */

.error-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 35px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #f0c45a,
            #b8862f
        );

    color: #111;

    font-family: "Manrope", sans-serif;

    font-weight: 700;

    text-decoration: none;

    transition: .25s;

}


.error-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(220,170,60,.3);

}



/* Фоновое свечение */

.error-page::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    background: rgba(220,170,60,.12);

    border-radius: 50%;

    filter: blur(120px);

}



/* Лучи */

.error-rays {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

}


.error-rays span {

    position: absolute;

    width: 2px;

    height: 120%;

    background:
        linear-gradient(
            transparent,
            rgba(255,220,120,.25),
            transparent
        );

    transform: rotate(25deg);

    animation: errorRay 8s linear infinite;

}


.error-rays span:nth-child(1){
    left:10%;
}

.error-rays span:nth-child(2){
    left:25%;
    animation-delay:2s;
}

.error-rays span:nth-child(3){
    left:50%;
    animation-delay:4s;
}

.error-rays span:nth-child(4){
    left:75%;
    animation-delay:1s;
}



@keyframes errorRay {

    from {
        transform: translateY(-30%) rotate(25deg);
    }

    to {
        transform: translateY(30%) rotate(25deg);
    }

}



/* Мобильные */

@media(max-width:600px){

    .error-content{
        padding:25px;
    }


    .error-logo{
        width:220px;
    }


    .error-content h1{
        font-size:30px;
    }


    .error-description{
        font-size:16px;
    }

}

/* =====================
   PAGE LOADER
===================== */


.page-loader {

    position: fixed;

    inset: 0;

    background: #070707;

    z-index: 99999;

    display:flex;

    justify-content:center;

    align-items:center;


    animation:
        loaderHide .8s ease 1.8s forwards;

}



.loader-content {

    text-align:center;

    animation:
        loaderAppear .8s ease;

}



.loader-content img {

    width:260px;

    margin-bottom:25px;

}



.loader-year {

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:60px;

    color:#d9a441;

    font-weight:700;

    letter-spacing:8px;

}



.loader-line {

    width:260px;

    height:2px;

    background:
    rgba(255,255,255,.15);

    margin:30px auto 0;

    overflow:hidden;

}



.loader-line span {

    display:block;

    height:100%;

    width:0;

    background:#d9a441;

    animation:
    loaderProgress 1.5s ease forwards;

}



@keyframes loaderProgress {

    from {
        width:0;
    }

    to {
        width:100%;
    }

}



@keyframes loaderHide {

    from {
        opacity:1;
        visibility:visible;
    }

    to {
        opacity:0;
        visibility:hidden;
    }

}



@keyframes loaderAppear {

    from {

        opacity:0;

        transform:
        translateY(20px);

    }


    to {

        opacity:1;

        transform:
        translateY(0);

    }

}

body {

    animation:
    pageEnter .5s ease;

}



@keyframes pageEnter {

    from {

        opacity:0;

        transform:
        translateY(10px);

    }


    to {

        opacity:1;

        transform:
        translateY(0);

    }

}

@keyframes pageLeave {

    from {

        opacity:1;

        transform:
        translateY(0);

    }


    to {

        opacity:0;

        transform:
        translateY(-15px);

    }

}