/* =========================================================
   Challenger MU — dark bronze / weathered metal (logo-1)
   ========================================================= */

   :root{
    --bg-void:        #050403;
    --bg-panel:       #100c08;
    --bg-panel-2:     #16110c;
    --bg-card:        #12100c;
    --line-gold:      rgba(203,181,156,.38);
    --line-gold-soft: rgba(131,109,86,.22);
  
    /* sampled from logo-1.webp */
    --gold-100:       #fbedd7;
    --gold-300:       #cbb59c;
    --gold-500:       #836d56;
    --gold-700:       #4d3926;
    --gold-900:       #362313;
  
    --metal:          #706f6c;
    --metal-bright:   #b8b6b0;
  
    --ink-000:        #f0ebe0;
    --ink-100:        #d4cec2;
    --ink-300:        #b8b0a4;
    --ink-500:        #8f877c;
  
    --blue-accent:    #8a9aab;
  
    --font-display:   'Cinzel', serif;
    --font-deco:      'Cinzel Decorative', serif;
    --font-ui:        'Manrope', system-ui, sans-serif;
    --font-num:       'Manrope', system-ui, sans-serif;
  
    --container:      1200px;
    --radius-card:    8px;
    --ease:           cubic-bezier(.22,1,.36,1);
    --text-metal:     linear-gradient(180deg, #fbedd7 0%, #cbb59c 32%, #836d56 62%, #4d3926 88%, #362313 100%);
    --frame-navy-0:   #1e2a3c;
    --frame-navy-1:   #121c2c;
    --frame-navy-2:   #0a1428;
    --frame-gem:      #00c8ff;
    --frame-gem-hi:   #7ee8ff;
    --mu-surface-bg: linear-gradient(180deg, rgba(10, 10, 12, .98) 0%, rgba(4, 4, 6, .99) 50%, rgba(0, 0, 0, .99) 100%);
    --mu-surface-line: rgba(255, 255, 255, .08);
    --mu-cut: 14px;
    --mu-clip: polygon(
      var(--mu-cut) 0,
      calc(100% - var(--mu-cut)) 0,
      100% var(--mu-cut),
      100% calc(100% - var(--mu-cut)),
      calc(100% - var(--mu-cut)) 100%,
      var(--mu-cut) 100%,
      0 calc(100% - var(--mu-cut)),
      0 var(--mu-cut)
    );
  }

  /* Modern clipped glass cards — all pages */
  .mu-frame,
  .mu-card,
  .auth-wrap,
  .hof-panel,
  .feature-card,
  .hero-stats,
  .package-card__frame,
  .package-card,
  .rk-panel,
  .news-card,
  .news-detail-card,
  .dl-launcher-card,
  .dl-main-card,
  .dl-section,
  .db-side,
  .db-main,
  .db-card,
  .dc-panel,
  .guide-card,
  .guide-cat,
  .contact-card,
  .legal-article,
  .events-card,
  .shop-panel{
    --mu-cut: 14px;
    --mu-ornament: url("../img/let.webp");
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    background: var(--mu-surface-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .08),
      0 1px 0 rgba(0, 0, 0, .6),
      0 8px 24px rgba(0, 0, 0, .35);
    border-radius: 0;
    clip-path: var(--mu-clip);
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .28));
    padding-top: max(22px, env(safe-area-inset-top, 0px));
  }
  .mu-frame::before,
  .mu-frame::after,
  .mu-card::before,
  .mu-card::after,
  .auth-wrap::before,
  .auth-wrap::after,
  .hof-panel::before,
  .hof-panel::after,
  .feature-card::before,
  .feature-card::after,
  .hero-stats::before,
  .hero-stats::after,
  .package-card::before,
  .package-card::after,
  .rk-panel::before,
  .rk-panel::after,
  .news-card::before,
  .news-card::after,
  .news-detail-card::before,
  .news-detail-card::after,
  .dl-launcher-card::before,
  .dl-launcher-card::after,
  .dl-main-card::before,
  .dl-main-card::after,
  .db-side::before,
  .db-side::after,
  .db-main::before,
  .db-main::after,
  .dc-panel::before,
  .dc-panel::after{
    content: "";
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    height: 12px;
    z-index: 4;
    pointer-events: none;
    background: url("../img/let.webp") center / 100% 100% no-repeat;
    opacity: .9;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.45));
  }
  .mu-frame::before,
  .mu-card::before,
  .auth-wrap::before,
  .hof-panel::before,
  .feature-card::before,
  .hero-stats::before,
  .package-card::before,
  .rk-panel::before,
  .news-card::before,
  .news-detail-card::before,
  .dl-launcher-card::before,
  .dl-main-card::before,
  .db-side::before,
  .db-main::before,
  .dc-panel::before{ top: 8px; }
  .mu-frame::after,
  .mu-card::after,
  .auth-wrap::after,
  .hof-panel::after,
  .feature-card::after,
  .hero-stats::after,
  .package-card::after,
  .rk-panel::after,
  .news-card::after,
  .news-detail-card::after,
  .dl-launcher-card::after,
  .dl-main-card::after,
  .db-side::after,
  .db-main::after,
  .dc-panel::after{ bottom: 8px; top: auto; }
  .package-card__frame::before,
  .package-card__frame::after{ display: none; content: none; }
  .mu-frame > *,
  .mu-card > *,
  .auth-wrap > *,
  .hof-panel > *,
  .feature-card > *,
  .hero-stats > *{ position: relative; z-index: 1; }

  .auth-wrap,
  .hof-panel,
  .feature-card,
  .hero-stats,
  .rk-panel,
  .news-card,
  .dl-launcher-card,
  .dl-main-card{
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .mu-bar,
  .hof-row{
    --mu-cut: 8px;
    background: var(--mu-surface-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .08),
      0 1px 0 rgba(0, 0, 0, .6),
      0 8px 24px rgba(0, 0, 0, .35);
    border-radius: 0;
    clip-path: var(--mu-clip);
  }
  
  *, *::before, *::after{ box-sizing: border-box; }
  html{
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    --cur-default: url("../img/Cursor/gauntlet_hand.png") 2 2, auto;
    --cur-pointer: url("../img/Cursor/crystal_gem.png") 2 2, pointer;
    --cur-text: url("../img/Cursor/pen_nib.png") 2 14, text;
    --cur-help: url("../img/Cursor/crystal_unknown.png") 2 2, help;
    --cur-not-allowed: url("../img/Cursor/crystal_blocked.png") 2 2, not-allowed;
    --cur-wait: url("../img/Cursor/diamond_circle.png") 12 12, wait;
    --cur-move: url("../img/Cursor/compass_circle.png") 12 12, move;
    --cur-crosshair: url("../img/Cursor/star_4point.png") 12 12, crosshair;
    --cur-col-resize: url("../img/Cursor/horizontal_arrow.png") 12 12, col-resize;
    --cur-row-resize: url("../img/Cursor/vertical_arrow.png") 12 12, row-resize;
    cursor: var(--cur-default);
  }
  body,
  body *{ cursor: inherit; }
  a, a *,
  button, button *,
  [role="button"], [role="button"] *,
  .btn, .btn *,
  .nav-link, .nav-link *,
  .nav-toggle, .nav-toggle *,
  .lang-btn, .lang-btn *,
  .auth-tab, .auth-tab *,
  .auth-switch-link,
  .guide-link, .guide-cat__btn,
  label[for],
  summary,
  select,
  .dc-panel__join, .dc-panel__join *,
  .social-rail__btn, .social-rail__btn *{
    cursor: var(--cur-pointer) !important;
  }
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="search"],
  input[type="number"],
  input[type="url"],
  input[type="tel"],
  textarea,
  [contenteditable="true"]{
    cursor: var(--cur-text) !important;
  }
  :disabled,
  [disabled],
  .is-disabled,
  .dl-btn--disabled,
  button:disabled,
  a[aria-disabled="true"]{
    cursor: var(--cur-not-allowed) !important;
  }
  .is-loading,
  body.is-busy{
    cursor: var(--cur-wait) !important;
  }
  [title][data-help],
  .help-cursor{
    cursor: var(--cur-help) !important;
  }
  html.is-preloading{ overflow: hidden; }

  #site-preloader{
    position: fixed; inset: 0; z-index: 4000;
    display: flex; align-items: center; justify-content: center;
    background: #000;
    transition: opacity .45s var(--ease), visibility .45s;
  }
  #site-preloader.is-done{
    opacity: 0; visibility: hidden; pointer-events: none;
  }
  .preloader-inner{
    position: relative;
    display: flex; flex-direction: column; align-items: center; gap: 22px;
    width: min(560px, 86vw);
  }
  .preloader-inner::before{
    content: "";
    position: absolute; left: 50%; top: 46%;
    width: 70%; height: 55%;
    transform: translate(-50%, -58%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,162,74,.28), transparent 70%);
    filter: blur(18px);
    animation: preloaderGlow 2.6s ease-in-out infinite;
    pointer-events: none;
  }
  .preloader-logo{
    position: relative; z-index: 1;
    width: 100%; height: auto;
    filter: drop-shadow(0 28px 40px rgba(0,0,0,.75)) drop-shadow(0 0 28px rgba(212,162,74,.4));
    animation: preloaderFloat 3.2s ease-in-out infinite;
  }
  .preloader-bar{
    position: relative; z-index: 1;
    width: min(220px, 50vw); height: 3px; border-radius: 99px;
    background: rgba(198,154,92,.18); overflow: hidden;
  }
  .preloader-bar i{
    display: block; height: 100%; width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-700), var(--gold-100));
    animation: preloaderFill 4s var(--ease) forwards;
  }
  @keyframes preloaderFloat{
    0%,100%{ transform: translateY(8px); }
    50%{ transform: translateY(-10px); }
  }
  @keyframes preloaderGlow{
    0%,100%{ opacity: .55; transform: translate(-50%, -58%) scale(1); }
    50%{ opacity: 1; transform: translate(-50%, -58%) scale(1.12); }
  }
  @keyframes preloaderFill{ to{ width: 100%; } }
  @media (prefers-reduced-motion: reduce){
    .preloader-logo, .preloader-bar i, .preloader-inner::before{ animation: none; }
    .preloader-bar i{ width: 100%; }
  }
  
  body{
    margin: 0;
    background: #000;
    color: var(--ink-100);
    font-family: var(--font-ui);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    touch-action: manipulation;
  }
  .site-bg-video{
    position: fixed;
    top: 0; left: 0;
    z-index: -2;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none !important;
    object-fit: cover;
    object-position: center 22%;
    pointer-events: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .site-bg-dim{
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.68) 45%, rgba(0,0,0,.78) 100%);
  }
  
  a{ color: inherit; text-decoration: none; }
  img{ max-width: 100%; display: block; }
  img.site-bg-video{ max-width: none; width: 100vw; height: 100vh; height: 100dvh; }
  ul{ list-style: none; margin: 0; padding: 0; }
  
  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  }
  
  .bg-noise{
    position: fixed; inset: 0; pointer-events: none; z-index: 999;
    opacity: .018; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .social-rail{
    position: fixed; left: 18px; top: 50%; z-index: 90;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 10px;
  }
  .social-rail[hidden]{ display: none !important; }
  .social-rail__btn{
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    color: var(--gold-100);
    background: linear-gradient(180deg, rgba(22,18,14,.9), rgba(8,6,10,.92));
    border: 1px solid rgba(198,154,92,.32);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    transition: transform .18s, border-color .18s, color .18s, background .18s;
  }
  .social-rail__btn svg{ width: 20px; height: 20px; }
  .social-rail__btn:hover{
    transform: translateX(3px);
    color: #1a140a;
    border-color: transparent;
    background: linear-gradient(180deg, var(--gold-100), var(--gold-500));
  }
  .social-rail__btn--discordInvite:hover{ color: #fff; background: linear-gradient(180deg, #738adb, #5865f2); }
  .social-rail__btn--youtube:hover{ color: #fff; background: #e11d2a; }
  .social-rail__btn--tiktok:hover{ color: #fff; background: #111; }
  .social-rail__btn--twitch:hover{ color: #fff; background: #9146ff; }
  @media (max-width: 860px){
    .social-rail{
      left: max(10px, env(safe-area-inset-left));
      right: auto;
      top: 50%;
      bottom: auto;
      transform: translateY(-50%);
    }
    .social-rail__btn{ width: 40px; height: 40px; }
  }
  
  /* =========================================================
     HEADER
     ========================================================= */
  .site-header{
    position: sticky; top: 0; z-index: 100;
    padding-top: env(safe-area-inset-top);
    background:
      var(--mu-surface-bg);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 1px 0 rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.35);
  }
  .site-header.is-scrolled{
    background: rgba(6, 6, 8, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .header-inner{
    width: 100%;
    margin: 0;
    padding: 0 28px;
    height: 62px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: visible;
  }
  .brand{
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
  }
  .brand-text,
  .brand-name,
  .brand-sub{ display: none !important; }
  .brand-mark{
    height: 48px; width: auto;
    filter: drop-shadow(0 0 8px rgba(197,176,129,.4)) drop-shadow(0 2px 4px rgba(0,0,0,.6));
  }
  
  .main-nav{
    display: flex; align-items: center; gap: 4px;
    margin-left: 12px;
    flex: 1;
  }
  .nav-dropdown{
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-dropdown__toggle{
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav-dropdown__toggle::after{
    content: "▾";
    font-size: 10px;
    line-height: 1;
    opacity: .8;
    transition: transform .18s var(--ease);
  }
  .nav-dropdown.is-open .nav-dropdown__toggle::after,
  .nav-dropdown:hover .nav-dropdown__toggle::after{
    transform: translateY(1px) rotate(180deg);
  }
  .nav-dropdown__menu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 4px;
    padding: 18px 10px 10px;
    background: linear-gradient(180deg, rgba(18,16,22,.98), rgba(10,9,13,.98));
    border: 1px solid rgba(212,162,74,.18);
    border-radius: 10px;
    box-shadow: 0 18px 36px rgba(0,0,0,.42);
    z-index: 120;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s var(--ease);
  }
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-dropdown__link{
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink-300);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .18s var(--ease), background-color .18s var(--ease);
  }
  .nav-dropdown__link:hover,
  .nav-dropdown__link.active{
    color: var(--gold-300);
    background-color: rgba(212,162,74,.08);
  }
  .nav-link{
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-300);
    padding: 8px 13px;
    border-radius: 5px;
    transition: color .18s var(--ease), background-color .18s var(--ease);
    white-space: nowrap;
  }
  .nav-link:hover{ color: var(--gold-300); background-color: rgba(212,162,74,.07); }
  .nav-link.active{ color: var(--ink-000); }
  .nav-link--shop{
    position: relative;
    letter-spacing: .08em;
  }
  .nav-link--shop.is-locked{
    opacity: .72;
  }
  .nav-link--shop.is-locked::after{
    content: "";
    display: inline-block;
    width: 9px; height: 10px;
    margin-left: 6px;
    vertical-align: -1px;
    background:
      linear-gradient(180deg, var(--gold-300), var(--gold-700));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='%23000' d='M6 0a3.5 3.5 0 0 0-3.5 3.5V5H1v9h10V5H9.5V3.5A3.5 3.5 0 0 0 6 0zm0 2a1.5 1.5 0 0 1 1.5 1.5V5h-3V3.5A1.5 1.5 0 0 1 6 2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='%23000' d='M6 0a3.5 3.5 0 0 0-3.5 3.5V5H1v9h10V5H9.5V3.5A3.5 3.5 0 0 0 6 0zm0 2a1.5 1.5 0 0 1 1.5 1.5V5h-3V3.5A1.5 1.5 0 0 1 6 2z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .nav-link--shop:not(.is-locked):hover{
    color: var(--gold-100);
  }
  
  .nav-pill,
  .nav-pill-outline{
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
    font: inherit;
    height: 36px;
    padding: 0 18px;
    display: inline-flex; align-items: center; justify-content: center;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,.75);
    letter-spacing: .08em;
    transition: filter .18s var(--ease), color .18s;
    color: #eaf6ff;
    border: none;
    border-radius: 0;
    outline: none;
    background-color: transparent;
    background-image: url("../img/button_blue_1.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    box-shadow: none;
    min-width: 108px;
  }
  .nav-pill{ min-width: 118px; }
  .nav-pill:hover,
  .nav-pill:focus,
  .nav-pill:focus-visible,
  .nav-pill:active,
  .nav-pill-outline:hover,
  .nav-pill-outline:focus,
  .nav-pill-outline:focus-visible,
  .nav-pill-outline:active,
  .nav-pill-outline.active{
    color: #fff;
    background-image: url("../img/button_blue_2.webp");
    background-color: transparent;
    filter: brightness(1.06);
  }
  
  .header-social{ display: none !important; }
  .header-social[hidden], .footer-social[hidden], .header-user[hidden]{ display: none !important; }
  .header-user[hidden] + .lang, .header-social[hidden] + .lang{ margin-left: auto; }
  .header-user{
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
  }
  .header-user-btn{
    display: flex; align-items: center; gap: 8px;
    min-height: 36px; padding: 3px 12px 3px 4px;
    border-radius: 999px;
    border: 1px solid rgba(198,154,92,.38);
    background: linear-gradient(180deg, rgba(32,24,14,.92), rgba(8,6,10,.96));
    color: var(--gold-100);
    text-decoration: none;
    font-family: var(--font-ui);
  }
  .header-user-btn:hover{
    border-color: var(--gold-500);
    background: linear-gradient(180deg, rgba(48,36,16,.95), rgba(12,8,10,.98));
  }
  .header-user-avatar{
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 12px;
    background: linear-gradient(155deg, var(--gold-100), var(--gold-700));
    color: #1a140a;
  }
  .header-user-name{
    max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-size: 13px; font-weight: 700; color: var(--ink-000);
  }
  .header-user-vip{
    font-style: normal;
    font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold-500);
    padding: 2px 7px; border-radius: 999px;
    border: 1px solid rgba(198,154,92,.35);
  }
  .header-user-tip{
    position: absolute; top: 100%; right: 0; z-index: 90;
    width: 260px; padding: 12px 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(198,154,92,.3);
    background: linear-gradient(165deg, rgba(18,14,18,.98), rgba(6,7,11,.98));
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
    opacity: 0; pointer-events: none; transform: translateY(4px);
    transition: opacity .16s, transform .16s;
  }
  .header-user-tip::before{
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -14px;
    height: 14px;
  }
  .header-user:hover .header-user-tip,
  .header-user:focus-within .header-user-tip{
    opacity: 1; pointer-events: auto; transform: none;
  }
  .header-user-tip strong{
    display: block; margin-bottom: 10px;
    font-family: var(--font-display); font-size: 12px; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold-500);
  }
  .header-user-tip-vip{
    display: flex; justify-content: space-between; gap: 8px;
    margin-bottom: 10px; padding: 8px 10px; border-radius: 8px;
    background: rgba(212,162,74,.1); border: 1px solid rgba(212,162,74,.22);
  }
  .header-user-tip-vip span{ font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-500); }
  .header-user-tip-vip b{ color: var(--gold-100); }
  .header-user-tip-grid{ display: grid; gap: 6px; }
  .header-user-tip-grid div{
    display: flex; justify-content: space-between; gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 13px; color: var(--ink-300);
  }
  .header-user-tip-grid b{ color: var(--ink-000); font-family: var(--font-num); }
  .header-user-tip-logout{
    display: block; width: 100%; margin-top: 12px; padding: 10px 12px;
    border-radius: 8px; cursor: pointer;
    border: 1px solid rgba(198,154,92,.35);
    background: rgba(0,0,0,.35);
    color: var(--gold-100);
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
  }
  .header-user-tip-logout:hover{
    border-color: rgba(198,154,92,.55);
    background: rgba(198,154,92,.12);
    color: var(--gold-100);
  }
  .header-cta{
    display: flex; align-items: center; gap: 14px; flex-shrink: 0;
    margin-left: 12px;
  }
  .header-cta .nav-link,
  .header-cta .nav-link:hover,
  .header-cta .nav-link:focus,
  .header-cta .nav-link:active,
  .header-cta .nav-link.active{
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }
  .lang{ position: relative; flex-shrink: 0; z-index: 130; }
  .lang-btn{
    position: relative;
    display: inline-flex; align-items: center; gap: 8px;
    min-width: 72px; height: 36px; padding: 0 26px 0 8px;
    border-radius: 8px; cursor: pointer;
    background: rgba(8,6,10,.72);
    border: 1px solid rgba(198,154,92,.28);
    color: var(--gold-100);
    transition: border-color .18s, background .18s;
  }
  .lang-btn:hover, .lang-btn[aria-expanded="true"]{
    border-color: var(--gold-500);
    background: rgba(212,162,74,.12);
  }
  .lang-btn::after{
    content: '';
    position: absolute; right: 10px; top: 50%;
    width: 6px; height: 6px; margin-top: -4px;
    border-right: 1.5px solid var(--gold-300);
    border-bottom: 1.5px solid var(--gold-300);
    transform: rotate(45deg);
    opacity: .7;
  }
  #header-lang-dd-label{
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .1em;
  }
  #header-lang-dd-label em{ font-style: normal; color: var(--gold-100); }
  .lang-flag{
    width: 28px; height: 20px; object-fit: cover; border-radius: 2px; flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(198,154,92,.2);
  }
  .lang__menu{
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 80;
    min-width: 200px; padding: 6px;
    display: flex; flex-direction: column; gap: 2px;
    background: #0a080c;
    border: 1px solid rgba(198,154,92,.28); border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
  }
  .lang__menu[hidden]{ display: none !important; }
  .lang-opt{
    width: 100%; display: flex; align-items: center; gap: 10px;
    text-align: left; padding: 8px 10px;
    border: 0; border-radius: 6px; cursor: pointer;
    background: transparent; color: var(--ink-100);
    font: 600 13px var(--font-ui);
  }
  .lang-opt .lang-flag{ width: 28px; height: 20px; }
  .lang-opt:hover{ background: rgba(212,162,74,.1); color: var(--gold-100); }
  .lang-opt.active{ color: var(--gold-100); background: rgba(212,162,74,.16); }
  .social-dot{
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--ink-300);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    transition: all .18s var(--ease);
  }
  .social-dot:hover{ color: var(--gold-300); border-color: var(--gold-500); background: rgba(212,162,74,.1); }
  
  .nav-toggle{
    display: none;
    width: 34px; height: 34px;
    background: none; border: none; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    z-index: 131;
  }
  .nav-toggle span{ width: 20px; height: 2px; background: var(--gold-300); border-radius: 2px; transition: transform .22s var(--ease), opacity .18s; }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  
  /* =========================================================
     HERO
     ========================================================= */
  .hero{
    position: relative;
    padding-top: 48px;
    min-height: 88vh;
    overflow: hidden;
  }
  
  .hero-bg{ position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .hero-sky{ display: none; }
  .hero-vignette{ display: none; }
  
  .hero-particles{ position: absolute; inset: 0; }
  .particle{
    position: absolute; border-radius: 50%;
    background: var(--gold-300);
    box-shadow: 0 0 6px 1px rgba(236,200,121,.8);
    opacity: 0;
    animation: floatUp linear infinite;
  }
  @keyframes floatUp{
    0%{ opacity: 0; transform: translateY(0) translateX(0); }
    10%{ opacity: .9; }
    90%{ opacity: .5; }
    100%{ opacity: 0; transform: translateY(-260px) translateX(var(--drift, 30px)); }
  }
  
  .hero-content{
    position: relative; z-index: 2;
    max-width: 760px; margin: 0 auto;
    padding: 28px 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content:has(.hero-brand-row--multi){
    max-width: 1100px;
  }

  .hero-brand-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 36px);
    width: 100%;
  }
  .hero-brand-row--multi{
    max-width: 100%;
  }
  .hero-servers{ display: none !important; }
  .hero-server-badge{ display: none !important; }

  .hero-stats{
    width: min(620px, 94vw);
    margin: 22px auto 0;
    padding: 18px 28px 18px;
    border-radius: 0;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
  }
  .hero-stats__servers{
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    margin: 0 0 12px;
  }
  .hero-stats__chip{
    appearance: none; border: 1px solid rgba(197,176,129,.28);
    background: rgba(0,0,0,.35);
    color: var(--ink-100);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex; flex-direction: column; align-items: flex-start; gap: 1px;
    cursor: pointer;
    transition: border-color .18s, background .18s, transform .18s;
  }
  .hero-stats__chip:hover{ border-color: rgba(197,176,129,.55); transform: translateY(-1px); }
  .hero-stats__chip.is-active{
    border-color: var(--gold-300);
    background: linear-gradient(180deg, rgba(197,176,129,.18), rgba(0,0,0,.4));
    box-shadow: 0 0 16px rgba(197,176,129,.2);
  }
  .hero-stats__chip-name{
    font-family: var(--font-display);
    font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold-100);
  }
  .hero-stats__chip-meta{ font-size: 10px; color: var(--ink-500); letter-spacing: .04em; }
  .hero-stats__grid{
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 8px 16px;
    align-items: center;
    margin-bottom: 12px;
    text-align: center;
  }
  .hero-stats__cell{
    display: flex; flex-direction: column; gap: 6px;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 4px 10px;
  }
  .hero-stats__cell:not(:last-child){
    border-right: 1px solid rgba(197,176,129,.22);
  }
  .hero-stats__label{
    font-family: var(--font-display);
    font-size: 10px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--gold-300);
  }
  .hero-stats__value{
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 800; letter-spacing: .04em;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1.1;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,.5));
  }
  .hero-stats__status{
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-display);
    font-size: clamp(15px, 2.2vw, 20px);
    font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ink-100);
  }
  .hero-stats__pulse{
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--metal);
    box-shadow: 0 0 0 0 rgba(112,111,108,.4);
    flex-shrink: 0;
  }
  .hero-stats__status.is-online{ color: #7dffb0; }
  .hero-stats__status.is-online .hero-stats__pulse{
    background: #3dff7a;
    box-shadow: 0 0 10px rgba(61,255,122,.85);
    animation: heroPulse 1.8s ease-out infinite;
  }
  .hero-stats__status.is-offline,
  .hero-stats__status.is-soon{ color: #ff8a8a; }
  .hero-stats__status.is-offline .hero-stats__pulse,
  .hero-stats__status.is-soon .hero-stats__pulse{
    background: #ff5a5a;
    box-shadow: 0 0 10px rgba(255,90,90,.7);
  }
  @keyframes heroPulse{
    0%{ box-shadow: 0 0 0 0 rgba(61,255,122,.55); }
    70%{ box-shadow: 0 0 0 10px rgba(61,255,122,0); }
    100%{ box-shadow: 0 0 0 0 rgba(61,255,122,0); }
  }
  .hero-stats__bar{
    position: relative;
    height: 6px;
    margin: 0 4px;
    border-radius: 999px;
    background: rgba(0,0,0,.4);
    overflow: hidden;
    border: 1px solid rgba(197,176,129,.25);
  }
  .hero-stats__bar-fill{
    display: block; height: 100%; width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg,
      var(--gold-700) 0%,
      var(--gold-300) 50%,
      var(--gold-100) 100%);
    box-shadow: 0 0 12px rgba(197,176,129,.45);
    transition: width 1s var(--ease);
  }
  .hero-stats__bar-pct{ display: none !important; }
  @media (max-width: 720px){
    .hero-stats{
      padding: 12px 18px 14px;
      margin-top: 16px;
      width: min(100%, 94vw);
      border-width: 28px 28px 32px 28px;
      border-image-width: 28px 28px 32px 28px;
    }
    .hero-stats__grid{ grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
    .hero-stats__cell:not(:last-child){
      border-right: 0;
      border-bottom: 1px solid rgba(197,176,129,.16);
      padding-bottom: 10px;
    }
    .hero-stats__bar{ margin: 0; }
  }

  body.home-multi-servers .hero-online,
  body.home-single-server-badge .hero-online,
  .hero-content:has(.hero-brand-row--multi) .hero-online,
  .hero-online{
    display: none !important;
  }
  body.home-single-server-badge .hero-servers--right{
    display: none !important;
  }
  body.home-single-server-badge .hero-brand-row--multi{
    position: relative;
    justify-content: center;
  }
  body.home-single-server-badge .hero-servers--left{
    display: none !important;
  }
  body.home-single-server-badge .hero-emblem{
    margin-inline: auto;
  }
  @media (max-width: 980px){
    body.home-single-server-badge .hero-servers--left{
      display: none !important;
    }
  }
  
  .reveal{
    animation: rise .9s var(--ease) both;
  }
  .hero-content .reveal:nth-child(1){ animation-delay: .05s; }
  .hero-content .reveal:nth-child(2){ animation-delay: .15s; }
  .hero-content .reveal:nth-child(3){ animation-delay: .3s; }
  .hero-content .reveal:nth-child(4){ animation-delay: .38s; }
  .hero-content .reveal:nth-child(5){ animation-delay: .46s; }
  .hero-content .reveal:nth-child(6){ animation-delay: .58s; }
  .hero-content .reveal:nth-child(7){ animation-delay: .7s; }
  @keyframes rise{ from{ opacity: 0; transform: translateY(18px);} to{ opacity: 1; transform: translateY(0);} }
  
  .hero-eyebrow{
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: .28em;
    color: var(--ink-100);
    text-transform: uppercase;
    margin: 0 0 26px;
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
  }
  
  .hero-emblem{
    position: relative;
    width: min(460px, 82vw);
    height: auto;
    margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .emblem-stage{
    position: relative;
    width: 100%;
    animation: emblemFloat 4.2s ease-in-out infinite;
  }
  .emblem-glow{
    position: absolute; inset: 10% 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,200,121,.38), transparent 70%);
    filter: blur(12px);
    animation: pulseGlow 3.4s ease-in-out infinite;
  }
  .emblem-ring{
    position: absolute; inset: 8% 18%;
    pointer-events: none;
  }
  @keyframes pulseGlow{ 0%,100%{ opacity: .7; transform: scale(1);} 50%{ opacity: 1; transform: scale(1.08);} }
  @keyframes emblemFloat{
    0%,100%{ transform: translateY(10px); }
    50%{ transform: translateY(-14px); }
  }
  .emblem-img{
    position: relative; width: 100%; height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.72)) drop-shadow(0 0 28px rgba(197,176,129,.28));
  }
  @media (prefers-reduced-motion: reduce){
    .emblem-stage, .emblem-glow, .emblem-ring{ animation: none; }
  }
  .sr-only{
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  
  .hero-title{
    font-family: var(--font-deco), var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 8vw, 78px);
    letter-spacing: .08em;
    margin: 0;
    line-height: 1;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,.55)) drop-shadow(0 12px 30px rgba(0,0,0,.55));
  }
  .hero-subtitle{
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: clamp(15px, 2vw, 19px);
    letter-spacing: .5em;
    color: var(--ink-000);
    margin: 10px 0 2px 0.5em;
    text-shadow: 0 2px 10px rgba(0,0,0,.6);
  }
  .hero-season{
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(17px, 2.4vw, 22px);
    letter-spacing: .38em;
    margin: 4px 0 0 0.38em;
    background: linear-gradient(180deg, var(--gold-100), var(--gold-500));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  
  .hero-cta{
    display: flex; justify-content: center; gap: 18px;
    margin: 32px 0 22px;
    flex-wrap: wrap;
  }
  .btn{
    display: inline-flex; align-items: center; justify-content: center;
    width: 248px; height: 58px;
    padding: 0 18px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: transform .18s var(--ease), filter .18s var(--ease);
    border: none;
    outline: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    text-shadow: 0 2px 6px rgba(0,0,0,.85);
    color: #f0e6d2;
    box-shadow: none;
  }
  .btn::before,
  .btn::after{ display: none; content: none; }
  .btn:hover{ transform: translateY(-2px) scale(1.02); }
  .btn:active{ transform: translateY(0); }
  .btn-gold,
  .btn-blue{
    color: #eaf6ff;
    background-image: url("../img/button_blue_1.webp");
    filter: drop-shadow(0 8px 18px rgba(80,160,220,.28));
  }
  .btn-gold:hover,
  .btn-gold:focus,
  .btn-gold:focus-visible,
  .btn-gold:active,
  .btn-blue:hover,
  .btn-blue:focus,
  .btn-blue:focus-visible,
  .btn-blue:active{
    background-image: url("../img/button_blue_2.webp");
    background-color: transparent;
    filter: brightness(1.1) drop-shadow(0 12px 22px rgba(80,160,220,.42));
    box-shadow: none;
  }
  
  .hero-online{
    display: inline-flex; align-items: center; justify-content: center; gap: 14px;
    font-family: var(--font-ui);
    min-width: 280px;
    height: 48px;
    padding: 0 28px;
    background: url("../img/bar_dark.webp") center / 100% 100% no-repeat;
  }
  .online-label{
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-100);
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
  }
  .online-count{ display: inline-flex; gap: 3px; }
  .digit{
    font-family: var(--font-num);
    font-weight: 800;
    font-size: 13px;
    color: var(--gold-100);
    background: linear-gradient(180deg, #1c2029, #12151c);
    border: 1px solid var(--line-gold-soft);
    border-radius: 4px;
    min-width: 20px;
    padding: 3px 0;
    text-align: center;
  }
  
  /* =========================================================
     FEATURE RAIL
     ========================================================= */
  .feature-grid{ display: none !important; }
  .feature-rail{
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 52px auto 0;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--mu-surface-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .08),
      0 1px 0 rgba(0, 0, 0, .6),
      0 8px 24px rgba(0, 0, 0, .35);
    clip-path: var(--mu-clip);
    --mu-cut: 16px;
  }
  .feature-rail::before,
  .feature-rail::after{
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    height: 12px;
    z-index: 3;
    pointer-events: none;
    background: url("../img/let.webp") center / 100% 100% no-repeat;
    opacity: .88;
  }
  .feature-rail::before{ top: 10px; }
  .feature-rail::after{ bottom: 10px; }
  .feature-rail__item{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 168px;
    padding: 42px 18px 36px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: background .2s var(--ease), transform .2s var(--ease);
  }
  .feature-rail__item + .feature-rail__item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 28%;
    bottom: 28%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(203,181,156,.45), transparent);
  }
  .feature-rail__title{
    font-family: var(--font-deco), var(--font-display);
    font-size: clamp(18px, 1.9vw, 26px);
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    max-width: 11ch;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
    transition: transform .22s var(--ease), filter .22s var(--ease);
  }
  .feature-rail__go{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    height: 40px;
    padding: 0 14px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #eaf6ff;
    text-shadow: 0 1px 3px rgba(0,0,0,.75);
    background: url("../img/button_blue_1.webp") center / 100% 100% no-repeat;
    opacity: .72;
    transition: opacity .2s var(--ease), filter .2s var(--ease), transform .2s var(--ease);
  }
  .feature-rail__item:hover{
    background: radial-gradient(120% 80% at 50% 30%, rgba(203,181,156,.1), transparent 60%);
  }
  .feature-rail__item:hover .feature-rail__title{
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.55)) brightness(1.08);
  }
  .feature-rail__item:hover .feature-rail__go{
    opacity: 1;
    background-image: url("../img/button_blue_2.webp");
    transform: translateY(1px);
    filter: brightness(1.06);
  }
  .feature-card-inner,
  .feature-body,
  .feature-link,
  .feature-mark{ display: none !important; }
  
  /* =========================================================
     NEWS HOME
     ========================================================= */
  .news-home{
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 48px auto 0;
    padding: 0 20px 48px;
  }
  .news-home__head{
    text-align: center;
    margin: 0 0 28px;
  }
  .news-home__title{
    font-family: var(--font-deco), var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  }
  .news-home__foot{
    display: flex;
    justify-content: center;
    margin-top: 22px;
  }
  .news-home__all.btn{
    width: min(200px, 100%);
    height: 46px;
    font-size: 12px;
  }
  .news-strip{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
    background: var(--mu-surface-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .08),
      0 1px 0 rgba(0, 0, 0, .6),
      0 8px 24px rgba(0, 0, 0, .35);
    clip-path: var(--mu-clip);
    --mu-cut: 14px;
  }
  .news-strip::before,
  .news-strip::after{
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    height: 11px;
    z-index: 2;
    pointer-events: none;
    background: url("../img/let.webp") center / 100% 100% no-repeat;
    opacity: .88;
  }
  .news-strip::before{ top: 8px; }
  .news-strip::after{ bottom: 8px; }
  .news-strip::after{ /* keep */ }
  .news-rule{ display: none !important; }
  .news-item{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 16px 18px;
    padding: 16px 16px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, rgba(12, 12, 14, .92), rgba(4, 4, 6, .88));
    border: 1px solid rgba(255, 255, 255, .08);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
  }
  .news-item:hover{
    border-color: rgba(203, 181, 156, .38);
    transform: translateY(-2px);
    background: radial-gradient(120% 90% at 0% 50%, rgba(255,255,255,.06), transparent 45%),
      linear-gradient(180deg, rgba(18, 18, 20, .75), rgba(8, 8, 10, .55));
  }
  .news-thumb{
    flex-shrink: 0;
    width: 88px; height: 88px;
    border-radius: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(198,154,92,.28);
    background: radial-gradient(circle at 50% 30%, rgba(131,109,86,.35), #0c0a08 72%);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.45);
  }
  .news-thumb img{
    width: 78%; height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.45));
  }
  .news-thumb--brand,
  .news-thumb--exp{ background: radial-gradient(circle at 50% 30%, rgba(131,109,86,.35), #0c0a08 72%); }
  .exp-badge{ display: none; }
  .news-text{
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .news-text h3,
  .news-text h4{
    font-family: var(--font-deco), var(--font-display);
    font-weight: 800;
    font-size: clamp(15px, 1.6vw, 18px);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1.25;
  }
  .news-text p{
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(212, 206, 194, .78);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-link.btn,
  .news-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 132px;
    height: 36px;
    margin-top: 6px;
    padding: 0 14px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #eaf6ff;
    text-shadow: 0 1px 3px rgba(0,0,0,.75);
    border: none;
    border-bottom: none;
    background: url("../img/button_blue_1.webp") center / 100% 100% no-repeat;
    pointer-events: none;
  }
  .news-item:hover .news-link{
    background-image: url("../img/button_blue_2.webp");
    filter: brightness(1.06);
  }
  
  /* =========================================================
     HALL OF FAME
     ========================================================= */
  .hof{
    position: relative;
    background: linear-gradient(180deg, rgba(6,7,11,.82) 0%, #06070b 55%, #06070b 100%);
    padding: 84px 28px 96px;
    border-top: 1px solid rgba(198,154,92,.16);
  }
  .hof-header{
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .hof-eyebrow,
  .hof-subtitle{ display: none !important; }
  .hof-title-frame{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 0 18px;
    background: none;
    min-height: 0;
  }
  .hof-title-frame::before,
  .hof-title-frame::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 1px;
    pointer-events: none;
  }
  .hof-title-frame::before{
    width: min(320px, 72vw);
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(203,181,156,.75), transparent);
  }
  .hof-title-frame::after{
    width: 7px; height: 7px;
    bottom: -3px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--gold-500);
    box-shadow: 0 0 10px rgba(131,109,86,.45);
  }
  .hof-title{
    font-family: var(--font-deco), var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 2px 0 rgba(54,35,19,.55)) drop-shadow(0 10px 22px rgba(0,0,0,.5));
  }
  .hof-title span{
    background: inherit;
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  
  .hof-grid{
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .hof-panel{
    position: relative;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 560px;
    overflow: visible;
    box-sizing: border-box;
  }
  .hof-panel-head,
  .hof-list,
  .hof-more{ position: relative; z-index: 1; max-width: 100%; box-sizing: border-box; }

  .hof-panel-head{
    display: flex; align-items: center; justify-content: center;
    gap: 0;
    padding: 4px 4px 14px;
    margin: 0;
    flex-shrink: 0;
    border-bottom: 0;
    text-align: center;
  }
  .hof-panel-icon{ display: none; }
  .hof-panel-head h3{
    font-family: var(--font-deco), var(--font-display);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    width: 100%;
    background: var(--text-metal);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.65));
  }

  .hof-list{
    margin: 0;
    padding: 4px 0 16px;
    list-style: none;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .hof-row{
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    min-height: 60px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 10px 16px 10px 14px;
    box-sizing: border-box;
    border-radius: 10px;
    transition: filter .18s var(--ease), border-color .18s, box-shadow .18s;
    overflow: hidden;
    min-width: 0;
  }
  .hof-row > *{ min-width: 0; }
  .hof .hof-flag,
  .hof .hof-flag-slot{ display: none !important; }
  .hof-row--guild{ grid-template-columns: auto auto minmax(0, 1fr) auto; }
  .hof-row:hover{
    filter: brightness(1.06);
    border-color: rgba(198, 154, 92, .32);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .6), 0 10px 28px rgba(0, 0, 0, .4);
  }
  .hof-row--1{
    border-color: rgba(198, 154, 92, .28);
  }
  .hof-row--2{
    border-color: rgba(198, 154, 92, .18);
  }
  .hof-empty{
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(175,169,152,.7);
    font-size: 13px;
    letter-spacing: .03em;
    padding: 14px 22px;
    min-height: 58px;
  }

  .hof-rank{
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-num);
    font-weight: 800;
    font-size: 13px;
    color: #e5c47d;
    background: linear-gradient(180deg, #2b1b12, #1a110a);
    border: 1px solid rgba(229,196,125,.4);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(229,196,125,.15), 0 2px 6px rgba(0,0,0,.4);
  }
  .hof-rank--gold{
    color: #1a110a;
    background: linear-gradient(180deg, #e5c47d, #a67c00 55%, #8b6914);
    border-color: #e5c47d;
    box-shadow: 0 0 14px rgba(212,175,55,.45), inset 0 1px 0 rgba(255,240,200,.5);
  }
  .hof-rank--silver{
    color: #1a110a;
    background: linear-gradient(180deg, #afa998, #807b6e 60%, #5a564c);
    border-color: #afa998;
    box-shadow: 0 0 10px rgba(175,169,152,.3);
  }
  .hof-rank--bronze{
    color: #e5c47d;
    background: linear-gradient(180deg, #8b6914, #2b1b12);
    border-color: rgba(166,124,0,.55);
  }

  .hof-avatar{
    position: relative;
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
  }
  .hof-avatar-frame{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    pointer-events: none;
  }
  .hof-avatar-fill{
    position: relative;
    width: 62%; height: 62%;
    border-radius: 50%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 10px;
    color: var(--gold-100);
    background: rgba(8,6,10,.85);
  }
  .hof-class-img{
    width: 100%; height: 100%; object-fit: contain; object-position: center top; border-radius: 50%;
  }
  .hof-title-img{
    position: absolute; inset: -6px; width: 58px; height: 58px;
    pointer-events: none; object-fit: contain;
  }

  .hof-guild-emblem{
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 11px;
    color: var(--gold-100);
    background: rgba(0,0,0,.45);
    border: 1px solid var(--line-gold);
    overflow: hidden;
  }
  .hof-guild-mark{
    width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated;
  }

  .hof-info{
    min-width: 0;
    display: flex; flex-direction: column; gap: 4px;
  }
  .hof-name-row{
    display: flex; align-items: center; gap: 8px; min-width: 0;
  }
  .hof-name{
    font-size: 15px;
    font-weight: 700;
    color: #f0e6d2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .hof-class{
    font-size: 11px;
    color: #c8aa6e;
    letter-spacing: .04em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .hof-flag, .hof-flag-slot{
    width: 28px; height: 18px; object-fit: cover; border-radius: 3px; flex-shrink: 0;
    justify-self: end;
    box-shadow: 0 0 0 1px rgba(198,154,92,.2);
  }
  .hof-flag-slot{ background: rgba(255,255,255,.04); box-shadow: none; }
  .hof-gens{ width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
  .hof-name-row .online-dot{
    display: inline-block; width: 7px; height: 7px; border-radius: 50%;
    background: #5dcc7a; flex-shrink: 0;
  }
  .hof-stats{
    display: flex; flex-wrap: nowrap; align-items: center; gap: 7px;
    justify-self: end;
    flex-shrink: 0;
  }
  .hof-stat{
    display: inline-flex; align-items: baseline; gap: 5px;
    padding: 6px 11px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2b1b12, #1a110a);
    border: 1px solid rgba(229,196,125,.4);
    box-shadow: inset 0 1px 0 rgba(229,196,125,.15), 0 2px 8px rgba(0,0,0,.4);
  }
  .hof-stat em{
    font-style: normal;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #e5c47d;
  }
  .hof-stat b{
    font-family: var(--font-num);
    font-size: 13px;
    font-weight: 800;
    color: #f0e6d2;
  }

  .hof-more{
    position: relative;
    display: flex; align-items: center; justify-content: center;
    align-self: center;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: 4px;
    width: min(240px, 94%);
    max-width: 100%;
    height: 44px;
    padding: 0 16px;
    z-index: 2;
    box-sizing: border-box;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #f0e6d2;
    text-shadow: 0 1px 4px rgba(0,0,0,.8);
    border: none;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../img/button_blue_1.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    box-shadow: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  }
  .hof-more::before,
  .hof-more::after{ display: none; content: none; }
  .hof-more:hover{
    color: #fff;
    background-image: url("../img/button_blue_2.webp");
    filter: brightness(1.06) drop-shadow(0 6px 14px rgba(0,0,0,.45));
  }

  
  @media (max-width: 860px){
    .hof-grid{ grid-template-columns: 1fr; }
    .hof{ padding: 64px 18px 72px; }
    .hof-panel{
      min-height: 0;
      padding: 22px 18px 20px;
    }
    .hof-row{ grid-template-columns: auto auto minmax(0, 1fr) auto; min-height: 50px; }
    .hof-more{ margin-bottom: 0; }
    .hof-stats{ grid-column: 1 / -1; justify-self: start; }
    .hof-flag, .hof-flag-slot{ grid-column: 4; grid-row: 1; }
  }
  
  /* =========================================================
     FOOTER
     ========================================================= */
  .site-footer{
    border-top: 1px solid rgba(255,255,255,.06);
    background: #06070b;
    padding: 26px 0;
  }
  .footer-inner{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex; align-items: center; gap: 22px;
    flex-wrap: wrap;
  }
  .footer-logo{
    height: 42px; width: auto; display: block;
    filter: drop-shadow(0 0 10px rgba(197,176,129,.32));
  }
  .footer-nav{ display: flex; gap: 22px; flex-wrap: wrap; }
  .footer-nav a{ font-size: 12px; color: var(--ink-300); transition: color .18s; }
  .footer-nav a:hover{ color: var(--gold-300); }
  .footer-copy{ margin-left: auto; font-size: 11.5px; color: var(--ink-500); }
  .footer-social{ display: flex; gap: 14px; }
  .footer-social a{
    color: var(--ink-500);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: color .18s;
  }
  .footer-social a:hover{ color: var(--gold-300); }
  
  @media (max-width: 980px){
    .footer-copy{ margin-left: 0; order: 4; width: 100%; }
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1080px){
    .feature-rail{ grid-template-columns: repeat(2, 1fr); }
    .feature-rail__item + .feature-rail__item::before{ display: none; }
  }
  
  @media (max-width: 860px){
    .feature-rail{ display: none !important; }
    .main-nav a[href*="events.html"],
    .footer-nav a[href*="events.html"],
    .feature-card--events,
    .main-nav a[href*="downloads.html"],
    .hero-cta a[href*="downloads.html"]{ display: none !important; }
    .header-inner{
      height: 56px;
      padding: 0 12px;
      gap: 8px;
      position: relative;
    }
    .main-nav{
      position: absolute; top: calc(56px + env(safe-area-inset-top)); left: 0; right: 0;
      max-height: calc(100dvh - 56px - env(safe-area-inset-top));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      background: linear-gradient(180deg, #121016, #0a090d);
      border-bottom: 1px solid rgba(212,162,74,.22);
      box-shadow: 0 24px 40px rgba(0,0,0,.45);
      flex-direction: column; align-items: stretch;
      padding: 8px 14px max(20px, env(safe-area-inset-bottom));
      gap: 4px;
      transform: translateY(-10px);
      opacity: 0; pointer-events: none; visibility: hidden;
      transition: transform .22s var(--ease), opacity .2s var(--ease), visibility .2s;
    }
    .main-nav.open{ transform: none; opacity: 1; pointer-events: auto; visibility: visible; }
    .main-nav .nav-link{
      width: 100%; padding: 14px 12px; text-align: center;
      border-radius: 10px; font-size: 13px;
    }
      .nav-dropdown{
        display: block;
        width: 100%;
      }
      .nav-dropdown__toggle{
        width: 100%;
        justify-content: center;
      }
      .nav-dropdown__menu{
        position: static;
        min-width: 0;
        margin-top: 6px;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
      }
      .nav-dropdown__link{
        text-align: center;
        font-size: 12.5px;
      }
    .main-nav .header-cta{
        display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
        margin: 10px 0 0; padding: 12px 0 4px;
      border-top: 1px solid rgba(198,154,92,.18);
    }
    .main-nav .header-cta .nav-pill,
    .main-nav .header-cta .nav-pill-outline{
      min-width: 120px; height: 40px; padding: 0 16px; font-size: 12px;
    }
    .header-user-name{ display: none; }
    .lang{ margin-left: auto; }
    .header-inner > .header-cta{ display: none; }
    .nav-toggle{ display: flex; margin-left: 4px; width: 44px; height: 44px; }
    .brand-text{ display: none; }
    .lang-btn{ min-width: 64px; height: 40px; }
    .lang__menu{
      position: fixed;
      top: calc(56px + env(safe-area-inset-top) + 6px);
      left: 12px; right: 12px;
      min-width: 0; width: auto;
      z-index: 220;
      padding: 8px;
      max-height: min(70dvh, 420px);
      overflow-y: auto;
    }
    .lang-opt{ padding: 12px 14px; min-height: 48px; font-size: 15px; }
    .lang-opt .lang-flag{ width: 32px; height: 24px; }
    .hero{ min-height: 0; padding-top: 18px; }
    .feature-card{
      aspect-ratio: auto;
      min-height: 180px;
      height: auto;
      padding: 22px 18px 18px;
    }
    .site-footer{ padding-bottom: max(22px, env(safe-area-inset-bottom)); }
  }
  
  @media (max-width: 640px){
    .feature-grid{ grid-template-columns: 1fr; padding: 0 14px; gap: 12px; }
    .hero-content{ padding: 18px 14px 0; max-width: 100%; }
    .hero-emblem{ width: min(300px, 78vw); height: auto; }
    .hero-eyebrow{ font-size: 12px; letter-spacing: .16em; margin-bottom: 14px; }
    .hero-title{ font-size: 42px; }
    .hero-subtitle{ letter-spacing: .35em; }
    .hero-cta{ gap: 10px; margin: 20px 0 16px; width: 100%; }
    .btn{ width: min(240px, 100%); height: 50px; font-size: 13px; }
    .hof-title{ font-size: 26px; letter-spacing: .1em; }
    .header-inner{ padding: 0 10px; }
    .hero-brand-row--multi{
      flex-wrap: wrap;
      row-gap: 10px;
    }
    .hero-brand-row--multi .hero-emblem{ order: -1; width: 100%; }
    .hero-servers{ flex-direction: row; flex: 1 1 auto; }
    .hero-server-badge{ width: 96px; height: 96px; }
    body.home-single-server-badge .hero-brand-row--multi{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    body.home-single-server-badge .hero-brand-row--multi .hero-emblem{
      order: 0;
      width: min(300px, 78vw);
    }
    body.home-single-server-badge .hero-servers--left{
      position: static;
      left: auto;
      top: auto;
      transform: none;
      order: 1;
      flex: 0 0 auto;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 4px 0 8px;
    }
    body.home-single-server-badge .hero-server-badge{
      width: clamp(112px, 34vw, 132px);
      height: clamp(112px, 34vw, 132px);
    }
    .social-rail{
      left: max(10px, env(safe-area-inset-left));
      right: auto;
      top: 50%;
      bottom: auto;
      transform: translateY(-50%);
    }
    .countdown-units{ gap: 5px; }
    .cu{ padding: 10px 4px 8px; }
  }

  @media (max-width: 430px){
    .hero-emblem{ width: min(260px, 82vw); }
    .brand-mark{ height: 30px; }
    .online-label{ font-size: 10px; }
    .feature-body h2, .feature-body h3{ font-size: 14px; }
    .feature-body p{ font-size: 12px; }
    .footer-inner{ padding: 0 14px; gap: 12px; }
    .footer-nav{ gap: 12px; }
    #header-lang-dd-label em{ display: none; }
    .lang-btn{ min-width: 48px; padding: 0 22px 0 8px; }
  }

  .hero-countdown{
    width: min(560px, calc(100vw - 32px));
    margin: 18px auto 0;
    padding: 18px 20px 16px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(165deg, rgba(10,10,12,.98), rgba(2,2,4,.99));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-countdown--under-brand{
    margin-top: 20px;
    max-width: min(580px, 100%);
  }
  .hero-countdown[hidden], #hero-countdown[hidden]{ display: none !important; }
  .hero-countdown__head{ margin-bottom: 4px; }
  .hero-countdown__label{
    font-family: var(--font-display);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-size: 11px;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
  }
  .hero-countdown__label::before,
  .hero-countdown__label::after{
    content: "";
    position: absolute; top: 50%;
    width: 28px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-700));
  }
  .hero-countdown__label::before{ right: calc(100% + 10px); transform: scaleX(-1); }
  .hero-countdown__label::after{
    left: calc(100% + 10px);
    background: linear-gradient(90deg, var(--gold-700), transparent);
  }
  .countdown-units{
    display: flex; justify-content: center; align-items: stretch; gap: 8px;
  }
  .cu{
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    max-width: 92px;
    padding: 12px 8px 10px;
    background: rgba(0,0,0,.42);
    border: 1px solid rgba(198,154,92,.22);
    border-radius: 12px;
  }
  .cu + .cu::before{
    content: "";
    position: absolute;
    left: -6px; top: 50%;
    width: 4px; height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: var(--gold-500);
    opacity: .55;
    pointer-events: none;
  }
  .cu span{
    display: block;
    font-family: var(--font-num);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gold-100);
    letter-spacing: .02em;
  }
  .cu small{
    display: block;
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-500);
  }
  .hero-countdown__footer{
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(198,154,92,.14);
    display: grid;
    gap: 4px;
    font-size: 12px;
    color: var(--ink-300);
  }
  .hero-countdown__footer strong{ color: var(--gold-100); font-weight: 700; }
  .hero-countdown__footer span{ color: var(--ink-500); }
  .hero-countdown__beta{
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(62, 207, 142, .28);
    background:
      radial-gradient(120% 100% at 50% 0%, rgba(62, 207, 142, .14), transparent 60%),
      rgba(0, 0, 0, .35);
  }
  .hero-countdown__beta-title{
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #8dffc0;
  }
  .hero-countdown__beta-body{
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(232, 226, 214, .9);
  }
  .hero-countdown__live{
    padding: 6px 0 2px;
  }
  .hero-countdown__live-badge{
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0a140f;
    background: linear-gradient(135deg, #9dffc4, #3ecf8e);
  }
  .hero-countdown__live .hero-countdown__beta-title{ margin-bottom: 8px; }
  .hero-countdown__live .hero-countdown__beta-body{ max-width: 42ch; margin-inline: auto; }
  .hero-waiting{
    margin: 12px 0 0;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--ink-300);
  }
  .hero-waiting #hero-waiting-count,
  .hero-waiting span:last-child{
    color: var(--gold-300);
    font-family: var(--font-num);
    font-weight: 700;
  }

#challengermu-toasts{
  position: fixed; top: 88px; right: 20px; z-index: 400;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none; max-width: min(360px, calc(100vw - 24px));
}
.challengermu-toast{
  pointer-events: auto; position: relative;
  display: flex; align-items: flex-start; gap: 12px;
  min-width: 280px; max-width: 360px;
  padding: 14px 16px 16px; border-radius: 12px;
  border: 1px solid rgba(198,154,92,.28);
  background: linear-gradient(155deg, rgba(16,13,19,.97), rgba(6,7,11,.98));
  box-shadow: 0 16px 36px rgba(0,0,0,.5);
  backdrop-filter: blur(16px); color: var(--ink-000); overflow: hidden;
  transform: translate3d(110%, 0, 0); opacity: 0;
  transition: transform .35s var(--ease), opacity .28s ease;
}
.challengermu-toast::before{
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-700));
}
.challengermu-toast.is-in{ transform: translate3d(0,0,0); opacity: 1; }
.challengermu-toast.is-out{ transform: translate3d(110%,0,0); opacity: 0; }
.challengermu-toast--error::before{ background: linear-gradient(180deg, #e07070, #8a3030); }
.challengermu-toast--success::before{ background: linear-gradient(180deg, #6dcc8a, #2a7a44); }
.challengermu-toast__mark{
  width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; border-radius: 50%;
  background: rgba(212,162,74,.16); border: 1px solid rgba(198,154,92,.35); position: relative;
}
.challengermu-toast__mark::after{
  content: ""; position: absolute; left: 8px; top: 6px; width: 7px; height: 12px;
  border-right: 2px solid var(--gold-300); border-bottom: 2px solid var(--gold-300);
  transform: rotate(40deg);
}
.challengermu-toast--error .challengermu-toast__mark{ background: rgba(180,60,60,.18); border-color: rgba(224,112,112,.4); }
.challengermu-toast--error .challengermu-toast__mark::after{
  inset: 12px 8px; height: 2px; width: 12px; border: 0; background: #e07070; transform: rotate(45deg);
}
.challengermu-toast--error .challengermu-toast__mark::before{
  content: ""; position: absolute; inset: 12px 8px; height: 2px; width: 12px; background: #e07070; transform: rotate(-45deg);
}
.challengermu-toast__body{ flex: 1; min-width: 0; }
.challengermu-toast__title{ margin: 0; font-family: var(--font-display); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-100); }
.challengermu-toast__msg{ margin: 4px 0 0; font-size: 13px; line-height: 1.45; color: var(--ink-100); }
.challengermu-toast__close{
  position: absolute; top: 8px; right: 8px; border: 0; background: none;
  color: var(--ink-500); cursor: pointer; font-size: 16px; line-height: 1;
}
.challengermu-toast__bar{ position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.06); }
.challengermu-toast__bar i{
  display: block; height: 100%; width: 100%; background: var(--gold-500);
  transform-origin: left; animation: challengermuToastBar 4.2s linear forwards;
}
.challengermu-toast--error .challengermu-toast__bar i{ background: #e07070; }
.challengermu-toast--success .challengermu-toast__bar i{ background: #6dcc8a; }
@keyframes challengermuToastBar { to { transform: scaleX(0); } }

/* Shared modern pager — ChallengerMU.pager */
.rh-pager{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.rh-pager__btn{
  min-width: 36px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(198,154,92,.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(42,32,22,.95), rgba(16,12,8,.98));
  color: #e8d8b8;
  font-family: var(--font-num, Manrope, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .12s ease;
  box-shadow: inset 0 1px 0 rgba(255,220,150,.06);
}
.rh-pager__btn:hover:not(:disabled){
  border-color: rgba(232,192,96,.55);
  color: #fff4d8;
  transform: translateY(-1px);
}
.rh-pager__btn:disabled{
  opacity: .38;
  cursor: default;
  transform: none;
}
.rh-pager__btn--active{
  background: linear-gradient(180deg, #d4a040, #8a5818);
  border-color: #f0d070;
  color: #1a1208;
  box-shadow: 0 0 0 1px rgba(240,208,112,.25), 0 4px 12px rgba(180,110,30,.35);
}
.rh-pager__btn--active:hover:not(:disabled){
  color: #1a1208;
  transform: none;
}
.rh-pager__btn--nav{
  min-width: 38px;
  font-size: 18px;
  line-height: 1;
  padding: 0 10px;
}
.rh-pager__btn--gap{
  min-width: 28px;
  padding: 0 4px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: rgba(200,180,140,.45);
  cursor: default;
  pointer-events: none;
}
.challengermu-prompt{
  position: fixed; inset: 0; z-index: 12000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(4,5,8,.72);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .18s ease;
}
.challengermu-prompt.is-in{ opacity: 1; }
.challengermu-prompt.is-out{ opacity: 0; }
.challengermu-prompt__panel{
  width: min(400px, 100%);
  padding: 22px 20px 18px;
  border-radius: 14px;
  border: 1px solid rgba(198,154,92,.35);
  background: linear-gradient(165deg, rgba(22,16,18,.98), rgba(8,7,11,.98));
  box-shadow: 0 24px 50px rgba(0,0,0,.55);
}
.challengermu-prompt__title{
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-100);
}
.challengermu-prompt__msg{
  margin: 0 0 14px;
  font-size: 13px; line-height: 1.45; color: var(--ink-100);
}
.challengermu-prompt__label{
  display: grid; gap: 6px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-500);
}
.challengermu-prompt__input{
  width: 100%; box-sizing: border-box;
  padding: 11px 12px; border-radius: 8px;
  border: 1px solid rgba(198,154,92,.32);
  background: rgba(0,0,0,.35);
  color: var(--ink-000);
  font-size: 14px;
}
.challengermu-prompt__input:focus{
  outline: none;
  border-color: rgba(212,162,74,.65);
}
.challengermu-prompt__actions{
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 16px;
}
.challengermu-prompt__btn{
  min-width: 96px; padding: 10px 14px; border-radius: 8px;
  cursor: pointer; font-family: var(--font-display);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.challengermu-prompt__btn--cancel{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--ink-100);
}
.challengermu-prompt__btn--ok{
  border: 1px solid rgba(198,154,92,.45);
  background: linear-gradient(180deg, rgba(80,56,20,.95), rgba(28,18,10,.98));
  color: var(--gold-100);
}
.challengermu-prompt__btn--ok:hover{
  border-color: rgba(212,162,74,.7);
  background: linear-gradient(180deg, rgba(110,76,28,.98), rgba(36,24,12,.98));
}

.site-audio-btn{
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 90;
  width: 42px; height: 42px; padding: 0;
  border: none; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: #b5bac1; background: #1e1f22;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  transition: background .15s, color .15s, transform .15s;
}
.site-audio-btn:hover{ background: #2b2d31; color: #fff; transform: translateY(-1px); }
.site-audio-btn svg{ width: 22px; height: 22px; display: block; }
.site-audio-btn.is-muted::after{
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 2.5px; height: 24px; border-radius: 2px;
  background: #ed4245;
  box-shadow: 0 0 0 2px #1e1f22;
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}
.site-audio-btn:not(.is-muted){ color: #23a559; }
