 /* CSS Reset and Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --background: #0f0a1a;
      --foreground: #fafafa;
      --card: #1a1228;
      --card-foreground: #fafafa;
      --secondary: #251a38;
      --secondary-foreground: #fafafa;
      --muted: #1e1430;
      --muted-foreground: #a1a1aa;
      --border: #2d2145;
      --input: #1e1430;
      --gold: #d4a843;
      --gold-dark: #b8922e;
      --neon: #4ade80;
      --neon-dark: #22c55e;
      --casino-dark: #0a0612;
      --casino-darker: #060410;
      --destructive: #ef4444;
      --radius: 0.75rem;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      min-height: 100vh;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* Container */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      width: 100%;
      border-bottom: 1px solid rgba(45, 33, 69, 0.5);
      background-color: #10102d;
      backdrop-filter: blur(12px);
    }

    .header-inner {
      display: flex;
      height: 64px;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: var(--gold);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--casino-darker);
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.025em;
    }

    .logo-text .highlight {
      color: var(--gold);
    }

    /* Navigation */
    .nav-desktop {
      display: none;
      align-items: center;
      gap: 0.25rem;
    }

    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }
    }

    .nav-link {
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #ffffff;
      transition: all 0.2s;
    }

    .nav-link:hover {
      background-color: var(--secondary);
      color: var(--foreground);
    }

    /* Header Actions */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .search-box {
      display: none;
      align-items: center;
      overflow: hidden;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background-color: var(--input);
      transition: width 0.3s;
      width: 40px;
    }

    .search-box.expanded {
      width: 192px;
    }

    @media (min-width: 768px) {
      .search-box {
        display: flex;
      }
    }

    .search-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted-foreground);
      flex-shrink: 0;
    }

    .search-btn:hover {
      color: var(--foreground);
    }

    .search-input {
      height: 40px;
      width: 100%;
      background: transparent;
      border: none;
      padding-right: 0.75rem;
      font-size: 0.875rem;
      color: var(--foreground);
      display: none;
    }

    .search-box.expanded .search-input {
      display: block;
    }

    .search-input::placeholder {
      color: var(--muted-foreground);
    }

    .search-input:focus {
      outline: none;
    }

    /* Language Selector */
.lang-selector {
      display: none;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.75rem;
      border-radius: 0.5rem;
      background-color: transparent;
      color: var(--muted-foreground);
      font-size: 0.875rem;
      transition: all 0.2s;
    }

    .lang-selector:hover {
      background-color: var(--secondary);
      color: var(--foreground);
    }

    @media (min-width: 768px) {
      .lang-selector {
        display: flex;
      }
    }

    .header-auth-buttons {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .header-auth-buttons .btn-header-outline,
    .header-auth-buttons .btn-cyan {
      padding: 0.4rem 0.75rem;
      font-size: 0.75rem;
    }

    @media (min-width: 768px) {
      .header-auth-buttons .btn-header-outline,
      .header-auth-buttons .btn-cyan {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
      }
    }

    .btn-header-outline {
      padding: 0.5rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: 0.5rem;
      background-color: #4d339f;
      color: white;
      border: 1px solid #4d339f;
      transition: all 0.2s;
    }

    .btn-header-outline:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .lang-selector:hover {
      background-color: var(--secondary);
      color: var(--foreground);
    }

    @media (min-width: 768px) {
      .lang-selector {
        display: flex;
      }
    }

    .flag-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      overflow: hidden;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-ghost {
      background: transparent;
      color: var(--foreground);
    }

    .btn-ghost:hover {
      background-color: var(--secondary);
    }

    .btn-primary {
      background-color: var(--neon);
      color: var(--casino-darker);
      font-weight: 600;
    }

    .btn-primary:hover {
      background-color: var(--neon-dark);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--foreground);
    }

    .btn-outline:hover {
      background-color: var(--secondary);
    }

    .btn-gold {
      background-color: var(--gold);
      color: var(--casino-darker);
      font-weight: 600;
    }

    .btn-gold:hover {
      background-color: var(--gold-dark);
    }

    .btn-orange {
      background: linear-gradient(to right, #f97316, #f59e0b);
      color: white;
      font-weight: 700;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    }

    .btn-orange:hover {
      background: linear-gradient(to right, #ea580c, #d97706);
    }

    .btn-lg {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .login-btn {
      display: none;
    }

    @media (min-width: 768px) {
      .login-btn {
        display: inline-flex;
      }
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      color: var(--foreground);
    }

    @media (min-width: 1024px) {
      .mobile-menu-toggle {
        display: none;
      }
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      border-top: 1px solid var(--border);
      background-color: var(--casino-darker);
      padding: 1rem;
    }

    .mobile-menu.open {
      display: block;
    }

    @media (min-width: 1024px) {
      .mobile-menu {
        display: none !important;
      }
    }

    .mobile-search {
      display: flex;
      align-items: center;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      background-color: var(--input);
      padding: 0 0.75rem;
      margin-bottom: 1rem;
    }

    .mobile-search input {
      height: 40px;
      width: 100%;
      background: transparent;
      border: none;
      padding: 0 0.75rem;
      font-size: 0.875rem;
      color: var(--foreground);
    }

    .mobile-search input::placeholder {
      color: var(--muted-foreground);
    }

    .mobile-search input:focus {
      outline: none;
    }

    .mobile-nav-link {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      transition: all 0.2s;
    }

    .mobile-nav-link:hover {
      background-color: var(--secondary);
      color: var(--foreground);
    }

    .mobile-menu-buttons {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .mobile-menu-buttons .btn {
      flex: 1;
    }

    /* Hero Section */
    .hero {
      padding: 1.5rem 1rem;
    }

    @media (min-width: 1024px) {
      .hero {
        padding: 1.5rem 2rem;
      }
    }

.hero-banner {
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .hero-banner {
        border-radius: 1rem;
      }
    }

    .hero-image-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
    }

    @media (min-width: 480px) {
      .hero-image-wrapper {
        aspect-ratio: 16 / 9;
      }
    }

    @media (min-width: 768px) {
      .hero-image-wrapper {
        aspect-ratio: 3 / 1;
      }
    }

    @media (min-width: 1024px) {
      .hero-image-wrapper {
        aspect-ratio: 21 / 7;
      }
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 26, 0.6);
    }

    @media (min-width: 768px) {
      .hero-gradient {
        background: rgba(10, 10, 26, 0.5);
      }
    }

.hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      padding-bottom: 2.5rem;
      overflow: hidden;
      text-align: center;
    }

    @media (min-width: 480px) {
      .hero-content {
        padding: 1.5rem;
        padding-bottom: 3rem;
        gap: 1.25rem;
      }
    }

    @media (min-width: 768px) {
      .hero-content {
        padding: 2rem;
        padding-bottom: 3.5rem;
        gap: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-content {
        padding: 2.5rem 3rem;
        padding-bottom: 4rem;
      }
    }

    .hero-brand {
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 1.25rem;
      color: white;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
.hero-brand {
      font-size: 0.875rem;
      font-style: italic;
      color: white;
      margin-bottom: 0.25rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .hero-brand {
        font-size: 1rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-brand {
        font-size: 1.125rem;
      }
    }

    .hero-subtitle {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.5rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .hero-subtitle {
        font-size: 1rem;
      }
    }
    }

    .hero-subtitle {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .hero-subtitle {
        font-size: 1rem;
      }
    }

    .hero-bonus {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      background: linear-gradient(to right, #fbbf24, #f97316);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.25rem;
      line-height: 1.1;
      text-align: center;
    }

    @media (min-width: 480px) {
      .hero-bonus {
        font-size: 1.875rem;
      }
    }

    @media (min-width: 768px) {
      .hero-bonus {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-bonus {
        font-size: 3rem;
      }
    }

    @media (min-width: 1280px) {
      .hero-bonus {
        font-size: 3.75rem;
      }
    }

    .hero-spins {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      color: white;
      margin-bottom: 0;
      line-height: 1.1;
      text-align: center;
    }

    @media (min-width: 480px) {
      .hero-spins {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 768px) {
      .hero-spins {
        font-size: 1.875rem;
      }
    }

    @media (min-width: 1024px) {
      .hero-spins {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1280px) {
      .hero-spins {
        font-size: 3rem;
      }
    }

    .hero-top-buttons {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .hero-top-buttons {
        gap: 1rem;
      }
    }

    .hero-center {
      text-align: center;
    }

    .hero-bottom-button {
      display: flex;
      justify-content: center;
     margin-top: 5px;
    }

    .btn-hero-outline {
      padding: 0.625rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: 0.5rem;
      background-color: rgba(30, 30, 50, 0.8);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.2s;
    }

    .btn-hero-outline:hover {
      background-color: rgba(50, 50, 70, 0.9);
      border-color: rgba(255, 255, 255, 0.5);
    }

    @media (min-width: 768px) {
      .btn-hero-outline {
        padding: 0.75rem 2rem;
        font-size: 1rem;
      }
    }

    .btn-cyan {
      padding: 0.625rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: 0.5rem;
      background-color: #c30054;
      color: #ffffff;
      border: none;
      transition: all 0.2s;
    }

    .btn-cyan:hover {
      background-color: #c30054;
    }

    @media (min-width: 768px) {
      .btn-cyan {
        padding: 0.75rem 2rem;
        font-size: 1rem;
      }
    }

    .btn-claim {
      padding: 0.75rem 2.5rem;
      font-size: 1rem;
      border-radius: 0.5rem;
    }

    @media (min-width: 768px) {
      .btn-claim {
        padding: 0.875rem 3rem;
        font-size: 1.125rem;
      }
    }

    .hero-instant svg {
      fill: #fbbf24;
      color: #fbbf24;
    }

    .hero-terms {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      text-align: right;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
      display: none;
    }

    @media (min-width: 768px) {
      .hero-terms {
        display: block;
      }
    }

    @media (min-width: 1024px) {
      .hero-terms {
        bottom: 1.5rem;
        right: 1.5rem;
      }
    }

    .hero-terms-mobile {
      margin-top: 0.75rem;
      text-align: center;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    @media (min-width: 768px) {
      .hero-terms-mobile {
        display: none;
      }
    }

    /* Game Categories */
    .categories {
      border-bottom: 1px solid var(--border);
      background-color: rgba(15, 10, 26, 0.5);
      backdrop-filter: blur(8px);
    }

    .categories-scroll {
      display: flex;
      gap: 0.25rem;
      overflow-x: auto;
      padding: 1rem;
      margin: 0 -1rem;
      scrollbar-width: none;
    }

    .categories-scroll::-webkit-scrollbar {
      display: none;
    }

    .category-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      white-space: nowrap;
      transition: all 0.2s;
      flex-shrink: 0;
      background-color: var(--secondary);
      color: #ffffff;
    }

    .category-btn:hover {
      background-color: rgba(37, 26, 56, 0.8);
      color: var(--foreground);
    }

    .category-btn.active {
      background-color: var(--gold);
      color: var(--casino-darker);
    }

    /* Game Grid */
    .game-grid-section {
      background-color: var(--background);
      padding: 2rem 0;
    }

    .game-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .game-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 768px) {
      .game-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .game-grid {
        grid-template-columns: repeat(5, 1fr);
      }
    }

    /* Game Card */
    .game-card {
      position: relative;
      overflow: hidden;
      border-radius: 0.75rem;
      background-color: var(--card);
      transition: transform 0.2s;
    }

    .game-card:hover {
      transform: scale(1.02);
    }

    .game-card-image {
      aspect-ratio: 3 / 4;
      width: 100%;
      overflow: hidden;
      background-color: var(--secondary);
      position: relative;
    }

    .game-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .game-card:hover .game-card-img {
      transform: scale(1.1);
    }

    .game-card-badges {
      position: absolute;
      left: 0.5rem;
      top: 0.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .badge {
      padding: 0.125rem 0.375rem;
      border-radius: 0.25rem;
      font-size: 0.625rem;
      font-weight: 600;
    }

    @media (min-width: 640px) {
      .badge {
        padding: 0.125rem 0.5rem;
        font-size: 0.75rem;
      }
    }

    .badge-new {
      background-color: var(--neon);
      color: var(--casino-darker);
    }

    .badge-hot {
      background-color: var(--destructive);
      color: white;
    }

    .badge-jackpot {
      background-color: var(--gold);
      color: var(--casino-darker);
    }

    .game-card-favorite {
      position: absolute;
      right: 0.25rem;
      top: 0.25rem;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: rgba(15, 10, 26, 0.8);
      color: var(--muted-foreground);
      backdrop-filter: blur(8px);
      transition: color 0.2s;
    }

    @media (min-width: 640px) {
      .game-card-favorite {
        right: 0.5rem;
        top: 0.5rem;
        width: 32px;
        height: 32px;
      }
    }

    .game-card-favorite:hover,
    .game-card-favorite.active {
      color: var(--destructive);
    }

    .game-card-favorite.active svg {
      fill: var(--destructive);
    }

    .game-card-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: rgba(15, 10, 26, 0.9);
      backdrop-filter: blur(8px);
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }

    .game-card:hover .game-card-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .game-card-info {
      padding: 0.5rem;
    }

    @media (min-width: 640px) {
      .game-card-info {
        padding: 0.75rem;
      }
    }

    .game-card-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--foreground);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    @media (min-width: 640px) {
      .game-card-title {
        font-size: 0.875rem;
      }
    }

    .game-card-provider {
      font-size: 0.625rem;
      color: var(--muted-foreground);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    @media (min-width: 640px) {
      .game-card-provider {
        font-size: 0.75rem;
      }
    }

    .load-more-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }

    .load-more-btn {
      min-width: 200px;
    }

    /* Promo Banner */
    .promo-section {
      background-color: var(--background);
      padding: 2rem 0;
    }

    .promo-banner {
      overflow: hidden;
      border-radius: 1rem;
      position: relative;
    }

    .promo-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .promo-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(26, 18, 40, 0.95), rgba(26, 18, 40, 0.7), rgba(26, 18, 40, 0.5));
    }

    .promo-inner {
      display: grid;
      gap: 1.5rem;
      padding: 1.5rem;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .promo-inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
      }
    }

    @media (min-width: 1024px) {
      .promo-inner {
        padding: 2.5rem;
      }
    }

    .promo-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background-color: rgba(212, 168, 67, 0.2);
      color: var(--gold);
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .promo-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .promo-title {
        font-size: 1.875rem;
      }
    }

    @media (min-width: 1024px) {
      .promo-title {
        font-size: 2.25rem;
      }
    }

    .promo-description {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .promo-stats {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .promo-stat {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .promo-stat svg.neon {
      color: var(--neon);
    }

    .promo-stat svg.gold {
      color: var(--gold);
    }

    .promo-visual {
      display: none;
    }

    @media (min-width: 768px) {
      .promo-visual {
        display: block;
      }
    }

    .promo-visual-inner {
      position: relative;
      max-width: 320px;
      margin: 0 auto;
    }

    .promo-visual-glow {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background-color: rgba(212, 168, 67, 0.2);
      filter: blur(48px);
    }

    .promo-visual-box {
      position: relative;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background-color: rgba(26, 18, 40, 0.5);
      backdrop-filter: blur(8px);
      text-align: center;
    }

    .promo-visual-percent {
      font-size: 3rem;
      font-weight: 700;
      color: var(--gold);
    }

    .promo-visual-label {
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    .promo-visual-fs {
      margin-top: 0.5rem;
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--neon);
    }

    /* Live Casino Section */
    .live-casino-section {
      background-color: var(--casino-darker);
      padding: 3rem 0;
    }

    .live-casino-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .live-indicator {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .live-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--destructive);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .live-text {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--destructive);
    }

    .live-casino-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
    }

    @media (min-width: 768px) {
      .live-casino-title {
        font-size: 1.875rem;
      }
    }

    .live-casino-grid {
      display: grid;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .live-casino-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .live-casino-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .live-game-card {
      position: relative;
      overflow: hidden;
      border-radius: 0.75rem;
      background-color: var(--card);
      transition: transform 0.2s;
    }

    .live-game-card:hover {
      transform: scale(1.02);
    }

    .live-game-preview {
      position: relative;
      aspect-ratio: 16 / 9;
      background-color: var(--secondary);
    }

    .live-game-badge {
      position: absolute;
      left: 0.5rem;
      top: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.125rem 0.5rem;
      border-radius: 0.25rem;
      background-color: var(--destructive);
      font-size: 0.75rem;
      font-weight: 600;
      color: white;
    }

    .live-game-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: white;
      animation: pulse 2s infinite;
    }

    .live-game-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(15, 10, 26, 0.6);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .live-game-card:hover .live-game-overlay {
      opacity: 1;
    }

    .live-game-info {
      padding: 1rem;
    }

    .live-game-type {
      font-size: 0.75rem;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }

    .live-game-title {
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.5rem;
    }

    .live-game-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .live-game-players {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .live-game-dealer {
      margin-top: 0.5rem;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .view-all-mobile {
      display: block;
      margin-top: 1.5rem;
    }

    .view-all-mobile .btn {
      width: 100%;
    }

    @media (min-width: 640px) {
      .view-all-mobile {
        display: none;
      }
    }

    .view-all-desktop {
      display: none;
    }

    @media (min-width: 640px) {
      .view-all-desktop {
        display: inline-flex;
      }
    }

    /* SEO Content */
    .seo-section {
      padding: 3rem 1rem;
    }

    @media (min-width: 768px) {
      .seo-section {
        padding: 3rem 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .seo-section {
        padding: 3rem 2rem;
      }
    }

    .seo-container {
      max-width: 72rem;
      margin: 0 auto;
    }

    .seo-content-wrapper {
      position: relative;
    }

    .seo-content {
      position: relative;
      overflow: hidden;
      transition: max-height 0.5s ease-in-out;
    }

    .seo-content.expanded {
      max-height: 3000px;
    }

    .seo-content-inner {
      color: #ffffff;
    }

    .seo-content-inner > div {
      margin-bottom: 1.5rem;
    }

    .seo-content h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .seo-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }

    .seo-content p {
      line-height: 1.75;
    }

    .seo-fade {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 128px;
      background: linear-gradient(to top, var(--background), transparent);
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .seo-content.expanded + .seo-fade {
      opacity: 0;
    }

    .seo-toggle-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 0.5rem;
    }

    .seo-content.expanded ~ .seo-toggle-wrapper {
      margin-top: 1.5rem;
    }

    .seo-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    .seo-toggle:hover {
      color: var(--foreground);
    }

    .seo-toggle svg {
      transition: transform 0.3s;
    }

    .seo-toggle.expanded svg {
      transform: rotate(180deg);
    }

    /* Payment Methods */
    .payment-section {
      border-top: 1px solid var(--border);
      background-color: var(--background);
      padding: 2rem 0;
    }

    .payment-title {
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .payment-methods {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .payment-method {
      width: 64px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background-color: var(--secondary);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--muted-foreground);
      transition: all 0.2s;
    }

    .payment-method:hover {
      background-color: rgba(37, 26, 56, 0.8);
      color: var(--foreground);
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--border);
      background-color: var(--casino-darker);
    }

    .footer-features {
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 0;
    }

    .footer-features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .footer-features-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .footer-feature {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .footer-feature svg {
      color: var(--gold);
    }

    .footer-main {
      padding: 3rem 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .footer-grid > div:first-child {
      grid-column: span 2;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
      
      .footer-grid > div:first-child {
        grid-column: span 4;
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
      }
      
      .footer-grid > div:first-child {
        grid-column: span 1;
      }
    }

    .footer-brand {
      margin-bottom: 1rem;
    }

    .footer-brand-text {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .footer-links-title {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--foreground);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      margin-top: 3rem;
    }

    .footer-licenses {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-align: center;
    }

    .footer-license {
      width: 80px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.5rem;
      background-color: var(--secondary);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--muted-foreground);
    }

    .footer-disclaimer {
      margin-top: 2rem;
      text-align: center;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .footer-disclaimer p {
      margin-bottom: 1rem;
    }

    /* Icon SVGs */
    .icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .icon-sm {
      width: 12px;
      height: 12px;
    }

    .icon-lg {
      width: 20px;
      height: 20px;
    }

    /* Стилі для динамічного контенту */
.seo-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
}

.seo-content-inner th, 
.seo-content-inner td {
  padding: 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
}

.seo-content-inner th {
  background-color: var(--secondary);
  color: var(--foreground);
}

.seo-content-inner ul, 
.seo-content-inner ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #ffffff;
}

.seo-content-inner ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.seo-content-inner ol li {
  list-style-type: decimal;
  margin-bottom: 0.5rem;
}

.seo-content-inner p {
  margin-bottom: 0.5rem;
}
/* Універсальне навігаційне меню */
.nav-menu {
  display: none; /* Сховано за замовчуванням на мобілці */
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: #10102d;
  flex-direction: column;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-menu.open {
  display: flex; /* Показуємо при кліку на бургер */
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex; /* Завжди показуємо на ПК */
    position: static;
    flex-direction: row;
    width: auto;
    background: transparent;
    padding: 0;
    border: none;
    gap: 0.25rem;
  }
}
/* Базові стилі для мобілки (приховане меню) */
.nav-menu {
    display: none;
    position: absolute;
    top: 64px; /* Висота вашого хедеру */
    left: 0;
    width: 100%;
    background-color: #10102d;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

/* Стан меню, коли воно відкрите на мобілці */
.nav-menu.open {
    display: flex;
}

/* Стилі для іконок кнопки */
.mobile-menu-toggle .close-icon {
    display: none; /* Хрестик сховано за замовчуванням */
}

.mobile-menu-toggle.open .menu-icon {
    display: none; /* Ховаємо гамбургер, коли відкриваємо */
}

.mobile-menu-toggle.open .close-icon {
    display: block; /* Показуємо хрестик */
}

/* Десктоп стиль (для екранів > 1024px) */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none; /* Ховаємо кнопку на ПК */
    }

    .nav-menu {
        display: flex; /* Показуємо меню на ПК */
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.25rem;
    }
}

.header-inner {
  display: flex;
  height: 64px;
  align-items: center;
  /* Це основна команда, яка розсуває елементи по краях */
  justify-content: space-between; 
}

/* Якщо кнопка знаходиться всередині іншого контейнера, 
   переконайтеся, що сам хедер має flex */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
    /* Game placeholder colors */
    .game-bg-1 { background-color: hsl(280, 50%, 25%); }
    .game-bg-2 { background-color: hsl(200, 50%, 25%); }
    .game-bg-3 { background-color: hsl(340, 50%, 25%); }
    .game-bg-4 { background-color: hsl(120, 50%, 25%); }
    .game-bg-5 { background-color: hsl(40, 50%, 25%); }
    .game-bg-6 { background-color: hsl(180, 50%, 25%); }
    .game-bg-7 { background-color: hsl(260, 50%, 25%); }
    .game-bg-8 { background-color: hsl(20, 50%, 25%); }
    .game-bg-9 { background-color: hsl(300, 50%, 25%); }
    .game-bg-10 { background-color: hsl(160, 50%, 25%); }

    .live-bg-1 { background-color: hsl(0, 40%, 20%); }
    .live-bg-2 { background-color: hsl(60, 40%, 20%); }
    .live-bg-3 { background-color: hsl(120, 40%, 20%); }
    .live-bg-4 { background-color: hsl(180, 40%, 20%); }

    /* 1. Загальний контейнер */
.seo-section {
    width: 100%;
    overflow-x: hidden;
}

/* 2. Стилі для таблиць */
.seo-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    /* На десктопах таблиця поводиться як зазвичай */
    display: table; 
}

/* 3. Адаптивність ТІЛЬКИ для мобілок (до 768px) */
@media screen and (max-width: 768px) {
    .seo-section table {
        display: block; /* Вмикаємо блок для скролу */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* 4. Оформлення комірок */
.seo-section table th, 
.seo-section table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    /* Щоб текст не злипався на мобілці при скролі */
    min-width: 100px; 
}

/* Опціонально: заголовок не розривається на десктопі */
.seo-section table th {
 
    white-space: nowrap;
}