:root {
      --green: #02b757;
      --green-hover: #019648;
      --green-light: rgba(2, 183, 87, 0.15);
      --green-border: #02b757;
      --gold: #ffc936;
      --gold-dark: #e6a800;
      --gold-glow: rgba(255, 201, 54, 0.45);
      --rbx-red: #e2231a;
      --bg-deep: #12162b;
      --bg-mid: #1a2040;
      --surface: #ffffff;
      --surface-2: #f0f3fa;
      --panel-dark: #232845;
      --border: #c8d0e0;
      --border-hover: #a8b4cc;
      --text: #141824;
      --text-secondary: #4a5270;
      --text-muted: #7a849c;
      --text-on-dark: #eef1ff;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
      --card-shadow: 0 6px 0 #c5cdd9, 0 10px 28px rgba(0, 0, 0, 0.18);
      --topbar-height: 52px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Nunito', -apple-system, sans-serif;
      background: linear-gradient(165deg, #0f1228 0%, #1a2045 45%, #222a55 100%);
      background-attachment: fixed;
      color: var(--text-on-dark);
      min-height: 100vh;
      line-height: 1.5;
      font-size: 15px;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
    }

    .game-decor {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .game-block {
      position: absolute;
      border-radius: 6px;
      opacity: 0.12;
      animation: floatBlock 8s ease-in-out infinite;
    }

    .game-block.b1 {
      width: 56px; height: 56px;
      background: var(--gold);
      top: 12%; left: 4%;
      transform: rotate(18deg);
      animation-delay: 0s;
    }

    .game-block.b2 {
      width: 40px; height: 40px;
      background: var(--green);
      top: 28%; right: 6%;
      transform: rotate(-12deg);
      animation-delay: -2s;
    }

    .game-block.b3 {
      width: 32px; height: 32px;
      background: #5b8def;
      bottom: 22%; left: 8%;
      transform: rotate(8deg);
      animation-delay: -4s;
    }

    .game-block.b4 {
      width: 48px; height: 48px;
      background: var(--rbx-red);
      bottom: 14%; right: 10%;
      transform: rotate(-20deg);
      animation-delay: -1s;
    }

    @keyframes floatBlock {
      0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
      50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
    }

    .container { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; padding: 0 16px; }

    a { color: inherit; text-decoration: none; }

    .topbar {
      background: rgba(18, 22, 43, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 8px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 28px;
      min-width: 0;
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .topbar-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .topbar-nav.mobile-nav {
      display: none;
    }

    .topbar-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 600;
      color: rgba(238, 241, 255, 0.72);
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .topbar-nav-icon {
      height: 16px;
      width: auto;
      flex-shrink: 0;
    }

    .topbar-nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .topbar-nav-link.active {
      color: #fff;
      background: rgba(255, 201, 54, 0.12);
      border: 1px solid rgba(255, 201, 54, 0.28);
    }

    .logo-wordmark {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Fredoka', sans-serif;
      font-size: 1.56rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.04em;
      line-height: 1;
      white-space: nowrap;
    }
    .logo-tld {
      background: var(--green);
      color: #fff;
      font-size: 0.42em;
      font-weight: 800;
      padding: 0.18em 0.38em;
      border-radius: 6px;
      letter-spacing: 0.04em;
      text-transform: lowercase;
      box-shadow: 0 2px 0 #018844;
      line-height: 1.2;
    }

    .topbar-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(238, 241, 255, 0.9);
      background: rgba(255, 255, 255, 0.06);
      padding: 7px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 201, 54, 0.25);
      letter-spacing: 0;
      text-transform: none;
    }

    .topbar-tag-icon {
      height: 16px;
      width: auto;
      flex-shrink: 0;
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .burger-btn {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      flex-shrink: 0;
    }

    .burger-line {
      display: block;
      width: 18px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .burger-btn.open .burger-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .burger-btn.open .burger-line:nth-child(2) {
      opacity: 0;
    }

    .burger-btn.open .burger-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 90;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }

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

    body.menu-open {
      overflow: hidden;
    }

    .page-head {
      padding: 28px 0 0;
    }

    .page-head h1 {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(1.55rem, 3.5vw, 2.1rem);
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.25;
      color: #fff;
    }

    .title-highlight {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      margin: 0 2px;
      background: linear-gradient(135deg, rgba(255, 201, 54, 0.2), rgba(255, 201, 54, 0.08));
      color: var(--gold);
      font-weight: 700;
      border: 2px solid rgba(255, 201, 54, 0.45);
      border-radius: 10px;
      vertical-align: middle;
      text-shadow: 0 2px 8px rgba(255, 201, 54, 0.3);
    }

    .instant-badge {
      background: var(--green);
      color: #fff;
      font-size: 0.58rem;
      font-weight: 800;
      padding: 3px 7px;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 2px 0 #018844;
    }

    .page-subtitle {
      font-size: 0.92rem;
      color: rgba(238, 241, 255, 0.75);
      max-width: 640px;
      line-height: 1.55;
      margin-bottom: 20px;
    }

    /* Region selector */
    .region-block {
      background: var(--panel-dark);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius);
      padding: 16px 18px;
      margin-bottom: 16px;
      box-shadow: var(--shadow-md);
    }

    .region-head {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      position: relative;
    }

    .region-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(238, 241, 255, 0.85);
      margin-bottom: 0;
    }

    .help-btn {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(238, 241, 255, 0.6);
      font-size: 0.75rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      line-height: 1;
      transition: border-color 0.15s, color 0.15s;
    }

    .help-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .help-popup {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      z-index: 30;
      width: min(340px, calc(100vw - 32px));
      background: var(--panel-dark);
      border: 2px solid rgba(255, 201, 54, 0.3);
      border-radius: var(--radius);
      padding: 16px 18px;
      box-shadow: var(--shadow-md);
    }

    .help-popup.show { display: block; }

    .help-popup h4 {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--gold);
    }

    .help-popup ol {
      margin: 0;
      padding-left: 18px;
      font-size: 0.82rem;
      color: rgba(238, 241, 255, 0.75);
      line-height: 1.55;
    }

    .help-popup li { margin-bottom: 6px; }

    .help-popup li:last-child { margin-bottom: 0; }

    .help-popup .note {
      margin-top: 10px;
      font-size: 0.78rem;
      color: rgba(238, 241, 255, 0.5);
      line-height: 1.45;
    }

    .region-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .region-tab {
      padding: 10px 20px;
      border: 2px solid rgba(255, 255, 255, 0.12);
      border-bottom-width: 4px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.06);
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(238, 241, 255, 0.7);
      cursor: pointer;
      transition: all 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .flag {
      width: 20px;
      height: 14px;
      border-radius: 2px;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(0, 0, 0, 0.08);
      display: inline-block;
    }

    .flag-ru {
      background: linear-gradient(to bottom, #fff 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%);
    }

    .flag-global {
      background: var(--surface-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      border-color: var(--border);
    }

    .region-tab:hover {
      border-color: rgba(255, 201, 54, 0.4);
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }

    .region-tab.active {
      border-color: var(--gold);
      border-bottom-color: var(--gold-dark);
      background: rgba(255, 201, 54, 0.15);
      color: var(--gold);
      font-weight: 700;
    }

    .layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 20px;
      align-items: start;
      padding-bottom: 100px;
      margin-top: 12px;
    }

    .main-col { min-width: 0; grid-column: 1; grid-row: 1; }
    .sidebar-wrap {
      grid-column: 2;
      grid-row: 1;
      align-self: start;
      min-width: 0;
    }

    .sidebar {
      position: sticky;
      top: calc(var(--topbar-height) + 16px);
    }

    .sidebar-spacer {
      display: none;
      height: 0;
    }

    @media (min-width: 861px) {
      .sidebar-wrap.is-docked .sidebar-spacer {
        display: block;
      }

      .sidebar.is-docked {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 45;
        padding: 12px 16px;
        background: rgba(18, 22, 43, 0.96);
        backdrop-filter: blur(12px);
        border-top: 2px solid rgba(255, 201, 54, 0.25);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
      }

      .sidebar.is-docked .order-box {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: nowrap;
      }

      .sidebar.is-docked .order-box h3 {
        margin: 0;
        flex-shrink: 0;
        white-space: nowrap;
      }

      .sidebar.is-docked .promo-row,
      .sidebar.is-docked .order-note {
        display: none;
      }

      .sidebar.is-docked .promo-block {
        display: flex;
        flex: 0 1 280px;
        min-width: 0;
        max-width: 320px;
        margin: 0;
        gap: 0;
      }

      .sidebar.is-docked .promo-benefits.is-visible {
        margin: 0;
        padding: 6px 10px;
        font-size: 0.68rem;
        line-height: 1.35;
      }

      .sidebar.is-docked .cart-list {
        display: flex;
        flex: 1;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin: 0;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
        scrollbar-width: thin;
      }

      .sidebar.is-docked .cart-empty {
        padding: 0;
        text-align: left;
        white-space: nowrap;
        font-size: 0.82rem;
      }

      .sidebar.is-docked .cart-item {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 6px 12px;
        border-bottom: none;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.04);
        flex-shrink: 0;
      }

      .sidebar.is-docked .cart-item-info {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
      }

      .sidebar.is-docked .cart-item-info .name {
        font-size: 0.88rem;
        white-space: nowrap;
      }

      .sidebar.is-docked .cart-item-info .name .robux-icon-sm {
        height: 20px;
      }

      .sidebar.is-docked .cart-item-info .sub {
        height: 24px;
        padding: 0 8px;
        font-size: 0.72rem;
        gap: 5px;
        white-space: nowrap;
      }

      .sidebar.is-docked .cart-item-info .sub .flag {
        width: 18px;
        height: 12px;
      }

      .sidebar.is-docked .cart-item-right {
        flex-direction: row;
        align-items: center;
        gap: 0;
        flex-shrink: 0;
      }

      .sidebar.is-docked .cart-item-right .price {
        display: none;
      }

      .sidebar.is-docked .cart-qty .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
      }

      .sidebar.is-docked .cart-qty .qty-val {
        width: 32px;
        height: 28px;
        font-size: 0.82rem;
      }

      .sidebar.is-docked .order-total {
        flex: 0 0 auto;
        min-width: 0;
        margin: 0;
        padding: 0;
        border: none;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
      }

      .sidebar.is-docked .order-total-label {
        font-size: 0.72rem;
      }

      .sidebar.is-docked .order-robux-total {
        font-size: 1rem;
      }

      .sidebar.is-docked .order-price-before {
        font-size: 1rem;
        margin-left: 0;
        gap: 6px;
      }

      .sidebar.is-docked .order-price-old {
        font-size: 0.78rem;
      }

      .sidebar.is-docked .order-price-new {
        font-size: 1rem;
      }

      .sidebar.is-docked .btn-buy {
        width: auto;
        min-width: 180px;
        flex-shrink: 0;
        margin: 0;
        padding: 12px 28px;
      }

      body.has-order-dock {
        padding-bottom: 88px;
      }
    }
    .home-extra {
      grid-column: 1 / -1;
      grid-row: 2;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
    }

    .home-panel {
      background: var(--panel-dark);
      border: 2px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      padding: 20px 20px 18px;
      box-shadow: var(--shadow-md);
    }

    .home-panel__title {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }

    .seo-text {
      font-size: 0.88rem;
      color: rgba(238, 241, 255, 0.72);
      line-height: 1.6;
    }
    .seo-text p { margin-bottom: 12px; }
    .seo-text p:last-child { margin-bottom: 0; }
    .seo-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
    .seo-text a:hover { color: #ffe066; }
    .faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      width: 100%; background: none; border: none; padding: 14px 0; text-align: left;
      font-family: inherit; font-size: 0.9rem; font-weight: 700;
      color: rgba(238, 241, 255, 0.9); cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
    }
    .faq-q::after { content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--gold); transition: transform 0.2s; flex-shrink: 0; }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 0 14px; font-size: 0.875rem; color: rgba(238, 241, 255, 0.72); line-height: 1.55; }
    .faq-a a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
    .faq-item.open .faq-a { display: block; }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .stat-card {
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      padding: 14px 12px;
      text-align: center;
    }

    .stat-card__value {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(1.2rem, 3vw, 1.55rem);
      font-weight: 700;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .stat-card__label {
      font-size: 0.76rem;
      font-weight: 700;
      color: rgba(238, 241, 255, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .feed-wrap {
      overflow: hidden;
      position: relative;
      height: 220px;
      mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }

    .feed-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      animation: feedScroll 28s linear infinite;
    }

    .feed-wrap:hover .feed-list { animation-play-state: paused; }

    @keyframes feedScroll {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    .feed-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      background: rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.86rem;
      color: rgba(238, 241, 255, 0.88);
    }

    .feed-item__left {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .feed-item__avatar {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: linear-gradient(145deg, rgba(255, 201, 54, 0.25), rgba(2, 183, 87, 0.2));
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .feed-item__text { min-width: 0; }

    .feed-item__name {
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .feed-item__buy {
      font-size: 0.8rem;
      color: rgba(238, 241, 255, 0.62);
    }

    .feed-item__buy strong { color: var(--gold); }

    .feed-item__ago {
      font-size: 0.74rem;
      color: rgba(238, 241, 255, 0.45);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .social-motivation {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .social-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px;
      border-radius: var(--radius-sm);
      background: rgba(0, 0, 0, 0.18);
      border: 2px solid rgba(255, 255, 255, 0.08);
      transition: border-color 0.15s, transform 0.15s, background 0.15s;
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
    }

    .social-card:hover {
      border-color: rgba(255, 201, 54, 0.35);
      background: rgba(255, 201, 54, 0.08);
      transform: translateY(-2px);
    }

    .social-card__icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      padding: 0;
      background: transparent;
      border: none;
    }

    .social-card__icon img {
      width: 42px;
      height: 42px;
      display: block;
      border-radius: 12px;
    }

    .social-card__body { min-width: 0; flex: 1; }

    .social-card__title {
      font-size: 0.88rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 2px;
    }

    .social-card__sub {
      font-size: 0.76rem;
      color: rgba(238, 241, 255, 0.55);
      line-height: 1.35;
    }

    .social-card__btn {
      flex-shrink: 0;
      padding: 8px 12px;
      border-radius: 8px;
      border: 2px solid rgba(255, 201, 54, 0.35);
      background: linear-gradient(180deg, var(--gold), var(--gold-dark));
      color: #1a1a2e;
      font-family: inherit;
      font-size: 0.74rem;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 2px 0 #c99200;
    }

    .social-card__btn:hover { filter: brightness(1.05); }

    .social-note {
      margin-top: 12px;
      font-size: 0.82rem;
      color: rgba(238, 241, 255, 0.62);
      line-height: 1.45;
    }

    .social-note a { color: var(--gold); font-weight: 700; }

    @media (max-width: 720px) {
      .stats-grid { grid-template-columns: 1fr; }
      .social-motivation { grid-template-columns: 1fr; }
    }

    body.is-authed .perks,
    .perks[hidden],
    body.is-authed .seo-panel {
      display: none !important;
    }

    .perks {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .perk {
      font-size: 0.82rem;
      color: rgba(238, 241, 255, 0.85);
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--panel-dark);
      border: 2px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    }

    .perk-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      border: 2px solid rgba(255, 255, 255, 0.15);
    }

    .perk-icon.gold { background: linear-gradient(145deg, #ffd54f, #e6a800); }
    .perk-icon.green { background: linear-gradient(145deg, #03d46a, #02a855); }
    .perk-icon.blue { background: linear-gradient(145deg, #5b8def, #3a6fd4); }

    .perk strong { color: #fff; font-weight: 800; display: block; font-size: 0.88rem; }

    .section-head h2 {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 14px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-head h2::before {
      content: '🎮';
      font-size: 1rem;
    }

    .promo-hero-wrap {
      margin-bottom: 24px;
    }

    .promo-hero-wrap.is-hidden {
      display: none;
    }

    .promo-hero {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      padding: 22px 22px 24px;
      cursor: pointer;
      background: linear-gradient(135deg, #1a0f00 0%, #3d1a00 35%, #7c2d12 70%, #ea580c 100%);
      border: 3px solid rgba(255, 200, 100, 0.45);
      box-shadow: 0 12px 40px rgba(234, 88, 12, 0.35), 0 4px 0 #9a3412;
      color: #fff;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .promo-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(234, 88, 12, 0.45), 0 4px 0 #9a3412;
    }

    .promo-hero.in-cart {
      border-color: #4ade80;
      box-shadow: 0 12px 40px rgba(74, 222, 128, 0.25), 0 0 0 2px rgba(74, 222, 128, 0.5);
    }

    .promo-hero__glow {
      position: absolute;
      inset: -40% -20% auto auto;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(251, 191, 36, 0.45) 0%, transparent 70%);
      pointer-events: none;
    }

    .promo-hero__top {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .promo-hero__badge {
      font-family: 'Fredoka', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      background: linear-gradient(90deg, #fbbf24, #f97316);
      color: #1a0f00;
      padding: 6px 12px;
      border-radius: 100px;
    }

    .promo-hero__discount {
      font-weight: 800;
      font-size: 0.8rem;
      background: rgba(255, 255, 255, 0.15);
      padding: 4px 10px;
      border-radius: 8px;
    }

    .promo-hero__region-line {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
      font-size: 0.85rem;
      font-weight: 600;
      opacity: 0.95;
    }

    .promo-hero__region-line .flag-inline {
      position: static;
      top: auto;
      right: auto;
      width: 22px;
      height: 15px;
      flex-shrink: 0;
      box-shadow: none;
    }

    .promo-hero__region-line .flag-global.flag-inline {
      font-size: 10px;
      line-height: 1;
    }

    .promo-hero__region-name {
      white-space: nowrap;
    }

    .promo-hero__main {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 20px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 720px) {
      .promo-hero__main {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .promo-hero__top {
        justify-content: center;
      }
      .promo-hero__region-line {
        margin-left: 0;
        width: 100%;
        justify-content: center;
      }
    }

    .promo-hero__robux {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .promo-hero__robux .robux-icon {
      width: 56px;
      height: 56px;
    }

    .promo-hero__robux-num {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(2.5rem, 8vw, 3.5rem);
      font-weight: 700;
      line-height: 1;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }

    .promo-hero__robux-label {
      font-size: 0.95rem;
      font-weight: 700;
      opacity: 0.85;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .promo-hero__meta {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .promo-hero__prices {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 10px;
    }

    @media (max-width: 720px) {
      .promo-hero__prices {
        justify-content: center;
      }
    }

    .promo-hero__price-old {
      font-size: 1.1rem;
      opacity: 0.65;
      text-decoration: line-through;
    }

    .promo-hero__price {
      font-family: 'Fredoka', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #fef08a;
    }

    .promo-hero__stock {
      margin: 0;
      font-size: 0.95rem;
      opacity: 0.95;
    }

    .promo-hero__timer-label {
      margin: 4px 0 0;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      opacity: 0.75;
    }

    .promo-hero__timer {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    @media (max-width: 720px) {
      .promo-hero__timer {
        justify-content: center;
      }
    }

    .promo-hero__time-box {
      min-width: 52px;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 8px 6px 6px;
      text-align: center;
    }

    .promo-hero__time-box span {
      display: block;
      font-family: 'Fredoka', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.1;
    }

    .promo-hero__time-box small {
      font-size: 0.6rem;
      opacity: 0.75;
      text-transform: uppercase;
    }

    .promo-hero__time-sep {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      opacity: 0.6;
      margin-top: -8px;
    }

    .promo-hero__btn {
      margin-top: 6px;
      align-self: flex-start;
      font-family: 'Fredoka', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      padding: 12px 22px;
      border: none;
      border-radius: 100px;
      background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
      color: #fff;
      box-shadow: 0 4px 0 #15803d;
      cursor: pointer;
      transition: transform 0.15s;
    }

    .promo-hero__btn:hover {
      transform: scale(1.02);
    }

    .promo-hero.in-cart .promo-hero__btn {
      background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
    }

    @media (max-width: 720px) {
      .promo-hero__btn {
        align-self: center;
        width: 100%;
        max-width: 280px;
      }
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
      gap: 12px;
      margin-bottom: 32px;
    }

    .product-card {
      background: linear-gradient(165deg, #ffffff 0%, #fff8e6 45%, #fff3cc 100%);
      border: 3px solid #fff;
      border-bottom: 5px solid #d4dce8;
      border-radius: 20px;
      padding: 18px 14px 16px;
      transition: transform 0.18s, box-shadow 0.18s;
      position: relative;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      cursor: pointer;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
      pointer-events: none;
    }

    .product-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
      transform: translateX(-120%);
      transition: transform 0.5s;
      pointer-events: none;
    }

    .product-card:hover:not(.out-of-stock)::after {
      transform: translateX(120%);
    }

    .product-card:hover:not(.out-of-stock) {
      transform: translateY(-6px);
      box-shadow: 0 8px 0 #c5cdd9, 0 16px 36px rgba(255, 201, 54, 0.35);
    }

    .product-card.in-cart {
      border-color: var(--green);
      border-bottom-color: #018844;
      background: linear-gradient(165deg, #e8fff3 0%, #fff9e6 100%);
      box-shadow: 0 6px 0 #018844, 0 12px 32px rgba(2, 183, 87, 0.35);
    }

    .product-card .selected-label {
      display: none;
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 0.58rem;
      font-weight: 800;
      color: #fff;
      background: linear-gradient(180deg, var(--green), #019648);
      padding: 4px 8px;
      border-radius: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      z-index: 2;
      box-shadow: 0 2px 0 #016b38;
    }

    .product-card.in-cart .selected-label { display: block; }

    .card-region-flag {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    }

    .card-region-flag.flag {
      width: 22px;
      height: 15px;
      border-radius: 3px;
    }

    .card-region-flag.flag-global {
      font-size: 10px;
    }

    .product-card.out-of-stock {
      opacity: 0.55;
      filter: grayscale(0.3);
    }

    .product-card .robux-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 4px;
    }

    .product-card .robux-icon {
      height: 36px;
      width: auto;
      flex-shrink: 0;
      filter: drop-shadow(0 3px 6px rgba(180, 130, 0, 0.5));
      animation: coinPulse 2.5s ease-in-out infinite;
    }

    .robux-icon {
      height: 34px;
      width: auto;
      flex-shrink: 0;
      filter: drop-shadow(0 2px 4px rgba(180, 130, 0, 0.45));
    }

    @keyframes coinPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.06); }
    }

    .robux-icon-sm {
      height: 22px;
      width: auto;
    }

    .robux-name-row {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .robux-amount {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #1a1200;
      line-height: 1;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .product-card .price {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(180deg, var(--green) 0%, #019648 100%);
      padding: 7px 16px;
      border-radius: 100px;
      border: 2px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 3px 0 #016b38;
    }

    .product-card.promo-card {
      border-color: #f59e0b;
      box-shadow: 0 4px 0 #c2410c, 0 0 0 2px rgba(245, 158, 11, 0.35);
    }

    .product-card .promo-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      background: linear-gradient(135deg, #f59e0b, #ef4444);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 6px;
    }

    .product-card .price-old {
      font-size: 0.78rem;
      color: #9ca3af;
      text-decoration: line-through;
      margin-top: 4px;
    }

    .product-card .promo-timer {
      font-size: 0.72rem;
      font-weight: 700;
      color: #b45309;
      margin-top: 4px;
    }

    .product-card .stock {
      font-size: 0.68rem;
      color: var(--text-muted);
    }

    .product-card .stock.low { color: #d97706; font-weight: 600; }
    .product-card .stock.none { color: #dc2626; font-weight: 600; }

    .qty-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cart-item-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
      flex: 1;
      min-width: 0;
    }

    .cart-item-info .name {
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
    }

    .cart-item-info .name .robux-icon-sm {
      height: 24px;
    }

    .cart-item-info .sub {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 7px;
      height: 28px;
      padding: 0 10px;
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(238, 241, 255, 0.9);
      background: rgba(255, 255, 255, 0.06);
      border: 2px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-sm);
    }

    .cart-item-info .sub .flag {
      width: 22px;
      height: 15px;
      border-radius: 3px;
    }

    .cart-item-info .sub .flag-global {
      font-size: 12px;
    }

    .cart-item-right {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
      gap: 10px;
      flex-shrink: 0;
    }

    .qty-btn {
      width: 32px;
      height: 32px;
      border: 2px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      transition: background 0.15s;
    }

    .qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
    .qty-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

    .qty-btn:hover:not(:disabled) { background: rgba(255, 201, 54, 0.15); }
    .qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }

    .qty-val {
      width: 36px;
      height: 32px;
      border-top: 2px solid rgba(255, 255, 255, 0.12);
      border-bottom: 2px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      background: rgba(0, 0, 0, 0.2);
      color: #fff;
    }

    .order-box {
      background: var(--panel-dark);
      border: 2px solid rgba(255, 201, 54, 0.3);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
      scroll-margin-top: calc(var(--topbar-height) + 16px);
      position: relative;
    }

    .order-box__close {
      display: none;
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      padding: 0;
      border: 2px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(238, 241, 255, 0.75);
      font-size: 1.25rem;
      line-height: 1;
      font-family: inherit;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }

    .order-box__close:hover {
      border-color: rgba(255, 201, 54, 0.35);
      color: var(--gold);
      background: rgba(255, 201, 54, 0.1);
    }

    .mobile-footer-root .order-box__close {
      display: inline-flex;
    }

    .order-box h3 {
      font-family: 'Fredoka', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .order-box h3::before {
      content: '🛒';
    }

    .cart-list {
      max-height: 280px;
      overflow-y: auto;
      margin-bottom: 14px;
    }

    .cart-empty {
      font-size: 0.85rem;
      color: rgba(238, 241, 255, 0.5);
      padding: 12px 0;
      text-align: center;
    }

    .cart-item:last-child { border-bottom: none; }

    .cart-item-right .price {
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--gold);
    }

    .cart-qty .qty-btn {
      width: 28px;
      height: 28px;
      font-size: 1rem;
    }

    .cart-qty .qty-val {
      width: 32px;
      height: 28px;
      font-size: 0.85rem;
    }

    .order-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding-top: 14px;
      border-top: 2px solid rgba(255, 201, 54, 0.2);
      margin-bottom: 16px;
    }

    .order-total-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: rgba(238, 241, 255, 0.7);
      flex-shrink: 0;
      font-weight: 600;
      min-width: 0;
    }

    .order-robux-total {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: 'Fredoka', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--gold);
    }

    .order-price-before {
      display: flex;
      align-items: baseline;
      justify-content: flex-end;
      gap: 8px;
      margin-left: auto;
      font-family: 'Fredoka', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: rgba(238, 241, 255, 0.92);
      white-space: nowrap;
    }

    .order-price-old {
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(238, 241, 255, 0.42);
      text-decoration: line-through;
      text-decoration-color: rgba(255, 120, 120, 0.55);
    }

    .order-price-new {
      font-family: 'Fredoka', sans-serif;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--gold);
    }

    .promo-block {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 14px;
    }

    .promo-row {
      display: flex;
      gap: 8px;
    }

    .promo-input-wrap {
      position: relative;
      flex: 1;
      min-width: 0;
    }

    .promo-input {
      width: 100%;
      box-sizing: border-box;
      padding: 10px 36px 10px 12px;
      border: 2px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-sm);
      background: rgba(0, 0, 0, 0.2);
      color: #fff;
      font-family: inherit;
      font-size: 0.875rem;
      outline: none;
      transition: border-color 0.15s, background 0.15s;
    }

    .promo-input.is-applied {
      border-color: #03d46a;
      background: rgba(3, 212, 106, 0.1);
      box-shadow: 0 0 0 1px rgba(3, 212, 106, 0.3);
    }

    .promo-input::placeholder { color: rgba(238, 241, 255, 0.35); }

    .promo-input:focus {
      border-color: var(--gold);
    }

    .promo-input.is-applied:focus {
      border-color: #04e074;
      box-shadow: 0 0 0 2px rgba(3, 212, 106, 0.28);
    }

    .promo-input-clear {
      position: absolute;
      right: 7px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      display: none;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      padding: 0;
      border: 1px solid rgba(255, 120, 120, 0.35);
      border-radius: 8px;
      background: rgba(255, 70, 70, 0.28);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      color: rgba(255, 210, 210, 0.95);
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      opacity: 0.9;
      transition: opacity 0.15s, background 0.15s, transform 0.12s;
    }

    .promo-input.is-applied + .promo-input-clear,
    .promo-input-clear.is-visible {
      display: flex;
    }

    .promo-input-clear:hover {
      opacity: 1;
      background: rgba(255, 90, 90, 0.32);
    }

    .promo-btn {
      padding: 10px 14px;
      border: 2px solid rgba(255, 201, 54, 0.35);
      border-bottom-width: 3px;
      border-radius: var(--radius-sm);
      background: rgba(255, 201, 54, 0.12);
      color: var(--gold);
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.15s;
    }

    .promo-btn:hover {
      background: rgba(255, 201, 54, 0.22);
    }

    .promo-btn.is-applied,
    .promo-btn.is-applied:hover {
      background: linear-gradient(180deg, #03d46a 0%, var(--green) 55%, #019648 100%);
      color: #fff;
      border-color: #016b38;
      border-bottom-width: 2px;
      transform: translateY(1px);
      box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.22);
    }

    .promo-benefits {
      margin: 0;
      padding: 8px 10px;
      border-radius: var(--radius-sm);
      background: rgba(255, 201, 54, 0.08);
      border: 1px solid rgba(255, 201, 54, 0.18);
      color: rgba(255, 230, 160, 0.95);
      font-size: 0.78rem;
      line-height: 1.45;
      display: none;
    }

    .promo-benefits.is-visible {
      display: block;
    }

    .promo-benefits.is-error {
      background: rgba(255, 90, 90, 0.08);
      border-color: rgba(255, 90, 90, 0.25);
      color: rgba(255, 190, 190, 0.95);
    }

    .btn-buy {
      position: relative;
      width: 100%;
      padding: 15px;
      background: linear-gradient(180deg, #03d46a 0%, var(--green) 55%, #019648 100%);
      color: #fff;
      border: none;
      border-bottom: 4px solid #016b38;
      border-radius: 14px;
      font-family: 'Fredoka', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.12s, box-shadow 0.12s;
      box-shadow: 0 4px 16px rgba(2, 183, 87, 0.4);
    }

    .btn-buy-discount {
      position: absolute;
      top: -8px;
      right: 10px;
      display: none;
      padding: 2px 8px;
      border-radius: 999px;
      background: var(--gold);
      color: #1a1f35;
      font-size: 0.68rem;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: 0;
      text-transform: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
      pointer-events: none;
    }

    .btn-buy.has-discount .btn-buy-discount {
      display: block;
    }

    .btn-buy-label {
      display: block;
    }

    .btn-buy:hover:not(:disabled) {
      background: linear-gradient(180deg, #04e074 0%, #03c966 55%, #02a855 100%);
      transform: translateY(-1px);
    }

    .btn-buy:active:not(:disabled) {
      transform: translateY(2px);
      border-bottom-width: 2px;
    }

    .btn-buy:disabled {
      background: #4a5270;
      border-bottom-color: #3a4060;
      box-shadow: none;
      cursor: not-allowed;
    }

    .order-note {
      margin-top: 12px;
      font-size: 0.72rem;
      color: rgba(238, 241, 255, 0.45);
      line-height: 1.45;
    }

    .mobile-footer-root {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 300;
      pointer-events: none;
    }

    .mobile-bar {
      position: relative;
      background: rgba(18, 22, 43, 0.98);
      backdrop-filter: blur(12px);
      border-top: 2px solid rgba(255, 201, 54, 0.25);
      padding: 12px 16px 12px;
      box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
      pointer-events: auto;
    }

    .mobile-order-toggle {
      display: none;
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 6;
      width: auto;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      pointer-events: auto;
    }

    .mobile-order-toggle__chevron {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 26px;
      margin: 0;
      padding: 0;
      border-radius: 14px 14px 6px 6px;
      background: rgba(18, 22, 43, 0.98);
      border: 2px solid rgba(255, 201, 54, 0.35);
      border-bottom: none;
      box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.25);
      color: var(--gold);
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1;
      transition: transform 0.2s, border-radius 0.2s;
    }

    .mobile-order-toggle__chevron::before {
      content: '⌃';
      transform: translateY(1px);
    }

    .mobile-order-toggle.is-open .mobile-order-toggle__chevron {
      transform: rotate(180deg);
      border-radius: 6px 6px 14px 14px;
      border-bottom: 2px solid rgba(255, 201, 54, 0.35);
      border-top: none;
    }

    .mobile-order-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
      pointer-events: auto;
    }

    .mobile-order-backdrop.is-visible {
      display: block;
    }

    .mobile-footer-root .sidebar-wrap {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 100%;
      z-index: 4;
      padding: 0 16px 12px;
      max-height: min(72vh, 560px);
      overflow-y: auto;
      pointer-events: auto;
      isolation: isolate;
    }

    .mobile-footer-root .sidebar-wrap.is-mobile-open {
      display: block;
    }

    .mobile-footer-root .sidebar-wrap.is-mobile-open .order-box {
      background: var(--panel-dark);
      opacity: 1;
      box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
    }

    .mobile-bar-inner {
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 1140px;
      margin: 0 auto;
    }

    .mobile-bar-info {
      flex: 1;
      min-width: 0;
    }

    .mobile-bar-info:has(.mobile-bar-main:not(.empty)) {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-bar-main {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 10px;
      font-weight: 800;
      font-size: 1.05rem;
      color: #fff;
      line-height: 1.2;
    }

    .mobile-bar-main:not(.empty) {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-bar-main.empty {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(238, 241, 255, 0.5);
      cursor: default;
    }

    .mobile-bar-main-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      border: 2px solid rgba(255, 201, 54, 0.42);
      border-radius: 12px;
      background: rgba(255, 201, 54, 0.1);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
      transition: background 0.15s, border-color 0.15s, transform 0.12s;
    }

    .mobile-bar-main:not(.empty):active .mobile-bar-main-item {
      transform: scale(0.98);
      background: rgba(255, 201, 54, 0.16);
      border-color: rgba(255, 201, 54, 0.55);
    }

    .mobile-robux-num {
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .mobile-qty {
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold);
    }

    .mobile-bar .btn-buy {
      width: auto;
      padding: 12px 28px;
      flex-shrink: 0;
      overflow: visible;
    }

    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .modal-overlay.show { display: flex; }

    .modal {
      background: var(--panel-dark);
      border: 2px solid rgba(255, 201, 54, 0.35);
      border-radius: var(--radius);
      padding: 28px;
      max-width: 480px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      box-shadow: var(--shadow-md);
    }

    .modal h3 {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--gold);
    }

    .modal p {
      font-size: 0.875rem;
      color: rgba(238, 241, 255, 0.75);
      margin-bottom: 16px;
    }

    .modal-codes {
      background: rgba(0, 0, 0, 0.25);
      border: 2px solid rgba(255, 201, 54, 0.2);
      border-radius: var(--radius-sm);
      padding: 12px;
      margin-bottom: 16px;
      font-family: monospace;
      font-size: 0.85rem;
      word-break: break-all;
      color: var(--gold);
    }

    .modal .btn-buy { margin-top: 8px; }

    .toast {
      position: fixed;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%);
      background: #dc2626;
      color: #fff;
      padding: 10px 20px;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      z-index: 300;
      display: none;
    }

    .toast.show { display: block; }

    footer {
      text-align: center;
      padding: 20px 16px 40px;
      font-size: 0.8rem;
      color: rgba(238, 241, 255, 0.4);
      position: relative;
      z-index: 1;
    }

    @media (min-width: 861px) {
      .page-subtitle {
        white-space: nowrap;
        max-width: none;
      }
    }

    @media (max-width: 860px) {
      .layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: unset;
      }
      .main-col {
        order: 1;
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        grid-row: auto;
      }
      .sidebar-wrap {
        display: none;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        grid-row: auto;
      }

      .sidebar {
        display: block;
        position: static;
        width: 100%;
        max-width: 100%;
      }

      .mobile-footer-root { display: block; }
      .mobile-order-toggle { display: none; } /* временно скрыта — сравнение с кликом по чипу */
      .home-extra {
        order: 2;
        margin-top: 8px;
        width: 100%;
        grid-column: auto;
        grid-row: auto;
      }
      body { padding-bottom: 84px; }
      .toast { bottom: 92px; }
      .cards-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
      .perks { grid-template-columns: 1fr; gap: 10px; }
      .topbar {
        padding: 8px 0;
      }
      .topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }
      .topbar-left {
        gap: 0;
        flex: 1;
        min-width: 0;
      }
      .topbar-left .topbar-nav {
        display: none;
      }
      .logo-wordmark { font-size: 1.3rem; }
      .topbar-tag {
        font-size: 0.68rem;
        padding: 6px 10px;
      }
      .topbar-tag-icon {
        height: 14px;
      }
      .burger-btn {
        display: inline-flex;
      }
      .mobile-menu-backdrop {
        display: block;
      }
      .topbar-nav.mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        position: fixed;
        top: var(--topbar-height);
        left: 0;
        right: 0;
        padding: 12px 16px 16px;
        background: rgba(18, 22, 43, 0.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
        z-index: 95;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.22s, opacity 0.22s;
      }
      .topbar.nav-open .topbar-nav.mobile-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .topbar-nav.mobile-nav .topbar-nav-link {
        justify-content: flex-start;
        padding: 14px 16px;
        font-size: 0.92rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
      }
      .topbar-nav.mobile-nav .topbar-nav-icon {
        height: 18px;
      }
    }