  :root {
      --bg-dark: #0f172a;
      --bg-card: #1e293b;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --accent-primary: #3b82f6;
      --accent-hover: #2563eb;
      --danger-red: #ef4444;
      --transition: all 0.3s ease;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
  }

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

  ul {
      list-style: none;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  section {
      padding: 100px 0;
  }

  .section-title {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 1rem;
      font-weight: 700;
  }

  .section-subtitle {
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .btn {
      display: inline-block;
      background-color: var(--accent-primary);
      color: #fff;
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      text-align: center;
  }

  .btn:hover {
      background-color: var(--accent-hover);
      transform: translateY(-2px);
  }

  .btn-outline {
      background-color: transparent;
      border: 2px solid var(--accent-primary);
      color: var(--accent-primary);
  }

  .btn-outline:hover {
      background-color: var(--accent-primary);
      color: #fff;
  }


  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }


  header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 1px;
  }

  .logo span {
      color: var(--accent-primary);
  }

  .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
  }

  .nav-links a {
      font-size: 0.95rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .nav-links a:hover {
      color: var(--accent-primary);
  }

  .mobile-menu-btn {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-main);
  }


  .hero {
      padding-top: 150px;
      padding-bottom: 100px;
      min-height: 100vh;
      display: flex;
      align-items: center;
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .hero-text h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
  }

  .hero-text p {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
  }

  .hero-img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }


  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .about-img {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }


  .games-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 2rem;
  }

  .game-card {
      background-color: var(--bg-card);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
  }

  .game-card:hover {
      transform: translateY(-5px);
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .game-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
  }

  .game-info {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .game-info h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }

  .game-info p {
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      flex-grow: 1;
  }

  .game-frame-placeholder {
      width: 100%;
      height: 150px;
      background-color: rgba(0, 0, 0, 0.2);
      border: 1px dashed rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
  }


  .benefits {
      background-color: var(--bg-card);
  }

  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
  }

  .benefit-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
      background-color: var(--bg-dark);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .benefit-card i {
      font-size: 2.5rem;
      color: var(--accent-primary);
      margin-bottom: 1.5rem;
  }

  .benefit-card h3 {
      margin-bottom: 1rem;
  }

  .benefit-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
  }


  .safety-content {
      background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 4rem;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
  }

  .safety-icon {
      font-size: 3rem;
      color: #10b981;
      margin-bottom: 1.5rem;
  }


  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
  }

  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 1rem;
      background-color: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      color: var(--text-main);
      font-size: 1rem;
      transition: var(--transition);
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--accent-primary);
  }

  .form-group textarea {
      height: 150px;
      resize: vertical;
  }

  .contact-info {
      background-color: var(--bg-card);
      padding: 3rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .contact-info h3 {
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
  }

  .info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
  }

  .info-item i {
      color: var(--accent-primary);
      font-size: 1.2rem;
      margin-top: 4px;
  }

  .info-item p {
      color: var(--text-muted);
  }


  .faq {
      background-color: var(--bg-card);
  }

  .faq-container {
      max-width: 800px;
      margin: 0 auto;
  }

  .accordion {
      background-color: var(--bg-dark);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      margin-bottom: 1rem;
      overflow: hidden;
  }

  .accordion-header {
      width: 100%;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      text-align: left;
  }

  .accordion-header i {
      transition: transform 0.3s ease;
  }

  .accordion-header.active i {
      transform: rotate(180deg);
  }

  .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background-color: var(--bg-dark);
  }

  .accordion-content {
      padding: 0 1.5rem 1.5rem 1.5rem;
      color: var(--text-muted);
  }


  footer {
      background-color: #080b12;
      padding: 4rem 0 2rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
  }

  .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
  }

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

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

  .footer-disclaimer {
      color: #64748b;
      font-size: 0.85rem;
      max-width: 800px;
      line-height: 1.8;
  }

  .badge-19 {
      background-color: var(--danger-red);
      color: white;
      font-weight: 700;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 1.2rem;
      border: 3px solid #fff;
      box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
  }

  .footer-bottom {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-muted);
      font-size: 0.85rem;
  }


  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .modal-box {
      background-color: var(--bg-card);
      padding: 3rem;
      border-radius: 12px;
      text-align: center;
      max-width: 500px;
      width: 90%;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .modal-box h2 {
      margin-bottom: 1rem;
      font-size: 2rem;
  }

  .modal-box p {
      color: var(--text-muted);
      margin-bottom: 2rem;
  }

  .modal-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
  }

  .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--bg-card);
      padding: 1.5rem;
      z-index: 9998;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transform: translateY(100%);
      transition: transform 0.5s ease;
  }

  .cookie-banner.show {
      transform: translateY(0);
  }

  .cookie-text {
      color: var(--text-muted);
      font-size: 0.9rem;
      max-width: 800px;
  }


  @media (max-width: 992px) {

      .hero-grid,
      .about-grid,
      .contact-grid {
          grid-template-columns: 1fr;
      }

      .hero-text {
          text-align: center;
      }

      .benefits-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .nav-links {
          position: absolute;
          top: 80px;
          left: 0;
          width: 100%;
          background-color: var(--bg-card);
          flex-direction: column;
          padding: 2rem 0;
          gap: 1.5rem;
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
          display: none;
      }

      .nav-links.active {
          display: flex;
      }

      .mobile-menu-btn {
          display: block;
      }

      .games-grid,
      .benefits-grid {
          grid-template-columns: 1fr;
      }

      .hero-text h1 {
          font-size: 2.5rem;
      }

      .section-title {
          font-size: 2rem;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }

      .cookie-banner {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }
  }.legal-content {
            padding-top: 140px;
            padding-bottom: 100px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 4rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .policy-section {
            margin-bottom: 3rem;
            background-color: var(--bg-card);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #fff;
            border-bottom: 2px solid rgba(59, 130, 246, 0.3);
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .policy-section h3 {
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            color: #e2e8f0;
        }

        .policy-section p {
            color: var(--text-muted);
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }

        .policy-section ul {
            margin-bottom: 1.5rem;
            margin-left: 1.5rem;
            color: var(--text-muted);
        }

        .policy-section li {
            margin-bottom: 0.5rem;
        }

        .policy-section strong {
            color: var(--text-main);
        }@media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            .policy-section {
                padding: 1.5rem;
            }
           
        }