    :root {
      --bg: #030711;
      --navy: #060d1f;
      --navy2: #0a1628;
      --navy3: #0d1e38;
      --cyan: #00d4ff;
      --cyan2: #00a8d4;
      --gold: #ffd700;
      --gold2: #e6b800;
      --red: #ff3a3a;
      --green: #00e676;
      --text: #e8eaf6;
      --muted: #7e8caa;
      --glass: rgba(255, 255, 255, 0.04);
      --glass-border: rgba(255, 255, 255, 0.08);
      --sidebar-w: 230px;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-y: auto !important;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Exo 2', sans-serif;
      font-size: 14px;
      line-height: 1.5;
      min-height: 100vh;
      overflow-x: hidden;
      overflow-y: auto !important;
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--navy);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--cyan2);
      border-radius: 4px;
    }

    /* ─── SIDEBAR ─── */
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: var(--sidebar-w);
      height: 100vh;
      background: linear-gradient(180deg, #060f22 0%, #040b18 100%);
      border-right: 1px solid var(--glass-border);
      overflow-y: auto;
      z-index: 100;
      display: flex;
      flex-direction: column;
      scrollbar-width: thin;
      scrollbar-color: var(--cyan2) transparent;
      transform: translateX(calc(-100% - 12px));
      transition: transform .34s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0);
    }

    body.sidebar-open .sidebar,
    .sidebar[aria-hidden="false"] {
      transform: translateX(0);
      box-shadow: 20px 0 80px rgba(0, 0, 0, .44);
    }

    .sidebar-overlay {
      position: fixed;
      inset: 0;
      z-index: 95;
      border: 0;
      background: rgba(1, 5, 14, .62);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .24s ease, visibility .24s ease;
    }

    body.sidebar-open .sidebar-overlay {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .sidebar-logo {
      padding: 20px 16px 14px;
      border-bottom: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      text-decoration: none;
    }

    .sidebar-close {
      position: absolute;
      top: 15px;
      right: 12px;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 9px;
      background: rgba(255,255,255,.05);
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .15s, color .15s, border-color .15s;
    }

    .sidebar-close:hover {
      color: var(--cyan);
      background: rgba(0, 212, 255, .08);
      border-color: rgba(0, 212, 255, .26);
    }

    .sidebar-logo img {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      border-radius: 10px;
      object-fit: contain;
      background: rgba(255, 255, 255, .04);
      box-shadow: 0 0 14px rgba(0, 212, 255, 0.28);
    }

    .sidebar-logo>span {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .logo-badge {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--cyan), var(--navy3));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: #fff;
      box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
      flex-shrink: 0;
    }

    .global-sidebar-balance {
      font-weight: 700;
      font-size: 22px;
    }

    .logo-text {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .logo-text span {
      color: var(--cyan);
    }

    .sidebar-section {
      padding: 10px 10px 6px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sidebar-section-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
      padding: 4px 8px 8px;
    }

    .sidebar-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 7px 10px;
      border-radius: 7px;
      cursor: pointer;
      transition: background .15s, color .15s;
      font-size: 12.5px;
      font-weight: 500;
      color: #9facc5;
      position: relative;
      text-decoration: none;
    }

    .sidebar-item:hover {
      background: rgba(0, 212, 255, 0.08);
      color: var(--cyan);
    }

    .sidebar-item.active {
      background: rgba(0, 212, 255, 0.12);
      color: var(--cyan);
    }

    .sidebar-item.active::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 3px;
      border-radius: 2px;
      background: var(--cyan);
    }

    .sidebar-item .icon {
      font-size: 15px;
      width: 20px;
      text-align: center;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .sidebar-item i,
    .support-item i,
    .social-btn i,
    .topbar-search .s-icon,
    .balance-chip i,
    .user-chip i,
    .hero-eyebrow i,
    .hero-btns i,
    .cat-tab i,
    .section-title i,
    .ltc-players i,
    .btn-crash i,
    .btn-vip i {
      line-height: 1;
    }

    .sidebar-badge {
      margin-left: auto;
      background: var(--red);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 1px 5px;
      border-radius: 10px;
      min-width: 18px;
      text-align: center;
    }

    .sidebar-badge.new {
      background: var(--green);
      color: #000;
    }

    .sidebar-badge.hot {
      background: var(--gold);
      color: #000;
    }

    .sidebar-badge.live {
      background: var(--green);
      color: #000;
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 10px 12px;
    }

    .social-btn {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      cursor: pointer;
      transition: background .15s, border-color .15s;
      text-decoration: none;
      color: var(--muted);
    }

    .social-btn:hover {
      background: rgba(0, 212, 255, 0.1);
      border-color: var(--cyan);
      color: var(--cyan);
    }

    .sidebar-support {
      margin: 8px 10px 14px;
      padding: 10px 12px;
      background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.03));
      border: 1px solid rgba(0, 212, 255, 0.2);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .sidebar-account-card {
      margin: 8px 0 4px;
      padding: 12px;
      border: 1px solid rgba(255, 215, 0, .22);
      border-radius: 8px;
      background: rgba(255, 215, 0, .07);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .sidebar-account-card span {
      color: var(--muted);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .sidebar-account-card strong {
      color: var(--gold);
      font-family: 'Rajdhani', sans-serif;
      font-size: 24px;
      line-height: 1;
    }

    .support-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--cyan);
      cursor: pointer;
      text-decoration: none;
      border-radius: 7px;
      padding: 2px 4px;
      transition: background .15s, color .15s;
    }

    .support-item:hover,
    .support-item.active {
      background: rgba(0, 212, 255, 0.1);
      color: #fff;
    }

    .support-live {
      color: var(--green);
    }

    .live-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse 1.4s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, .5);
      }

      50% {
        box-shadow: 0 0 0 5px rgba(0, 230, 118, 0);
      }
    }

    /* ─── MAIN LAYOUT ─── */
    .main {
      margin-left: 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ─── TOPBAR ─── */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 90;
      min-height: 60px;
      background: rgba(6, 13, 31, 0.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      padding: 0 20px;
      gap: 14px;
    }

    .mobile-menu-btn {
      display: inline-flex;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      border: 1px solid rgba(0, 212, 255, .24);
      background: rgba(0, 212, 255, .08);
      color: var(--cyan);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
    }

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

    .game-search-modal {
      position: fixed;
      inset: 0;
      z-index: 220;
      display: grid;
      place-items: center;
      padding: 18px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .22s ease, visibility .22s ease;
    }

    .game-search-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .game-search-backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      background: rgba(1, 5, 14, .72);
      backdrop-filter: blur(9px);
      -webkit-backdrop-filter: blur(9px);
    }

    .game-search-panel {
      position: relative;
      z-index: 1;
      width: min(720px, 100%);
      max-height: min(720px, calc(100dvh - 36px));
      display: grid;
      grid-template-rows: auto auto auto minmax(0, 1fr);
      gap: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(10, 22, 40, .98), rgba(3, 7, 17, .98));
      box-shadow: 0 28px 100px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.07);
      padding: 18px;
    }

    .game-search-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .game-search-head span {
      color: var(--cyan);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .game-search-head h2 {
      margin-top: 2px;
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: 30px;
      line-height: 1;
    }

    .game-search-close {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      background: rgba(255,255,255,.06);
      color: var(--muted);
      cursor: pointer;
    }

    .game-search-input {
      position: relative;
      display: block;
    }

    .game-search-input i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--cyan);
      font-size: 17px;
    }

    .game-search-input input {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(0, 212, 255, .2);
      border-radius: 13px;
      background: rgba(255,255,255,.055);
      color: var(--text);
      outline: none;
      padding: 0 14px 0 42px;
      font-family: 'Exo 2', sans-serif;
      font-size: 14px;
    }

    .game-search-status {
      min-height: 20px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .game-search-results {
      min-height: 0;
      overflow: auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      padding-right: 2px;
    }

    .game-search-result {
      min-width: 0;
      display: grid;
      grid-template-columns: 62px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      padding: 8px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 13px;
      background: rgba(255,255,255,.045);
      color: inherit;
      text-decoration: none;
      transition: border-color .16s ease, background .16s ease, transform .16s ease;
    }

    .game-search-result:hover {
      transform: translateY(-1px);
      border-color: rgba(0, 212, 255, .28);
      background: rgba(0, 212, 255, .07);
    }

    .game-search-result img {
      width: 62px;
      height: 72px;
      border-radius: 10px;
      object-fit: cover;
      background: var(--navy3);
    }

    .game-search-result strong {
      display: block;
      overflow: hidden;
      color: var(--text);
      font-size: 13px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .game-search-result span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
    }

    .game-search-empty {
      grid-column: 1 / -1;
      min-height: 110px;
      display: grid;
      place-items: center;
      border: 1px dashed rgba(255,255,255,.12);
      border-radius: 14px;
      color: var(--muted);
      font-weight: 800;
    }

    .topbar-logo {
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 1px;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      text-decoration: none;
      min-width: 0;
    }

    .topbar-logo span {
      color: var(--cyan);
    }

    .topbar-logo img {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      border-radius: 8px;
      object-fit: contain;
      background: rgba(255, 255, 255, .04);
    }

    .topbar-nav {
      display: flex;
      gap: 4px;
      overflow-x: auto;
      flex: 0 0 auto;
      scrollbar-width: none;
    }

    .topbar-nav::-webkit-scrollbar {
      display: none;
    }

    .topnav-btn {
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: .4px;
      white-space: nowrap;
      cursor: pointer;
      border: 1px solid transparent;
      background: transparent;
      color: var(--muted);
      transition: all .15s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .topnav-btn:hover {
      color: var(--text);
      border-color: var(--glass-border);
      background: var(--glass);
    }

    .topnav-btn.active {
      color: var(--cyan);
      border-color: rgba(0, 212, 255, 0.3);
      background: rgba(0, 212, 255, 0.07);
    }

    .topbar-search {
      flex: 1;
      max-width: 280px;
      position: relative;
    }

    .topbar-search input {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 7px 14px 7px 34px;
      color: var(--text);
      font-size: 12px;
      font-family: 'Exo 2', sans-serif;
      outline: none;
      transition: border-color .15s;
    }

    .topbar-search input:focus {
      border-color: rgba(0, 212, 255, 0.4);
    }

    .topbar-search input::placeholder {
      color: var(--muted);
    }

    .topbar-search .s-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 13px;
    }

    .topbar-spacer {
      flex: 1;
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .balance-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 215, 0, 0.08);
      border: 1px solid rgba(255, 215, 0, 0.2);
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      white-space: nowrap;
    }

    .user-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      max-width: 150px;
      padding: 7px 12px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .06);
      color: var(--text);
      font-size: 12px;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }

    .user-chip span {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .btn-login {
      padding: 7px 16px;
      border-radius: 8px;
      background: transparent;
      border: 1px solid rgba(0, 212, 255, 0.4);
      color: var(--cyan);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      transition: all .15s;
      letter-spacing: .5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-login:hover,
    .btn-login.active {
      background: rgba(0, 212, 255, 0.12);
    }

    .btn-register {
      padding: 7px 16px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--cyan), var(--cyan2));
      border: none;
      color: #000;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      transition: all .15s;
      letter-spacing: .5px;
      box-shadow: 0 2px 12px rgba(0, 212, 255, 0.3);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-register:hover,
    .btn-register.active {
      box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
      transform: translateY(-1px);
    }

    /* ─── CONTENT ─── */
    .content {
      padding: 0 20px 40px;
      overflow-x: hidden;
    }

    /* ─── BANNERS ─── */
    .banner-slider {
      position: relative;
      margin: 20px 0 24px;
      border-radius: 16px;
      isolation: isolate;
    }

    .banner-slider::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(0, 212, 255, .38), rgba(255, 215, 0, .16), rgba(0, 212, 255, .04));
      opacity: .65;
      z-index: -1;
    }

    .banner-viewport {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: var(--navy2);
      border: 1px solid rgba(255, 255, 255, .09);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 35px rgba(0, 212, 255, .08);
      cursor: grab;
      touch-action: pan-y;
    }

    .banner-viewport:active {
      cursor: grabbing;
    }

    .banner-track {
      display: flex;
      transform: translate3d(0, 0, 0);
      transition: transform .68s cubic-bezier(.2, .9, .2, 1);
      will-change: transform;
    }

    .banner-slider.is-dragging .banner-track {
      transition: none;
    }

    .banner-slide {
      position: relative;
      flex: 0 0 100%;
      aspect-ratio: 16 / 4;
      min-height: 190px;
      overflow: hidden;
      text-decoration: none;
      transform: scale(.985);
      opacity: .72;
      transition: transform .68s cubic-bezier(.2, .9, .2, 1), opacity .5s ease;
    }

    .banner-slide.is-active {
      transform: scale(1);
      opacity: 1;
    }

    .banner-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(3, 7, 17, .08), transparent 35%, rgba(3, 7, 17, .2));
      pointer-events: none;
    }

    .banner-slide picture,
    .banner-slide img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .banner-slide img {
      object-fit: cover;
      transform: scale(1.035);
      transition: transform 4.6s ease;
      user-select: none;
      -webkit-user-drag: none;
    }

    .banner-slide.is-active img {
      transform: scale(1);
    }

    .banner-nav {
      position: absolute;
      top: 50%;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(3, 7, 17, .62);
      color: var(--text);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 3;
      transform: translateY(-50%);
      backdrop-filter: blur(10px);
      transition: background .18s, color .18s, border-color .18s, transform .18s;
    }

    .banner-nav:hover {
      background: var(--cyan);
      border-color: var(--cyan);
      color: #001018;
      transform: translateY(-50%) scale(1.06);
    }

    .banner-prev {
      left: 14px;
    }

    .banner-next {
      right: 14px;
    }

    .banner-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 6px 8px;
      border-radius: 999px;
      background: rgba(3, 7, 17, .46);
      border: 1px solid rgba(255, 255, 255, .1);
      backdrop-filter: blur(10px);
      transform: translateX(-50%);
      z-index: 3;
    }

    .banner-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, .42);
      cursor: pointer;
      transition: width .22s, background .22s, box-shadow .22s;
    }

    .banner-dot.is-active {
      width: 24px;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(0, 212, 255, .65);
    }

    .banner-progress {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 0;
      height: 3px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      z-index: 3;
    }

    .banner-progress span {
      display: block;
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--gold));
      box-shadow: 0 0 14px rgba(0, 212, 255, .55);
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 340px;
      margin: 20px 0;
      background: linear-gradient(135deg, #050e22 0%, #0a1a35 50%, #060e20 100%);
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 75% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 25% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 50px;
      max-width: 600px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--cyan);
      text-transform: uppercase;
      background: rgba(0, 212, 255, 0.08);
      border: 1px solid rgba(0, 212, 255, 0.2);
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .hero-eyebrow i {
      font-size: 13px;
    }

    .hero-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 50px;
      font-weight: 700;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .hero-title .accent {
      color: var(--cyan);
      text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }

    .hero-title .gold {
      color: var(--gold);
      text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }

    .hero-sub {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 24px;
      max-width: 420px;
    }

    .hero-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-btn-primary {
      padding: 11px 28px;
      background: linear-gradient(135deg, var(--cyan), var(--cyan2));
      border: none;
      border-radius: 9px;
      color: #000;
      font-weight: 800;
      font-size: 13px;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
      transition: all .15s;
      letter-spacing: .5px;
    }

    .hero-btn-primary,
    .hero-btn-secondary,
    .btn-crash,
    .btn-vip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .hero-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(0, 212, 255, 0.5);
    }

    .hero-btn-secondary {
      padding: 11px 22px;
      background: rgba(255, 215, 0, 0.1);
      border: 1px solid rgba(255, 215, 0, 0.35);
      border-radius: 9px;
      color: var(--gold);
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      transition: all .15s;
    }

    .hero-btn-secondary:hover {
      background: rgba(255, 215, 0, 0.18);
    }

    .hero-visual {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-cards-float {
      position: relative;
      width: 320px;
      height: 280px;
    }

    .hcard {
      position: absolute;
      border-radius: 12px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 14px;
      gap: 6px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      animation: floatCard 3s ease-in-out infinite;
    }

    .hcard:nth-child(2) {
      animation-delay: -.8s;
    }

    .hcard:nth-child(3) {
      animation-delay: -1.6s;
    }

    @keyframes floatCard {

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

      50% {
        transform: translateY(-8px);
      }
    }

    .hcard-1 {
      top: 10px;
      left: 10px;
      width: 110px;
    }

    .hcard-2 {
      top: 40px;
      right: 10px;
      width: 120px;
    }

    .hcard-3 {
      bottom: 20px;
      left: 80px;
      width: 130px;
    }

    .hcard-icon {
      font-size: 30px;
      color: var(--cyan);
      line-height: 1;
    }

    .hcard-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: 1px;
    }

    .hcard-value {
      font-size: 14px;
      font-weight: 800;
      color: var(--cyan);
      font-family: 'Rajdhani', sans-serif;
    }

    .hcard.gold-card .hcard-value {
      color: var(--gold);
    }

    .hcard.green-card .hcard-value {
      color: var(--green);
    }

    /* ─── PROMO STRIP ─── */
    .promo-strip {
      display: flex;
      gap: 12px;
      margin-bottom: 28px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .promo-strip::-webkit-scrollbar {
      display: none;
    }

    .promo-card {
      flex: 0 0 auto;
      padding: 14px 18px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform .15s;
    }

    .promo-card:hover {
      transform: translateY(-2px);
    }

    .pc-1 {
      background: linear-gradient(135deg, #0d2044, #051226);
      border: 1px solid rgba(0, 212, 255, 0.2);
    }

    .pc-2 {
      background: linear-gradient(135deg, #1a1100, #0d0800);
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .pc-3 {
      background: linear-gradient(135deg, #1a0d00, #0d0600);
      border: 1px solid rgba(255, 100, 0, 0.2);
    }

    .pc-4 {
      background: linear-gradient(135deg, #0d001a, #070010);
      border: 1px solid rgba(160, 50, 255, 0.2);
    }

    .promo-icon {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      line-height: 1;
    }

    .promo-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .promo-pct {
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px;
      font-weight: 700;
      line-height: 1;
    }

    .pc-1 .promo-pct {
      color: var(--cyan);
    }

    .pc-2 .promo-pct {
      color: var(--gold);
    }

    .pc-3 .promo-pct {
      color: #ff8c00;
    }

    .pc-4 .promo-pct {
      color: #a032ff;
    }

    .promo-desc {
      font-size: 10px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: .5px;
    }

    /* ─── SECTION ─── */
    .section {
      margin-bottom: 32px;
    }

    /* ─── TEMPLATE PAGES ─── */
    .page-shell {
      padding: 22px 0 36px;
    }

    .page-hero-card {
      min-height: 210px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(0, 212, 255, .13), rgba(10, 22, 40, .92) 46%, rgba(255, 215, 0, .08));
      border: 1px solid rgba(255, 255, 255, .09);
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 30px;
      box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
      overflow: hidden;
      position: relative;
    }

    .page-hero-card::after {
      content: '';
      position: absolute;
      inset: auto -70px -120px auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 212, 255, .16), transparent 68%);
      pointer-events: none;
    }

    .page-hero-icon {
      width: 76px;
      height: 76px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      background: rgba(0, 212, 255, .1);
      border: 1px solid rgba(0, 212, 255, .28);
      color: var(--cyan);
      font-size: 34px;
      box-shadow: 0 0 24px rgba(0, 212, 255, .16);
    }

    .page-kicker {
      color: var(--cyan);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .page-hero-card h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 38px;
      line-height: 1;
      margin-bottom: 10px;
      color: #fff;
    }

    .page-hero-card p {
      max-width: 640px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .page-card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 14px;
    }

    .page-info-card {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: var(--navy2);
      padding: 14px 16px;
    }

    .page-info-card span {
      display: block;
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .page-info-card strong {
      display: block;
      color: var(--text);
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 700;
    }

    .page-section-block {
      margin-top: 20px;
    }

    .page-action-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 14px;
    }

    .page-action-card {
      min-height: 132px;
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(7, 15, 31, .94));
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 8px;
      color: inherit;
      text-decoration: none;
      transition: transform .18s, border-color .18s, background .18s;
    }

    .page-action-card:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 212, 255, .32);
      background: linear-gradient(145deg, rgba(0, 212, 255, .09), rgba(7, 15, 31, .96));
    }

    .page-action-card i {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 212, 255, .1);
      color: var(--cyan);
      font-size: 18px;
    }

    .page-action-card span,
    .page-feature-card strong {
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.05;
    }

    .page-action-card small,
    .page-feature-card p {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .page-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
      gap: 12px;
    }

    .page-game-card {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: var(--navy2);
      overflow: hidden;
      color: inherit;
      text-decoration: none;
      transition: transform .18s, border-color .18s, box-shadow .18s;
    }

    .page-game-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0, 212, 255, .32);
      box-shadow: 0 10px 26px rgba(0, 0, 0, .34);
    }

    .page-game-thumb {
      position: relative;
      aspect-ratio: 3 / 4;
      background: var(--navy3);
      overflow: hidden;
    }

    .page-game-thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .24s ease;
    }

    .page-game-card:hover .page-game-thumb img {
      transform: scale(1.045);
    }

    .page-game-thumb span {
      position: absolute;
      top: 8px;
      left: 8px;
      max-width: calc(100% - 16px);
      padding: 3px 7px;
      border-radius: 5px;
      background: rgba(0, 212, 255, .92);
      color: #001018;
      font-size: 8px;
      font-weight: 900;
      letter-spacing: .7px;
      text-transform: uppercase;
    }

    .page-game-info {
      padding: 10px 11px 11px;
      display: grid;
      gap: 3px;
    }

    .page-game-info strong {
      color: var(--text);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-game-info small,
    .page-game-info em {
      color: var(--muted);
      font-size: 9px;
      font-style: normal;
      font-weight: 700;
      letter-spacing: .4px;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-game-info em {
      color: var(--cyan);
    }

    .page-match-list {
      display: grid;
      gap: 10px;
    }

    .page-match-card {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: var(--navy2);
      padding: 14px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
      gap: 12px;
      align-items: center;
    }

    .page-match-main {
      min-width: 0;
      display: grid;
      gap: 4px;
    }

    .page-match-main span {
      color: var(--cyan);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .page-match-main strong {
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px;
      line-height: 1.05;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-match-main small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
    }

    .page-odds-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .page-odds-row button {
      min-height: 46px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 8px;
      background: rgba(255, 255, 255, .045);
      color: var(--text);
      cursor: default;
      display: grid;
      place-items: center;
      gap: 2px;
    }

    .page-odds-row button span {
      color: var(--muted);
      font-size: 9px;
      font-weight: 800;
    }

    .page-odds-row button strong {
      color: var(--gold);
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px;
      font-weight: 800;
    }

    .page-feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .page-feature-card {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: var(--navy2);
      padding: 18px;
      display: grid;
      gap: 8px;
    }

    .page-feature-card i {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 215, 0, .1);
      color: var(--gold);
      font-size: 18px;
    }

    /* ─── AUTH PAGES ─── */
    /* GAME DETAIL */
    .game-detail-shell {
      padding: 22px 0 38px;
    }

    .game-detail-hero {
      display: grid;
      grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(0, 212, 255, .13), rgba(10, 22, 40, .94) 48%, rgba(255, 215, 0, .09));
      box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
      overflow: hidden;
    }

    .game-detail-media {
      position: relative;
      min-height: 420px;
      background: var(--navy3);
    }

    .game-detail-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .game-detail-provider {
      position: absolute;
      left: 14px;
      bottom: 14px;
      max-width: calc(100% - 28px);
      padding: 7px 10px;
      border-radius: 8px;
      background: rgba(3, 7, 17, .78);
      border: 1px solid rgba(255, 255, 255, .14);
      color: var(--cyan);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .game-detail-content {
      padding: 34px 34px 30px 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .game-detail-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      margin-bottom: 12px;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .game-detail-content h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 52px;
      line-height: .98;
      color: #fff;
      margin-bottom: 14px;
    }

    .game-detail-content p {
      max-width: 680px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .game-detail-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .game-play-button,
    .game-demo-button {
      min-height: 46px;
      border-radius: 10px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Exo 2', sans-serif;
      font-size: 13px;
      font-weight: 900;
      cursor: default;
    }

    .game-play-button {
      border: 0;
      background: linear-gradient(135deg, var(--cyan), var(--cyan2));
      color: #001018;
      box-shadow: 0 8px 28px rgba(0, 212, 255, .24);
    }

    .game-demo-button {
      border: 1px solid rgba(255, 255, 255, .13);
      background: rgba(255, 255, 255, .06);
      color: var(--text);
    }

    .game-detail-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 14px;
    }

    .game-detail-card {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      background: var(--navy2);
      padding: 14px 16px;
      min-width: 0;
    }

    .game-detail-card span {
      display: block;
      margin-bottom: 5px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .game-detail-card strong {
      display: block;
      color: var(--text);
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .game-play-shell {
      margin-top: 18px;
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
      padding: 10px;
      /* Oyun CSS'inin dışarıya sızmasını engelle */
      isolation: isolate;
      contain: layout;
    }

    .game-play-stage {
      width: 100%;
      height: clamp(420px, 64vh, 760px);
      border-radius: 10px;
      overflow: hidden;
      background: #05070b;
      border: 1px solid rgba(255, 255, 255, .06);
      display: block;
      position: relative;
      /* CSS containment: oyun kendi içinde kalsın, dışarıyı etkilemesin */
      contain: strict;
    }

    .game-play-stage>* {
      position: absolute;
      inset: 0;
      width: 100% !important;
      height: 100% !important;
      overflow: hidden;
    }

    .game-play-stage iframe,
    .game-play-stage canvas,
    .game-play-stage object,
    .game-play-stage embed {
      width: 100% !important;
      height: 100% !important;
      min-height: unset;
      display: block;
      border: 0;
      position: absolute;
      inset: 0;
    }

    .auth-shell {
      min-height: calc(100vh - 120px);
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, 480px);
      gap: 18px;
      align-items: stretch;
      padding: 24px 0 38px;
    }

    .auth-visual,
    .auth-card {
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, .09);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
    }

    .auth-visual {
      position: relative;
      overflow: hidden;
      height: 560px;
      min-height: 560px;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      isolation: isolate;
      background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, .22), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(255, 215, 0, .13), transparent 32%),
        linear-gradient(135deg, #07142b, #060d1f 55%, #030711);
    }

    .auth-visual-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .auth-visual::before {
      content: none;
    }

    .auth-brand-mark {
      position: absolute;
      z-index: 2;
      top: 30px;
      left: 32px;
      width: 62px;
      height: 62px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--cyan), #087ca0);
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: 24px;
      font-weight: 800;
      box-shadow: 0 0 24px rgba(0, 212, 255, .3);
    }

    .auth-kicker {
      position: relative;
      z-index: 2;
      color: var(--cyan);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .auth-visual h1 {
      position: relative;
      z-index: 2;
      max-width: 560px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 46px;
      line-height: 1;
      color: #fff;
      margin-bottom: 12px;
    }

    .auth-visual p {
      position: relative;
      z-index: 2;
      max-width: 560px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .auth-benefits {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .auth-benefits div {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .05);
      color: var(--text);
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 700;
    }

    .auth-benefits i {
      color: var(--cyan);
    }

    .auth-card {
      background: rgba(6, 13, 31, .78);
      backdrop-filter: blur(16px);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .auth-card-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .auth-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--cyan);
      background: rgba(0, 212, 255, .1);
      border: 1px solid rgba(0, 212, 255, .24);
      font-size: 23px;
    }

    .auth-card-head span {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .auth-card-head h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 30px;
      line-height: 1;
      color: #fff;
      margin-top: 4px;
    }

    .auth-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .auth-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .auth-field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .auth-field>span {
      color: var(--text);
      font-size: 12px;
      font-weight: 700;
    }

    .auth-field>div {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .045);
      padding: 0 13px;
      transition: border-color .18s, background .18s, box-shadow .18s;
    }

    .auth-field>div:focus-within {
      border-color: rgba(0, 212, 255, .46);
      background: rgba(0, 212, 255, .06);
      box-shadow: 0 0 0 3px rgba(0, 212, 255, .08);
    }

    .auth-field i {
      color: var(--muted);
      font-size: 15px;
      flex: 0 0 auto;
    }

    .auth-field input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: none;
      background: transparent;
      color: var(--text);
      font: inherit;
      font-size: 13px;
    }

    .auth-field input::placeholder {
      color: rgba(126, 140, 170, .75);
    }

    .auth-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 2px;
    }

    .auth-check {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
    }

    .auth-check input {
      width: 15px;
      height: 15px;
      accent-color: var(--cyan);
      flex: 0 0 auto;
    }

    .auth-row a,
    .auth-switch a {
      color: var(--cyan);
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
    }

    .auth-terms {
      align-items: flex-start;
      margin-top: 2px;
    }

    .auth-alert {
      border: 1px solid rgba(255, 67, 67, .32);
      background: rgba(255, 67, 67, .1);
      color: #ffb4b4;
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.35;
    }

    .auth-submit {
      min-height: 48px;
      border: 0;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--cyan), var(--cyan2));
      color: #001018;
      font-family: 'Exo 2', sans-serif;
      font-size: 13px;
      font-weight: 900;
      cursor: pointer;
      margin-top: 4px;
      box-shadow: 0 8px 28px rgba(0, 212, 255, .24);
    }

    .auth-switch {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      color: var(--muted);
      text-align: center;
      font-size: 13px;
    }

    .account-shell {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-bottom: 34px;
    }

    .account-hero,
    .account-panel,
    .account-guest-card {
      border: 1px solid var(--glass-border);
      background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .028));
      border-radius: 8px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
    }

    .account-hero {
      min-height: 112px;
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      overflow: hidden;
      position: relative;
    }

    .account-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(0, 212, 255, .16), transparent 42%),
        linear-gradient(290deg, rgba(255, 215, 0, .12), transparent 38%);
      pointer-events: none;
    }

    .account-hero>* {
      position: relative;
      z-index: 1;
    }

    .account-hero span,
    .account-panel-head span {
      color: var(--cyan);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .account-hero h1 {
      margin-top: 3px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 30px;
      line-height: 1.05;
      color: #fff;
    }

    .account-alert {
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(0, 212, 255, .24);
      background: rgba(0, 212, 255, .08);
      color: #b9f4ff;
    }

    .account-alert-error {
      border-color: rgba(255, 58, 58, .32);
      background: rgba(255, 58, 58, .1);
      color: #ffc0c0;
    }

    .account-alert-success {
      border-color: rgba(0, 230, 118, .28);
      background: rgba(0, 230, 118, .09);
      color: #b9ffd9;
    }

    .account-stat-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .account-stat {
      min-height: 108px;
      border: 1px solid var(--glass-border);
      background: rgba(255, 255, 255, .045);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
    }

    .account-stat i {
      color: var(--cyan);
      font-size: 20px;
    }

    .account-stat span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .account-stat strong {
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: 24px;
      line-height: 1;
    }

    .account-stat-balance {
      border-color: rgba(255, 215, 0, .22);
      background: rgba(255, 215, 0, .07);
    }

    .account-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
      gap: 16px;
      align-items: start;
    }

    .account-narrow {
      max-width: 760px;
      margin: 0 auto;
      width: 100%;
    }

    .account-quick-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .account-action-card {
      min-height: 132px;
      border: 1px solid var(--glass-border);
      background: rgba(255, 255, 255, .045);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      color: var(--text);
      text-decoration: none;
      transition: border-color .15s, transform .15s, background .15s;
    }

    .account-action-card:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 212, 255, .36);
      background: rgba(0, 212, 255, .07);
    }

    .account-action-card i {
      color: var(--cyan);
      font-size: 22px;
    }

    .account-action-card strong {
      color: #fff;
      font-size: 14px;
      font-weight: 900;
    }

    .account-action-card span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.35;
    }

    .account-main,
    .account-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .account-panel {
      padding: 18px;
    }

    .account-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .account-panel-head h2 {
      margin-top: 2px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px;
      line-height: 1;
      color: #fff;
    }

    .wallet-forms {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .account-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .wallet-form {
      border: 1px solid rgba(255, 255, 255, .075);
      background: rgba(0, 0, 0, .12);
      border-radius: 8px;
      padding: 14px;
    }

    .wallet-form-title {
      display: flex;
      align-items: center;
      gap: 9px;
      color: #fff;
      font-size: 14px;
      font-weight: 900;
    }

    .wallet-form-title i {
      color: var(--cyan);
      font-size: 18px;
    }

    .account-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .account-field span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .account-field input,
    .account-field select,
    .account-field textarea {
      width: 100%;
      min-height: 44px;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      background: rgba(3, 7, 17, .76);
      color: var(--text);
      font: inherit;
      font-size: 13px;
      outline: none;
      padding: 10px 12px;
    }

    .account-field textarea {
      resize: vertical;
      min-height: 86px;
    }

    .account-field input:focus,
    .account-field select:focus,
    .account-field textarea:focus {
      border-color: rgba(0, 212, 255, .48);
      box-shadow: 0 0 0 3px rgba(0, 212, 255, .08);
    }

    .account-field input:disabled {
      opacity: .7;
      cursor: not-allowed;
    }

    .account-primary-btn,
    .account-secondary-btn {
      min-height: 42px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 14px;
      font-family: 'Exo 2', sans-serif;
      font-size: 12px;
      font-weight: 900;
      text-decoration: none;
      cursor: pointer;
      border: 0;
    }

    .account-primary-btn {
      background: linear-gradient(135deg, var(--cyan), var(--cyan2));
      color: #001018;
      box-shadow: 0 8px 24px rgba(0, 212, 255, .22);
    }

    .account-secondary-btn {
      color: var(--cyan);
      background: rgba(0, 212, 255, .08);
      border: 1px solid rgba(0, 212, 255, .32);
    }

    .account-form-card {
      align-items: stretch;
      min-height: 188px;
    }

    .account-inline-form {
      display: flex;
      gap: 8px;
      margin-top: auto;
      width: 100%;
    }

    .account-inline-form input {
      min-width: 0;
      flex: 1;
      min-height: 42px;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      background: rgba(3, 7, 17, .76);
      color: var(--text);
      font: inherit;
      font-size: 13px;
      font-weight: 800;
      outline: none;
      padding: 10px 12px;
      text-transform: uppercase;
    }

    .account-inline-form input:focus {
      border-color: rgba(0, 212, 255, .48);
      box-shadow: 0 0 0 3px rgba(0, 212, 255, .08);
    }

    .account-code-box {
      width: 100%;
      margin-top: auto;
      border: 1px dashed rgba(255, 215, 0, .38);
      border-radius: 8px;
      background: rgba(255, 215, 0, .08);
      color: var(--gold);
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: .08em;
      line-height: 1;
      padding: 14px;
      text-align: center;
      overflow-wrap: anywhere;
    }

    .wallet-table {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .wallet-row {
      min-height: 64px;
      border: 1px solid rgba(255, 255, 255, .075);
      background: rgba(0, 0, 0, .12);
      border-radius: 8px;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .wallet-row>div {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .wallet-row strong {
      color: #fff;
      font-size: 13px;
    }

    .wallet-row span,
    .wallet-empty {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .wallet-status {
      align-self: flex-end;
      color: var(--gold);
    }

    .wallet-status-approved,
    .wallet-status-completed {
      color: var(--green);
    }

    .wallet-status-rejected {
      color: var(--red);
    }

    .wallet-empty {
      border: 1px dashed rgba(255, 255, 255, .14);
      border-radius: 8px;
      padding: 16px;
      text-align: center;
    }

    .account-guest {
      min-height: calc(100vh - 160px);
      display: grid;
      place-items: center;
      padding: 20px 0;
    }

    .account-guest-card {
      width: min(100%, 520px);
      padding: 28px;
      text-align: center;
    }

    .account-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 14px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: rgba(0, 212, 255, .1);
      color: var(--cyan);
      font-size: 22px;
    }

    .account-guest-card h1 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px;
      color: #fff;
    }

    .account-guest-card p {
      margin: 8px auto 18px;
      max-width: 390px;
      color: var(--muted);
      font-size: 13px;
    }

    .account-guest-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .5px;
      color: #fff;
    }

    .section-title .title-icon {
      width: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--cyan);
      line-height: 1;
    }

    .section-title .line {
      display: inline-block;
      width: 4px;
      height: 18px;
      background: linear-gradient(180deg, var(--cyan), transparent);
      border-radius: 2px;
    }

    .see-all {
      font-size: 11px;
      font-weight: 700;
      color: var(--cyan);
      cursor: pointer;
      letter-spacing: .5px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: opacity .15s;
    }

    .see-all:hover {
      opacity: .7;
    }

    /* ─── CATEGORY TABS ─── */
    .cat-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .cat-tabs::-webkit-scrollbar {
      display: none;
    }

    .cat-tab {
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11.5px;
      font-weight: 700;
      cursor: pointer;
      border: 1px solid var(--glass-border);
      background: var(--glass);
      color: var(--muted);
      transition: all .15s;
      white-space: nowrap;
      letter-spacing: .3px;
    }

    .cat-tab {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .cat-tab.active,
    .cat-tab:hover {
      border-color: rgba(0, 212, 255, 0.4);
      background: rgba(0, 212, 255, 0.1);
      color: var(--cyan);
    }

    /* ─── GAME CARDS ─── */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }

    .home-games-rail {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: clamp(150px, 12.5vw, 190px);
      grid-template-columns: none;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 2px 2px 10px;
      margin: 0 -2px;
      scroll-snap-type: x proximity;
      scroll-padding-inline: 2px;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 212, 255, .55) rgba(255, 255, 255, .05);
    }

    .home-games-rail::-webkit-scrollbar {
      height: 6px;
    }

    .home-games-rail::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, .05);
      border-radius: 999px;
    }

    .home-games-rail::-webkit-scrollbar-thumb {
      background: rgba(0, 212, 255, .55);
      border-radius: 999px;
    }

    .home-games-rail .game-card {
      min-width: 0;
      scroll-snap-align: start;
    }

    .game-card {
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      background: var(--navy3);
      border: 1px solid var(--glass-border);
      transition: transform .2s, border-color .2s, box-shadow .2s;
      aspect-ratio: 3/4;
      display: flex;
      flex-direction: column;
      color: inherit;
      text-decoration: none;
    }

    .game-card:hover {
      transform: translateY(-4px) scale(1.01);
      border-color: rgba(0, 212, 255, 0.3);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.1);
    }

    .game-card:hover .game-overlay {
      opacity: 1;
    }

    .game-thumb {
      width: 100%;
      flex: 1;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .game-thumb-icon {
      font-size: 46px;
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      line-height: 1;
    }

    .game-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .game-thumb-bg {
      position: absolute;
      inset: 0;
    }

    .game-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .2s;
    }

    .play-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #000;
      box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }

    .play-btn i {
      margin-left: 2px;
      font-size: 17px;
      line-height: 1;
    }

    .game-info {
      padding: 8px 10px 9px;
      background: var(--navy2);
    }

    .game-name {
      font-size: 11px;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 2px;
    }

    .game-provider {
      font-size: 9px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: .4px;
    }

    .game-badge {
      position: absolute;
      top: 7px;
      left: 7px;
      font-size: 8px;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .badge-hot {
      background: #ff3a3a;
      color: #fff;
    }

    .badge-new {
      background: var(--green);
      color: #000;
    }

    .badge-live {
      background: var(--red);
      color: #fff;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .badge-rtp {
      background: rgba(255, 215, 0, 0.2);
      color: var(--gold);
      border: 1px solid rgba(255, 215, 0, 0.3);
    }

    /* ─── LIVE CASINO SECTION ─── */
    .live-casino-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }

    .live-table-card {
      border-radius: 12px;
      background: var(--navy3);
      border: 1px solid var(--glass-border);
      overflow: hidden;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      color: inherit;
      text-decoration: none;
    }

    .live-table-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    }

    .ltc-header {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
      position: relative;
    }

    .ltc-header i {
      font-size: 42px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1;
    }

    .ltc-live-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: var(--red);
      color: #fff;
      font-size: 8px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 3px;
      letter-spacing: .5px;
    }

    .ltc-body {
      padding: 10px 12px 12px;
    }

    .ltc-name {
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .ltc-meta {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      color: var(--muted);
    }

    .ltc-limit {
      color: var(--gold);
      font-weight: 700;
    }

    .ltc-players {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ─── MATCHES ─── */
    .matches-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .match-row {
      background: var(--navy2);
      border: 1px solid var(--glass-border);
      border-radius: 10px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: border-color .15s;
    }

    .match-row:hover {
      border-color: rgba(0, 212, 255, 0.25);
    }

    .match-league {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--muted);
      width: 70px;
      flex-shrink: 0;
      text-transform: uppercase;
    }

    .match-league {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .match-teams {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .match-team {
      font-size: 12px;
      font-weight: 700;
    }

    .match-time {
      font-size: 10px;
      color: var(--cyan);
      font-weight: 700;
      width: 50px;
      text-align: center;
      flex-shrink: 0;
    }

    .match-time {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .match-status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    .match-status-dot.live {
      background: var(--red);
    }

    .match-status-dot.break {
      background: var(--gold);
    }

    .match-odds {
      display: flex;
      gap: 6px;
    }

    .odd-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 6px 10px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--glass-border);
      cursor: pointer;
      min-width: 52px;
      transition: all .15s;
    }

    .odd-btn:hover {
      background: rgba(0, 212, 255, 0.1);
      border-color: rgba(0, 212, 255, 0.3);
    }

    .odd-label {
      font-size: 8px;
      color: var(--muted);
      font-weight: 700;
      letter-spacing: .5px;
      margin-bottom: 2px;
    }

    .odd-value {
      font-size: 13px;
      font-weight: 800;
      color: var(--gold);
      font-family: 'Rajdhani', sans-serif;
    }

    .live-score {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 18px;
      font-weight: 800;
      font-family: 'Rajdhani', sans-serif;
      color: var(--text);
      width: 60px;
      justify-content: center;
      flex-shrink: 0;
    }

    .score-sep {
      color: var(--muted);
      font-size: 14px;
    }

    /* ─── CRASH GAME ─── */
    .crash-section {
      background: linear-gradient(135deg, #0a0418, #06021a);
      border: 1px solid rgba(160, 50, 255, 0.2);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .crash-display {
      flex: 0 0 200px;
      height: 160px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      border: 1px solid rgba(160, 50, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .crash-multiplier {
      font-family: 'Rajdhani', sans-serif;
      font-size: 54px;
      font-weight: 700;
      color: #a032ff;
      text-shadow: 0 0 30px rgba(160, 50, 255, 0.6);
      z-index: 2;
      position: relative;
      animation: pulseMult 1s ease-in-out infinite;
    }

    @keyframes pulseMult {

      0%,
      100% {
        text-shadow: 0 0 20px rgba(160, 50, 255, 0.4);
      }

      50% {
        text-shadow: 0 0 50px rgba(160, 50, 255, 0.9);
      }
    }

    .crash-bg-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(160, 50, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(160, 50, 255, 0.06) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    .crash-info {
      flex: 1;
    }

    .crash-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .crash-title span {
      color: #a032ff;
    }

    .crash-desc {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .crash-stats {
      display: flex;
      gap: 16px;
      margin-bottom: 18px;
    }

    .crash-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .cs-label {
      font-size: 9px;
      color: var(--muted);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .cs-value {
      font-size: 16px;
      font-weight: 800;
      font-family: 'Rajdhani', sans-serif;
      color: #a032ff;
    }

    .btn-crash {
      padding: 10px 24px;
      background: linear-gradient(135deg, #a032ff, #7010cc);
      border: none;
      border-radius: 8px;
      color: #fff;
      font-weight: 800;
      font-size: 13px;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      box-shadow: 0 4px 18px rgba(160, 50, 255, 0.35);
      transition: all .15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-crash:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(160, 50, 255, 0.5);
    }

    /* ─── ESPORTS ─── */
    .esports-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 12px;
    }

    .esport-card {
      border-radius: 12px;
      border: 1px solid var(--glass-border);
      padding: 16px 12px;
      text-align: center;
      cursor: pointer;
      background: var(--navy2);
      transition: all .15s;
      color: inherit;
      text-decoration: none;
    }

    .esport-card:hover {
      border-color: rgba(0, 212, 255, 0.3);
      background: rgba(0, 212, 255, 0.05);
      transform: translateY(-2px);
    }

    .esport-logo {
      font-size: 34px;
      margin-bottom: 8px;
      color: var(--cyan);
      line-height: 1;
    }

    .esport-name {
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .esport-matches {
      font-size: 10px;
      color: var(--green);
      font-weight: 600;
    }

    .live-mini-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      display: inline-block;
      background: var(--green);
      margin-right: 4px;
      vertical-align: middle;
    }

    /* ─── VIP BANNER ─── */
    .vip-banner {
      border-radius: 14px;
      padding: 28px 32px;
      background: linear-gradient(135deg, #110a00, #1a1000, #0d0800);
      border: 1px solid rgba(255, 215, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
      margin-bottom: 32px;
    }

    .vip-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
      right: -50px;
      top: -80px;
      pointer-events: none;
    }

    .vip-left {
      position: relative;
      z-index: 1;
    }

    .vip-crown {
      font-size: 38px;
      margin-bottom: 10px;
      color: var(--gold);
      line-height: 1;
    }

    .vip-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px;
      font-weight: 700;
    }

    .vip-title span {
      color: var(--gold);
    }

    .vip-sub {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }

    .vip-perks {
      display: flex;
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .vip-perk {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-align: center;
    }

    .vp-icon {
      font-size: 23px;
      color: var(--gold);
      line-height: 1;
    }

    .vp-val {
      font-size: 16px;
      font-weight: 800;
      font-family: 'Rajdhani', sans-serif;
      color: var(--gold);
    }

    .vp-label {
      font-size: 9px;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: .5px;
    }

    .btn-vip {
      padding: 12px 28px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border: none;
      border-radius: 9px;
      color: #000;
      font-weight: 800;
      font-size: 13px;
      cursor: pointer;
      font-family: 'Exo 2', sans-serif;
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
      transition: all .15s;
      position: relative;
      z-index: 1;
    }

    .btn-vip:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(255, 215, 0, 0.5);
    }

    /* ─── FOOTER ─── */
    .footer {
      border-top: 1px solid var(--glass-border);
      padding: 20px 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--navy);
    }

    .footer-brand {
      font-family: 'Rajdhani', sans-serif;
      font-size: 16px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      text-decoration: none;
    }

    .footer-brand span {
      color: var(--cyan);
    }

    .footer-brand img {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      border-radius: 8px;
      object-fit: contain;
      background: rgba(255, 255, 255, .04);
    }

    .footer-brand small {
      color: var(--muted);
      font-family: 'Exo 2', sans-serif;
      font-size: 11px;
      font-weight: 600;
    }

    .footer-links {
      display: flex;
      gap: 16px;
    }

    .footer-links a {
      font-size: 11px;
      color: var(--muted);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-links a:hover {
      color: var(--text);
    }

    .footer-badges {
      display: flex;
      gap: 8px;
    }

    .fbadge {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 9px;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: .5px;
    }

    /* ─── GAME THUMB COLORS ─── */
    .gt-c1 {
      background: linear-gradient(135deg, #0a1a35, #04102a);
    }

    .gt-c2 {
      background: linear-gradient(135deg, #1a0d00, #100800);
    }

    .gt-c3 {
      background: linear-gradient(135deg, #0d001a, #070010);
    }

    .gt-c4 {
      background: linear-gradient(135deg, #001a0d, #000d07);
    }

    .gt-c5 {
      background: linear-gradient(135deg, #1a0000, #100000);
    }

    .gt-c6 {
      background: linear-gradient(135deg, #14001a, #0a0010);
    }

    /* ─── MOBILE ─── */
    @media (max-width: 900px) {
      :root {
        --sidebar-w: 0px;
      }

      .sidebar {
        display: flex;
        width: min(86vw, 300px);
        z-index: 120;
      }

      .main {
        margin-left: 0;
      }

      .topbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-height: 58px;
        height: auto;
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr) auto;
        align-items: center;
        gap: 9px;
        padding: 10px 12px;
        max-width: 100vw;
        overflow: hidden;
      }

      .main {
        padding-top: 58px;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .topbar-logo {
        font-size: 18px;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .topbar-logo img {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
      }

      .topbar-nav {
        display: none;
      }

      .topbar-search {
        grid-column: 1 / -1;
        order: 6;
        display: block;
        max-width: none;
        width: 100%;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        overflow: hidden;
        pointer-events: none;
        transition: max-height .62s cubic-bezier(.22, 1, .36, 1), opacity .44s ease .06s, transform .56s ease .04s;
      }

      .topbar.search-open .topbar-search {
        max-height: 44px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .topbar-spacer {
        display: none;
      }

      .topbar-actions {
        justify-self: end;
        gap: 6px;
        min-width: 0;
      }

      .balance-chip {
        display: inline-flex;
        max-width: 118px;
        min-height: 34px;
        padding: 6px 9px;
        border-radius: 8px;
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .user-chip {
        max-width: 42px;
        padding: 7px 9px;
        border-radius: 7px;
        font-size: 11px;
      }

      .user-chip span {
        display: none;
      }

      .btn-login,
      .btn-register {
        padding: 7px 10px;
        border-radius: 7px;
        font-size: 11px;
        white-space: nowrap;
      }

      .topnav-btn {
        flex: 0 0 auto;
        padding: 7px 12px;
        background: rgba(255, 255, 255, .04);
        border-color: var(--glass-border);
      }

      .content {
        padding: 0 12px 92px;
      }

      .home-games-rail {
        grid-auto-columns: clamp(155px, 43vw, 185px);
        gap: 10px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .home-games-rail::-webkit-scrollbar {
        display: none;
      }

      body {
        padding-bottom: 74px;
      }

      .mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 105;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 5px;
        min-height: 64px;
        padding: 7px;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 18px;
        background: rgba(5, 12, 28, .92);
        box-shadow: 0 18px 60px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
      }

      .mobile-nav-item {
        min-width: 0;
        min-height: 50px;
        border: 0;
        border-radius: 13px;
        background: transparent;
        color: #8696b5;
        display: grid;
        place-items: center;
        gap: 2px;
        text-decoration: none;
        font-family: 'Exo 2', sans-serif;
        font-size: 10px;
        font-weight: 800;
        cursor: pointer;
      }

      .mobile-nav-item i {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255,255,255,.08);
        color: #c7d5ee;
        font-size: 17px;
        line-height: 1;
        text-shadow: 0 0 10px rgba(0, 212, 255, .22);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
      }

      .mobile-nav-item span {
        overflow: hidden;
        max-width: 100%;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .mobile-nav-item.active {
        color: var(--cyan);
        background: rgba(0, 212, 255, .08);
      }

      .mobile-nav-item.active i {
        color: var(--cyan);
        border-color: rgba(0, 212, 255, .28);
        background: rgba(0, 212, 255, .11);
      }

      .mobile-nav-search {
        position: relative;
        margin-top: -18px;
        min-height: 64px;
        border-radius: 18px;
        color: #06101f;
        background: linear-gradient(180deg, #ffe985, #f2b525);
        box-shadow: 0 10px 26px rgba(255, 215, 0, .22);
      }

      .mobile-nav-search i {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: rgba(0,0,0,.08);
        color: #06101f;
        font-size: 21px;
        box-shadow: none;
      }

      .game-search-modal {
        align-items: end;
        padding: 10px 10px 86px;
      }

      .game-search-panel {
        width: 100%;
        max-height: min(680px, calc(100dvh - 104px));
        border-radius: 18px;
        padding: 14px;
      }

      .game-search-results {
        grid-template-columns: 1fr;
      }

      .banner-slider {
        margin: 12px 0 18px;
        border-radius: 14px;
      }

      .banner-viewport {
        border-radius: 14px;
      }

      .banner-slide {
        aspect-ratio: 43 / 24;
        min-height: 0;
      }

      .banner-nav {
        width: 32px;
        height: 32px;
      }

      .banner-prev {
        left: 8px;
      }

      .banner-next {
        right: 8px;
      }

      .banner-dots {
        bottom: 9px;
      }

      .hero {
        height: auto;
        min-height: 220px;
      }

      .hero-content {
        padding: 28px 20px;
        max-width: 100%;
      }

      .hero-title {
        font-size: 30px;
      }

      .hero-visual {
        display: none;
      }

      .crash-section {
        flex-direction: column;
      }

      .crash-display {
        width: 100%;
      }

      .vip-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .vip-perks {
        justify-content: center;
      }

      .page-hero-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px 20px;
      }

      .page-hero-card h1 {
        font-size: 30px;
      }

      .page-card-grid {
        grid-template-columns: 1fr;
      }

      .page-action-grid,
      .page-feature-grid {
        grid-template-columns: 1fr;
      }

      .page-game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .page-match-card {
        grid-template-columns: 1fr;
      }

      .page-match-main strong {
        white-space: normal;
      }

      .game-detail-hero {
        grid-template-columns: 1fr;
      }

      .game-detail-media {
        min-height: 0;
        aspect-ratio: 4 / 3;
      }

      .game-detail-content {
        padding: 24px 20px;
      }

      .game-detail-content h1 {
        font-size: 34px;
      }

      .game-detail-grid {
        grid-template-columns: 1fr;
      }

      .auth-shell {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 0 28px;
      }

      .auth-visual {
        height: 220px;
        min-height: 270px;
        padding: 0;
      }

      .auth-brand-mark {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        border-radius: 13px;
        font-size: 20px;
      }

      .auth-visual h1 {
        font-size: 31px;
      }

      .auth-benefits {
        gap: 8px;
      }

      .auth-benefits div {
        padding: 7px 10px;
        font-size: 11px;
      }

      .auth-card {
        padding: 22px 18px;
      }

      .auth-grid-2 {
        grid-template-columns: 1fr;
      }

      .auth-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .account-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
      }

      .account-hero h1 {
        font-size: 26px;
      }

      .account-stat-grid,
      .account-layout,
      .account-quick-grid,
      .wallet-forms {
        grid-template-columns: 1fr;
      }

      .account-panel {
        padding: 14px;
      }

      .account-inline-form {
        flex-direction: column;
      }

      .account-inline-form .account-primary-btn {
        width: 100%;
      }

      .wallet-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .wallet-status {
        align-self: flex-start;
      }

      .footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    @media (max-width: 420px) {
      .topbar {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        padding: 9px 10px;
      }

      .mobile-menu-btn {
        width: 36px;
        height: 36px;
      }

      .topbar-logo {
        font-size: 0;
      }

      .topbar-logo img {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
      }

      .topbar-actions {
        gap: 5px;
      }

      .btn-login,
      .btn-register {
        padding: 6px 8px;
        font-size: 10.5px;
        letter-spacing: 0;
      }
    }
