    :root {
      --bg: #0a0e27;
      --text: #ffffff;
      --text-muted: rgba(255,255,255,0.75);
      --text-soft: rgba(255,255,255,0.55);
      --line: rgba(255,255,255,0.1);
      --line-strong: rgba(255,255,255,0.15);
      --glass: rgba(255,255,255,0.02);
      --glass-hover: rgba(255,255,255,0.04);
      --chip: rgba(255,255,255,0.06);
      --chip-active: rgba(255,255,255,0.15);
      --primary: #6366f1;
      --primary-glow: rgba(99, 102, 241, 0.3);
      --accent: #ec4899;
      --accent-glow: rgba(236, 72, 153, 0.25);
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      overflow-y: auto;
    }
    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f1535 100%);
      color: var(--text);
      overflow-x: hidden;
      overflow-x: clip;
      display: flow-root;
      position: relative;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.nav-open {
      overflow: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    html, body {
      touch-action: manipulation;
    }

    * {
      -webkit-tap-highlight-color: transparent;
    }

    .site-loader {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at center, rgba(99,102,241,0.18), rgba(10,14,39,0.96) 45%, rgba(5,7,17,1) 100%);
      z-index: 9999;
      transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    }

    .site-loader.hidden {
      opacity: 0;
      visibility: hidden;
      transform: scale(1.03);
      pointer-events: none;
    }

    .loader-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .loader-art {
      width: min(420px, 58vw);
      filter: drop-shadow(0 0 28px rgba(162, 110, 255, 0.7));
      animation: loaderFloat 1.8s ease-in-out infinite alternate, loaderPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    .brand-svg {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes loaderFloat {
      from { transform: translateY(8px); }
      to { transform: translateY(-8px); }
    }

    @keyframes loaderPop {
      from { opacity: 0; transform: scale(0.82); }
      to { opacity: 1; transform: scale(1); }
    }

    .loader-progress {
      width: min(220px, 50vw);
      height: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
    }

    .loader-progress-fill {
      height: 100%;
      width: 0%;
      border-radius: 999px;
      background: linear-gradient(90deg, #6d4af0, #d0a4ff, #f0d9ff);
      animation: loaderProgress 0.85s ease-out forwards;
    }

    @keyframes loaderProgress {
      from { width: 0%; }
      to { width: 100%; }
    }

    .loader-label {
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgba(255,255,255,0.5);
    }

    .page {
      width: min(1560px, calc(100vw - 34px));
      margin: 18px auto 26px;
      background: rgba(15, 21, 53, 0.7);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      box-shadow:
        0 50px 150px rgba(0,0,0,0.8),
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 150px rgba(99, 102, 241, 0.15),
        inset 0 0 100px rgba(99, 102, 241, 0.05);
      overflow: visible;
      position: relative;
      z-index: 10;
      animation: pageReveal 0.9s ease-out 0.2s backwards;
    }

    @keyframes pageReveal {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .topbar {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px 12px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: #0d122e;
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
    }

    @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      .topbar {
        background: transparent;
      }

      .topbar::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        border-radius: inherit;
        background: rgba(13, 18, 46, 0.42);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        pointer-events: none;
      }
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex-shrink: 0;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    .brand:hover { opacity: 0.8; }

    .brand-svg.compact {
      width: 118px;
      height: auto;
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 2px;
      margin: 0;
      min-width: 0;
    }

    .nav.left {
      justify-content: flex-start;
      flex-shrink: 0;
    }

    .nav.right {
      justify-content: flex-end;
      margin-left: auto;
      flex-shrink: 0;
    }

    .nav.right.hidden-until-auth {
      display: none !important;
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
      color: var(--text-muted);
      font-size: 0.76rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      background: transparent;
    }

    .nav-item:hover {
      background: rgba(99, 102, 241, 0.15);
      color: var(--text);
      border-color: rgba(99, 102, 241, 0.3);
    }

    .nav-item.active {
      background: rgba(99, 102, 241, 0.25);
      border-color: rgba(99, 102, 241, 0.5);
      color: var(--text);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    }

    .nav-dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(12, 14, 17, 0.95);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 8px 0;
      min-width: 180px;
      margin-top: 6px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      opacity: 0;
      pointer-events: none;
      z-index: 10000;
      transition: opacity 0.2s ease;
    }

    .dropdown-menu.show {
      opacity: 1;
      pointer-events: auto;
    }

    .dropdown-menu:empty {
      display: none;
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 16px;
      color: var(--text-muted);
      font-size: 0.85rem;
      text-transform: capitalize;
      letter-spacing: 0;
      font-weight: 500;
      transition: all 0.2s ease;
      border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
      background: rgba(255,255,255,0.06);
      color: var(--text);
      border-left-color: rgba(255,255,255,0.3);
    }

    .top-actions .dropdown-menu {
      left: auto;
      right: 0;
    }

    .top-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      min-width: auto;
      position: relative;
      z-index: 1001;
      flex-shrink: 0;
    }

    .nav.right.hidden-until-auth ~ .top-actions {
      margin-left: auto;
    }

    .lang-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(99, 102, 241, 0.5);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
      color: rgba(255,255,255,0.9);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.75rem;
      font-weight: 700;
      backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }

    .lang-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lang-btn:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      color: var(--text);
      border-color: rgba(99, 102, 241, 0.8);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
      transform: translateY(-2px);
    }

    .lang-btn:hover::before { opacity: 1; }

    .profile-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1.5px solid rgba(99, 102, 241, 0.5);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
      color: var(--text);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.85rem;
      font-weight: 600;
      backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }

    .profile-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .profile-btn:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      border-color: rgba(99, 102, 241, 0.8);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
      transform: translateY(-2px);
    }

    .profile-btn:hover::before { opacity: 1; }

    .profile-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
      border: 1.5px solid rgba(99, 102, 241, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      transition: all 0.3s ease;
    }

    .profile-btn:hover .profile-avatar {
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
    }

    .profile-avatar.has-image {
      background-size: cover;
      background-position: center;
    }

    .profile-name {
      max-width: 110px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .nav-close {
      display: none;
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(99, 102, 241, 0.4);
      background: rgba(99, 102, 241, 0.1);
      color: var(--text);
      border-radius: 8px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      backdrop-filter: blur(6px);
      transition: all 0.2s ease;
      position: relative;
    }

    .menu-toggle:hover {
      background: rgba(99, 102, 241, 0.18);
      border-color: rgba(99, 102, 241, 0.6);
      box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
    }

    @media (max-width: 1000px) {
      .nav { display: none; }
      .menu-toggle { display: flex; }
    }

    .shell {
      padding: 18px 18px 10px;
      position: relative;
      z-index: 20;
    }

    .adv-page {
      display: flex;
      flex-direction: column;
      gap: 34px;
    }

    @keyframes advIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .adv-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
      align-items: center;
      gap: 24px;
      padding: 28px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
      border: 1px solid rgba(99, 102, 241, 0.3);
      backdrop-filter: blur(8px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 40px rgba(99, 102, 241, 0.1);
      animation: advIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .adv-hero h1 {
      margin: 0;
      font-size: clamp(1.9rem, 3.2vw, 2.7rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .adv-lead {
      margin: 12px 0 0;
      font-size: 1.02rem;
      font-weight: 600;
      line-height: 1.45;
      color: var(--text-muted);
    }

    .adv-text {
      margin: 10px 0 0;
      max-width: 54ch;
      font-size: 0.92rem;
      line-height: 1.6;
      color: var(--text-soft);
    }

    .adv-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .adv-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 20px;
      border-radius: 10px;
      border: 1.5px solid var(--line-strong);
      background: transparent;
      color: var(--text);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.2px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .adv-btn:hover {
      border-color: rgba(99, 102, 241, 0.6);
      background: rgba(99, 102, 241, 0.14);
    }

    .adv-btn.primary {
      border-color: rgba(99, 102, 241, 0.7);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.25) 100%);
    }

    .adv-btn.primary:hover {
      border-color: rgba(99, 102, 241, 0.9);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, rgba(236, 72, 153, 0.35) 100%);
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.28);
    }

    .adv-stats {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 16px;
      border-radius: 16px;
      background: var(--glass);
      border: 1px solid var(--line);
      backdrop-filter: blur(8px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    }

    .adv-stats-title {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-soft);
    }

    .adv-stat {
      display: flex;
      align-items: baseline;
      gap: 8px;
      padding: 11px 14px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
      border: 1px solid rgba(99, 102, 241, 0.22);
    }

    .adv-stat-value {
      font-size: 1.3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
      font-variant-numeric: tabular-nums;
    }

    .adv-stat-label {
      font-size: 0.8rem;
      line-height: 1.3;
      color: var(--text-soft);
    }

    .adv-stats-pair {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
      gap: 10px;
    }

    .adv-stat-big {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 14px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.16) 0%, rgba(236, 72, 153, 0.08) 100%);
      border: 1px solid rgba(99, 102, 241, 0.32);
    }

    .adv-stat-big-value {
      font-size: 1.85rem;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      font-variant-numeric: tabular-nums;
      background: linear-gradient(135deg, #ffffff 0%, #d8dcff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .adv-stat-big-label {
      font-size: 0.76rem;
      color: var(--text-soft);
    }

    .adv-stats-foot {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 2px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }

    .adv-stats-foot-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 16px;
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    .adv-stats-foot-row b {
      color: var(--text-muted);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
    }

    .adv-section {
      scroll-margin-top: 12px;
    }

    .adv-section-head {
      margin-bottom: 16px;
    }

    .adv-section-head h2 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
      gap: 12px;
    }

    .adv-card {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 20px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(236, 72, 153, 0.03) 100%);
      border: 1px solid rgba(99, 102, 241, 0.2);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .adv-card:hover {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
      border-color: rgba(99, 102, 241, 0.6);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    }

    .adv-card h3 {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .adv-card p {
      margin: 0;
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--text-soft);
    }

    .adv-prices {
      display: flex;
      flex-direction: column;
      margin-top: auto;
      padding-top: 14px;
    }

    .adv-price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      padding: 7px 0;
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .adv-price-term {
      flex: 1 1 auto;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-soft);
    }

    .adv-price-off {
      flex-shrink: 0;
      padding: 1px 7px;
      border-radius: 999px;
      background: rgba(52, 211, 153, 0.14);
      border: 1px solid rgba(52, 211, 153, 0.32);
      color: #6ee7b7;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .adv-price-value {
      flex-shrink: 0;
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--text-muted);
      font-variant-numeric: tabular-nums;
    }

    .adv-price-row.best .adv-price-value {
      color: var(--text);
      font-size: 1.05rem;
    }

    .adv-price-row.best .adv-price-term {
      color: var(--text-muted);
    }

    .adv-stat-big-top {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .adv-growth {
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(52, 211, 153, 0.14);
      border: 1px solid rgba(52, 211, 153, 0.32);
      color: #6ee7b7;
      font-size: 0.64rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      font-variant-numeric: tabular-nums;
    }

    .adv-growth.down {
      background: rgba(248, 113, 113, 0.14);
      border-color: rgba(248, 113, 113, 0.32);
      color: #fca5a5;
    }

    .adv-card.featured {
      border-color: rgba(99, 102, 241, 0.5);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.16) 0%, rgba(236, 72, 153, 0.08) 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 30px rgba(99, 102, 241, 0.12);
    }

    .adv-card.featured:hover {
      border-color: rgba(99, 102, 241, 0.85);
      box-shadow: 0 10px 28px rgba(99, 102, 241, 0.28);
    }

    .adv-preview {
      margin-top: 16px;
      padding: 16px;
      border-radius: 16px;
      background: var(--glass);
      border: 1px solid var(--line);
    }

    .adv-preview-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-soft);
      margin-bottom: 12px;
    }

    .adv-preview-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .adv-preview-row.ghost {
      opacity: 0.45;
    }

    .adv-preview-row.ghost .adv-preview-titles {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }

    .adv-preview-row.ghost .adv-preview-meta {
      width: 100%;
    }

    .adv-ghost-bar {
      display: block;
      height: 11px;
      width: 46%;
      border-radius: 6px;
      background: rgba(255,255,255,0.14);
    }

    .adv-ghost-bar.wide { width: 62%; }
    .adv-ghost-bar.short { width: 30%; height: 9px; }

    .adv-ghost-btn {
      width: 96px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255,255,255,0.1);
    }



    .adv-cpm {
      margin-top: 10px;
      font-size: 0.74rem;
      color: var(--text-soft);
      font-variant-numeric: tabular-nums;
    }

    .adv-note {
      margin: 14px 0 0;
      font-size: 0.8rem;
      line-height: 1.5;
      color: var(--text-soft);
    }

    .adv-terms {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
      gap: 12px;
    }

    .adv-term {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 20px 16px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(236, 72, 153, 0.03) 100%);
      border: 1px solid rgba(99, 102, 241, 0.2);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .adv-term:hover {
      border-color: rgba(99, 102, 241, 0.6);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    }

    .adv-term-days {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .adv-term-note {
      font-size: 0.8rem;
      line-height: 1.4;
      text-align: center;
      color: var(--text-soft);
    }

    .adv-term.best {
      border-color: rgba(251, 191, 36, 0.55);
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.14) 0%, rgba(236, 72, 153, 0.05) 100%);
    }

    .adv-term.best:hover {
      border-color: rgba(251, 191, 36, 0.8);
      box-shadow: 0 8px 24px rgba(251, 191, 36, 0.18);
    }

    .adv-term-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      padding: 3px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.9) 0%, rgba(236, 72, 153, 0.75) 100%);
      color: #1a1206;
      font-size: 0.66rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .adv-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .adv-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 6px 16px;
      border-radius: 999px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      color: var(--text-muted);
      font-size: 0.87rem;
      font-weight: 600;
      backdrop-filter: blur(4px);
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    .adv-chip:hover {
      background: rgba(99, 102, 241, 0.18);
      border-color: rgba(99, 102, 241, 0.6);
      color: var(--text);
    }

    .howto-steps.adv-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
      gap: 12px;
      margin: 0;
    }

    .howto-step-num.wide {
      width: auto;
      min-width: 34px;
      padding: 0 8px;
      border-radius: 999px;
      font-variant-numeric: tabular-nums;
    }

    body.adv-armed .adv-reveal {
      opacity: 0;
      transform: translateY(16px);
    }

    body.adv-armed .adv-reveal.adv-shown {
      opacity: 1;
      transform: none;
      transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                  transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    @media (prefers-reduced-motion: reduce) {
      body.adv-armed .adv-reveal,
      body.adv-armed .adv-reveal.adv-shown {
        opacity: 1;
        transform: none;
        transition: none;
      }

      .adv-hero { animation: none; }

      .adv-card,
      .adv-term,
      .adv-chip,
      .adv-btn {
        transition: none;
      }
    }

    .adv-cta {
      text-align: center;
      padding: 32px 24px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
      border: 1px solid rgba(99, 102, 241, 0.3);
      backdrop-filter: blur(8px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 40px rgba(99, 102, 241, 0.1);
    }

    .adv-cta h2 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .adv-cta p {
      margin: 10px auto 0;
      max-width: 52ch;
      font-size: 0.92rem;
      line-height: 1.6;
      color: var(--text-soft);
    }

    .adv-cta .adv-actions {
      justify-content: center;
    }

    @media (max-width: 900px) {
      .adv-hero {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 18px;
      }

      .adv-page { gap: 22px; }
    }

    @media (max-width: 560px) {
      .shell { padding: 12px 12px 8px; }
      .adv-hero { padding: 18px; border-radius: 16px; }
      .adv-lead { font-size: 0.95rem; }
      .adv-btn { width: 100%; }
      .adv-section-head h2 { font-size: 1.2rem; }
      .adv-card { padding: 16px; }
      .adv-term-days { font-size: 1.2rem; }
      .adv-stat-big-value { font-size: 1.6rem; }
      .adv-preview { padding: 12px; }
      .adv-ghost-btn { display: none; }
      .adv-cta { padding: 24px 16px; border-radius: 16px; }
      .adv-cta h2 { font-size: 1.25rem; }
    }

    .empty-state-row, .loading-state-row {

      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      color: var(--text-muted);
      font-size: 0.9rem;
      text-align: center;
      padding: 24px;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6, 8, 20, 0.72);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      padding: 16px;
      animation: modalFadeIn 0.2s ease both;
    }

    .modal-overlay[hidden] { display: none; }

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

    .modal-box {
      width: 100%;
      max-width: 420px;
      background: linear-gradient(160deg, #171b3a 0%, #14183a 100%);
      border: 1px solid rgba(99, 102, 241, 0.35);
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
      animation: trackRowIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .modal-box h3 {
      margin: 0 0 6px;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text);
    }

    .modal-box p.modal-subtitle {
      margin: 0 0 16px;
      font-size: 0.85rem;
      color: var(--text-soft);
    }

    .sponsors-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px 16px;
      align-items: start;
      max-height: min(440px, 52vh);
      overflow-y: auto;
      overflow-x: hidden;
      margin: 4px 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(99, 102, 241, 0.5) rgba(255,255,255,0.05);
    }

    .sponsors-list::-webkit-scrollbar {
      width: 6px;
    }

    .sponsors-list::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.04);
      border-radius: 8px;
    }

    .sponsors-list::-webkit-scrollbar-thumb {
      background: rgba(99, 102, 241, 0.5);
      border-radius: 8px;
    }

    .sponsors-list::-webkit-scrollbar-thumb:hover {
      background: rgba(99, 102, 241, 0.75);
    }

    .sponsor-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .sponsor-item:hover {
      background: rgba(99, 102, 241, 0.14);
      border-color: rgba(99, 102, 241, 0.45);
      transform: translateX(2px);
    }

    @media (min-width: 641px) {
      .modal-box.sponsors-wide {
        max-width: 860px;
      }

      .sponsors-list.two-columns {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      }
    }

    .sponsor-column {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }

    .sponsor-group-title {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin: 0 2px;
    }

    .sponsor-name {
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--text);
      overflow-wrap: anywhere;
    }

    .howto-steps {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 4px 0 6px;
    }

    .howto-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .howto-step-num {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.25) 100%);
      border: 1px solid rgba(99, 102, 241, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.82rem;
      color: var(--text);
    }

    .howto-step-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.4;
      padding-top: 3px;
    }

    a.modal-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-sizing: border-box;
    }

    .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 18px;
    }

    .modal-btn {
      min-height: 40px;
      padding: 0 18px;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      border: 1.5px solid var(--line-strong);
      background: transparent;
      color: var(--text);
      transition: all 0.2s ease;
    }

    .modal-btn.primary {
      border-color: rgba(99, 102, 241, 0.7);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.25) 100%);
    }

    .modal-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(255,255,255,0.4);
    }

    .toast-container {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2000;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      width: 100%;
      max-width: 460px;
      padding: 0 16px;
      box-sizing: border-box;
      pointer-events: none;
    }

    .toast {
      pointer-events: auto;
      width: auto;
      max-width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 14px;
      border-radius: 12px;
      background: linear-gradient(160deg, #171b3a 0%, #14183a 100%);
      border: 1px solid rgba(99, 102, 241, 0.4);
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
      color: var(--text);
      font-size: 0.86rem;
      line-height: 1.4;
      animation: toastIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .toast.error { border-color: rgba(248, 113, 113, 0.55); }
    .toast.success { border-color: rgba(52, 211, 153, 0.55); }
    .toast.info { border-color: rgba(99, 102, 241, 0.55); }

    .toast.leaving {
      animation: toastOut 0.2s ease forwards;
    }

    .toast-icon { flex-shrink: 0; font-size: 1.05rem; }
    .toast-text { flex: 0 1 auto; min-width: 0; word-break: break-word; }

    .toast-close {
      background: none;
      border: none;
      color: var(--text-soft);
      cursor: pointer;
      font-size: 0.95rem;
      padding: 0;
      line-height: 1;
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      margin: -3px -5px -3px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 7px;
    }

    .toast-close:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
    }

    @keyframes toastIn {
      from { opacity: 0; transform: translateY(-14px) scale(0.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes toastOut {
      from { opacity: 1; transform: translateY(0) scale(1); }
      to { opacity: 0; transform: translateY(-14px) scale(0.96); }
    }

    .menu-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(2px);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .menu-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    @media (max-width: 1000px) {
      @keyframes slideInRight {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
      }

      @keyframes slideOutRight {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(100%); opacity: 0; }
      }

      .nav.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0; right: 0; left: 0; bottom: 0;
        width: 100%;
        height: 100vh;
        overflow-x: hidden;
        background: rgba(10, 12, 20, 0.35);
        padding: 55px 14px 16px;
        gap: 4px;
        z-index: 999;
        animation: slideInRight 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        backdrop-filter: blur(20px);
        overflow-y: auto;
      }

      .nav.left:not(.mobile-open) {
        animation: slideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }

      .nav.left.mobile-open .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 14px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 1px solid rgba(99, 102, 241, 0.4);
        background: rgba(99, 102, 241, 0.12);
        color: var(--text);
        font-size: 1rem;
        cursor: pointer;
      }

      .nav.left.mobile-open .nav.right {
        display: flex;
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        padding-top: 12px;
        justify-content: flex-start;
        border-top: 1px solid rgba(255,255,255,0.08);
      }

      .nav.left.mobile-open .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      .nav-item {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 14px;
        font-size: 0.92rem;
        letter-spacing: 0;
        text-transform: none;
        font-weight: 600;
        border-radius: 10px;
        color: var(--text-muted);
        border: 1px solid transparent;
        background: transparent;
        box-shadow: none;
        transition: all 0.2s ease;
      }

      .nav-item:hover {
        background: rgba(99, 102, 241, 0.12);
        color: var(--text);
        border-color: transparent;
      }

      .nav-item.active {
        background: rgba(99, 102, 241, 0.16);
        border-color: transparent;
        color: var(--primary);
        border-left: 3px solid var(--primary);
        padding-left: 11px;
        box-shadow: none;
      }

      .nav.left.mobile-open .dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        display: none;
        min-width: 0;
        width: 100%;
        margin: 4px 0 0;
        padding: 2px 0 2px 14px;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
      }

      .nav.left.mobile-open .dropdown-menu.show {
        display: flex;
        flex-direction: column;
      }

      .nav.left.mobile-open .dropdown-menu a {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-left: 2px solid rgba(255,255,255,0.1);
      }
    }

    @media (max-width: 760px) {
      .page {
        width: min(100vw, calc(100vw - 20px));
        margin: 12px auto 16px;
        border-radius: 16px;
      }

      .topbar { padding: 12px 14px 10px; gap: 10px; }
      .brand { min-width: auto; gap: 8px; font-size: 0.95rem; }
      .brand-svg.compact { width: 92px; }
      .top-actions { gap: 6px; }
      .profile-btn { padding: 0; width: 40px; height: 40px; justify-content: center; gap: 0; }
      .profile-name { display: none; }
      .profile-label { display: none; }

      * { backdrop-filter: none !important; }

      .top-actions {
        gap: 8px;
        margin-left: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
      }

    }

    @media (max-width: 480px) {
      .profile-name {
        max-width: 60px;
      }

    }

    @media (max-width: 340px) {
      .topbar { padding: 10px 6px 8px; gap: 6px; }

      .brand-svg.compact { width: 58px; }

      .top-actions { gap: 4px; }

      .lang-btn,
      .profile-btn,
      .menu-toggle {
        width: 32px;
        height: 32px;
      }

      .at-trigger-btn {
        height: 32px;
        padding: 0 8px;
      }
    }
