  :root {
      --bg-dark: #0f1115;
      --bg-card: #1a1d24;
      --bg-nav: rgba(15, 17, 21, 0.95);
      --primary: #8a2be2;
      --accent: #00d4ff;
      --text-light: #ffffff;
      --text-gray: #b3b3b3;
      --font-head: 'Montserrat', sans-serif;
      --font-body: 'Open Sans', sans-serif;
      --transition: all 0.3s ease;
  }

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

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

  h1,
  h2,
  h3,
  h4 {
      font-family: var(--font-head);
      font-weight: 700;
      color: var(--text-light);
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
  }

  ul {
      list-style: none;
  }

  img {
      max-width: 100%;
      display: block;
  }

  section {
      padding: 80px 20px;
  }


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

  .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      font-size: 0.9rem;
      transition: var(--transition);
  }

  .btn-primary {
      background: linear-gradient(45deg, var(--primary), var(--accent));
      color: #fff;
      box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
  }

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

  .btn-outline:hover {
      background: var(--accent);
      color: var(--bg-dark);
  }

  .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .section-title span {
      color: var(--accent);
  }

  .section-subtitle {
      text-align: center;
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto 50px auto;
  }


  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: var(--bg-nav);
      z-index: 1000;
      padding: 15px 0;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 800;
      font-family: var(--font-head);
      text-transform: uppercase;
      background: linear-gradient(to right, var(--accent), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .nav-menu {
      display: flex;
      gap: 25px;
  }

  .nav-link {
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
  }

  .nav-link:hover {
      color: var(--accent);
  }

  .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
  }


  #inicio {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(rgba(15, 17, 21, 0.7), rgba(15, 17, 21, 0.9)), url('../img/hero.png');
      background-size: cover;
      background-position: center;
      padding-top: 80px;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #ddd;
  }


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

  .about-text i {
      color: var(--accent);
      margin-right: 10px;
  }

  .about-list li {
      margin-bottom: 10px;
      color: var(--text-gray);
  }

  .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      text-align: center;
  }

  .step-card {
      background: var(--bg-card);
      padding: 30px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: var(--transition);
  }

  .step-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
  }

  .step-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 20px;
  }


  .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 30px;
  }

  .game-card {
      background: var(--bg-card);
      border-radius: 15px;
      overflow: hidden;
      transition: var(--transition);
      position: relative;
  }

  .game-card:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

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

  .game-info {
      padding: 20px;
      text-align: center;
  }

  .game-info h3 {
      margin-bottom: 10px;
      color: var(--text-light);
  }

  .game-info p {
      font-size: 0.9rem;
      color: var(--text-gray);
      margin-bottom: 20px;
  }


  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
  }

  .feature-icon {
      font-size: 2rem;
      color: var(--accent);
      min-width: 50px;
      text-align: center;
  }


  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .review-card {
      background: var(--bg-card);
      padding: 30px;
      border-radius: 10px;
      border-left: 4px solid var(--primary);
  }

  .review-author {
      margin-top: 15px;
      font-weight: bold;
      color: var(--accent);
  }


  .faq-item {
      background: var(--bg-card);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
  }

  .faq-question {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
  }

  .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      color: var(--text-gray);
  }

  .faq-item.active .faq-answer {
      padding-bottom: 20px;
      max-height: 200px;
  }

  .faq-item.active .faq-question i {
      transform: rotate(180deg);
  }


  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
      width: 100%;
      padding: 15px;
      margin-bottom: 15px;
      background: var(--bg-card);
      border: 1px solid #333;
      border-radius: 5px;
      color: #fff;
      font-family: var(--font-body);
  }

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

  .contact-info-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 1.1rem;
  }


  .responsible-block {
      background: #151515;
      text-align: center;
      border-top: 2px solid var(--primary);
  }

  .disclaimer-18 {
      display: inline-block;
      border: 2px solid #ff4444;
      color: #ff4444;
      padding: 5px 10px;
      border-radius: 50%;
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 1.5rem;
  }

  footer {
      background: #000;
      padding: 40px 20px;
      text-align: center;
      font-size: 0.9rem;
      color: #777;
  }

  .footer-links {
      margin-bottom: 20px;
  }

  .footer-links a {
      margin: 0 10px;
      color: #aaa;
  }

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


  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
  }

  .modal-content {
      background: var(--bg-card);
      padding: 30px;
      border-radius: 15px;
      max-width: 800px;
      width: 90%;
      position: relative;
      text-align: center;
  }

  .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2rem;
      cursor: pointer;
      color: #fff;
  }

  .game-iframe-container {
      width: 100%;
      height: 450px;
      background: #000;
      margin-top: 20px;
  }

  iframe {
      width: 100%;
      height: 100%;
      border: none;
  }


  #age-gate {
      z-index: 9999;
      background: #000;
  }

  .age-gate-box {
      max-width: 500px;
      text-align: center;
  }


  #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(20, 20, 20, 0.95);
      padding: 20px;
      display: none;
      justify-content: center;
      align-items: center;
      gap: 20px;
      z-index: 1500;
      border-top: 1px solid #333;
      flex-wrap: wrap;
  }

  .cookie-options {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      border-bottom: 1px solid #333;
      padding-bottom: 10px;
  }


  .switch {
      position: relative;
      display: inline-block;
      width: 40px;
      height: 20px;
  }

  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 34px;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 14px;
      width: 14px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
  }

  input:checked+.slider {
      background-color: var(--primary);
  }

  input:checked+.slider:before {
      transform: translateX(20px);
  }

  input:disabled+.slider {
      background-color: #555;
      cursor: not-allowed;
  }


  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2.5rem;
      }

      .nav-menu {
          position: fixed;
          top: 70px;
          left: -100%;
          flex-direction: column;
          background: var(--bg-nav);
          width: 100%;
          text-align: center;
          padding: 20px;
          transition: 0.3s;
      }

      .nav-menu.active {
          left: 0;
      }

      .hamburger {
          display: block;
      }

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

  .footer-legal {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin: 35px auto;

  }

  .footer-legal img {
      height: 60px;
      margin: 10px;
  }

  .page {
      padding: 120px 0 40px;
  }

  .page h1 {
      font-family: var(--font-head);
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 10px;
  }

  .page .last-updated {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-style: italic;
  }

  .page h2 {
      font-family: var(--font-head);
      color: #fff;
      margin-top: 40px;
      margin-bottom: 20px;
      font-size: 1.5rem;
      border-left: 4px solid var(--primary);
      padding-left: 15px;
  }

  .page h3 {
      font-family: var(--font-head);
      color: #fff;
      margin-top: 25px;
      margin-bottom: 15px;
      font-size: 1.2rem;
  }

  .page p {
      margin-bottom: 20px;
      color: var(--text-light);
      text-align: justify;
  }

  .page ul {
      margin-bottom: 20px;
      padding-left: 20px;
  }

  .page li {
      margin-bottom: 10px;
      color: var(--text-muted);
  }

  .page strong {
      color: #fff;
  }

  .page a {
      color: var(--accent);
      text-decoration: none;
      transition: 0.3s;
  }

  .page a:hover {
      color: var(--primary);
  }

  .page .legal-box {
      background: var(--bg-card);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      margin: 30px 0;
  }

  .page .contact-email {
      color: var(--accent);
      font-weight: bold;
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      background: var(--bg-card);
      border-radius: 8px;
      overflow: hidden;
      font-size: 0.9rem;
  }

  .cookie-table th,
  .cookie-table td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .cookie-table th {
      background-color: rgba(138, 43, 226, 0.1);
      color: var(--accent);
      text-transform: uppercase;
      font-weight: 700;
  }

  .cookie-table tr:last-child td {
      border-bottom: none;
  }

  .cookie-table td strong {
      color: #fff;
  }

  @media (max-width: 768px) {
      .cookie-table {
          display: block;
          overflow-x: auto;
      }
  }

  .resources-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
  }

  .resource-card {
      background: var(--bg-card);
      padding: 20px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
  }

  .resource-card h4 {
      color: #fff;
      margin-bottom: 10px;
  }

  .resource-card p {
      font-size: 0.9rem;
      margin-bottom: 15px;
  }

  @media (max-width: 768px) {
      .info-box {
          flex-direction: column;
          text-align: center;
          align-items: center;
      }
  }