  :root {
      --primary: #4a6baf;
      --primary-light: #6a8bcf;
      --primary-dark: #2a4b8f;
      --secondary: #8a6baf;
      --accent: #f39c12;
      --light: #f8f9fa;
      --dark: #343a40;
      --gray: #6c757d;
      --gray-light: #e9ecef;
      --success: #28a745;
      --danger: #dc3545;
      --border-radius: 8px;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
  }

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

  body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--light);
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      margin-bottom: 1rem;
      line-height: 1.2;
  }

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


  header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: var(--transition);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
  }

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

  .logo h1 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 0;
  }

  .logo span {
      font-size: 0.9rem;
      color: var(--gray);
      margin-left: 10px;
      font-weight: 400;
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav li {
      margin-left: 25px;
  }

  nav a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
  }

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

  nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: var(--transition);
  }

  nav a:hover::after {
      width: 100%;
  }

  a {
      text-decoration: none;
  }

  .header-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: var(--border-radius);
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
  }

  .header-btn:hover {
      background-color: var(--primary-dark);
  }

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


  .hero {
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
      color: white;
      padding: 150px 0 100px;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
  }

  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('../img/hero.png') no-repeat;
      background-size: cover;
  }

  .hero-content {
      position: relative;
      z-index: 1;
      max-width: 600px;
  }

  .hero h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      color: white;
  }

  .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
  }

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

  .btn {
      display: inline-block;
      padding: 12px 30px;
      border-radius: var(--border-radius);
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      font-size: 1rem;
  }

  .btn-primary {
      background-color: var(--accent);
      color: white;
  }

  .btn-primary:hover {
      background-color: #e67e22;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary {
      background-color: transparent;
      color: white;
      border: 2px solid white;
  }

  .btn-secondary:hover {
      background-color: white;
      color: var(--primary);
  }


  .section {
      padding: 80px 0;
  }

  .section-title {
      text-align: center;
      margin-bottom: 3rem;
  }

  .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      position: relative;
      display: inline-block;
  }

  .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent);
      border-radius: 2px;
  }

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

  .highlight-card {
      background-color: white;
      border-radius: var(--border-radius);
      padding: 30px;
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
  }

  .highlight-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

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

  .highlight-card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
  }


  .steps {
      background-color: var(--gray-light);
  }

  .steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
  }

  .step {
      flex: 1;
      min-width: 250px;
      max-width: 300px;
      text-align: center;
      position: relative;
  }

  .step-number {
      width: 50px;
      height: 50px;
      background-color: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 20px;
  }

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

  .step h3 {
      margin-bottom: 15px;
  }

  .info-box {
      background-color: white;
      border-left: 4px solid var(--accent);
      padding: 20px;
      margin-top: 40px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
  }


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

  .game-card {
      background-color: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
  }

  .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .game-image {
      background-color: var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 1.2rem;
  }

  .game-image img {
      width: 100%;
  }

  .game-content {
      padding: 20px;
  }

  .game-content h3 {
      margin-bottom: 10px;
  }

  .game-btn {
      width: 100%;
      margin-top: 15px;
  }


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

  .community-card {
      text-align: center;
      padding: 30px 20px;
  }

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


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

  .faq-item {
      margin-bottom: 15px;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .faq-question {
      background-color: white;
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
  }

  .faq-question:hover {
      background-color: var(--gray-light);
  }

  .faq-question h3 {
      margin-bottom: 0;
      font-size: 1.2rem;
  }

  .faq-icon {
      transition: var(--transition);
  }

  .faq-answer {
      background-color: white;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: var(--transition);
  }

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

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


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

  .contact-info {
      background-color: white;
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
  }

  .contact-details {
      margin-top: 20px;
  }

  .contact-detail {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }

  .contact-detail i {
      width: 30px;
      color: var(--primary);
      font-size: 1.2rem;
  }

  .contact-form {
      background-color: white;
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
  }

  .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid var(--gray-light);
      border-radius: var(--border-radius);
      font-family: 'Roboto', sans-serif;
      transition: var(--transition);
  }

  .form-control:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(74, 107, 175, 0.2);
  }

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

  .form-message {
      margin-top: 15px;
      padding: 10px;
      border-radius: var(--border-radius);
      display: none;
  }

  .form-message.success {
      background-color: rgba(40, 167, 69, 0.1);
      color: var(--success);
      border: 1px solid var(--success);
  }

  .form-message.error {
      background-color: rgba(220, 53, 69, 0.1);
      color: var(--danger);
      border: 1px solid var(--danger);
  }


  .responsibility {
      background-color: var(--gray-light);
  }

  .responsibility-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
  }

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

  .responsibility-list {
      text-align: left;
      max-width: 600px;
      margin: 30px auto;
  }

  .responsibility-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
  }

  .responsibility-list i {
      color: var(--accent);
      margin-right: 10px;
      margin-top: 5px;
  }


  footer {
      background-color: var(--dark);
      color: white;
      padding: 60px 0 30px;
  }

  .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
  }

  .footer-logo h2 {
      color: white;
      margin-bottom: 10px;
  }

  .footer-logo p {
      opacity: 0.8;
  }

  .footer-links h3 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.2rem;
  }

  .footer-links ul {
      list-style: none;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
  }

  .footer-links a:hover {
      color: white;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 30px;
      text-align: center;
  }

  .disclaimer {
      max-width: 800px;
      margin: 0 auto 20px;
      font-size: 0.9rem;
      opacity: 0.8;
  }

  .copyright {
      font-size: 0.9rem;
      opacity: 0.7;
  }


  .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 20px;
  }

  .modal-content {
      background-color: white;
      border-radius: var(--border-radius);
      width: 100%;
      max-width: 900px;
      max-height: 90vh;
      overflow: auto;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .modal-header {
      padding: 20px;
      border-bottom: 1px solid var(--gray-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .modal-header h3 {
      margin-bottom: 0;
  }

  .close-modal {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--gray);
      transition: var(--transition);
  }

  .close-modal:hover {
      color: var(--dark);
  }

  .modal-body {
      padding: 20px;
  }

  .game-frame {
      width: 100%;
      height: 500px;
      background-color: var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 1.2rem;
      border-radius: var(--border-radius);
  }


  .age-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
  }

  .age-content {
      background-color: white;
      border-radius: var(--border-radius);
      padding: 40px;
      text-align: center;
      max-width: 500px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

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

  .age-content h2 {
      margin-bottom: 20px;
  }

  .age-content p {
      margin-bottom: 30px;
  }

  .age-btns {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
  }


  .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: var(--dark);
      color: white;
      padding: 20px;
      z-index: 1000;
      display: none;
  }

  .cookie-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 15px;
  }

  .cookie-text {
      flex: 1;
      min-width: 300px;
  }

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

  .cookie-btn {
      padding: 8px 20px;
      border-radius: var(--border-radius);
      border: none;
      cursor: pointer;
      font-weight: 500;
      transition: var(--transition);
  }

  .cookie-btn.accept {
      background-color: var(--primary);
      color: white;
  }

  .cookie-btn.accept:hover {
      background-color: var(--primary-dark);
  }

  .cookie-btn.more {
      background-color: transparent;
      color: white;
      border: 1px solid white;
  }

  .cookie-btn.more:hover {
      background-color: white;
      color: var(--dark);
  }


  @media (max-width: 992px) {
      .hero h2 {
          font-size: 2.5rem;
      }

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

  @media (max-width: 768px) {
      .header-container {
          flex-wrap: wrap;
      }

      nav {
          width: 100%;
          order: 3;
          margin-top: 15px;
          display: none;
      }

      nav ul {
          flex-direction: column;
          gap: 10px;
      }

      nav li {
          margin-left: 0;
      }

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

      .hero h2 {
          font-size: 2rem;
      }

      .hero-btns {
          flex-direction: column;
      }

      .btn {
          width: 100%;
          text-align: center;
      }

      .header-btn {
          margin-left: auto;
      }

      .age-btns {
          flex-direction: column;
      }

      .cookie-content {
          flex-direction: column;
          text-align: center;
      }

      .cookie-btns {
          width: 100%;
          justify-content: center;
      }
  }

  @media (max-width: 576px) {
      .hero {
          padding: 120px 0 80px;
      }

      .section {
          padding: 60px 0;
      }

      .modal-body {
          padding: 15px;
      }

      .game-frame {
          height: 300px;
      }
  }

  .game-frame {
      width: 100%;
      height: 500px;
      border: none;
      border-radius: var(--border-radius);
  }

  .game-frame {
      width: 100%;
      height: 500px;
  }

  @media (max-width: 768px) {
      .game-frame {
          height: 400px;
      }
  }

  @media (max-width: 576px) {
      .game-frame {
          height: 300px;
      }
  }

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

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

  .page-header {
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
      color: white;
      padding: 150px 0 80px;
      margin-top: 70px;
      text-align: center;
  }

  .page-header h1 {
      font-size: 2.5rem;
      color: white;
      margin-bottom: 1rem;
  }

  .page-header p {
      font-size: 1.2rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
  }

  .content-section {
      padding: 80px 0;
  }

  .content-container {
      max-width: 900px;
      margin: 0 auto;
  }

  .content-block {
      background-color: white;
      border-radius: var(--border-radius);
      padding: 40px;
      box-shadow: var(--shadow);
      margin-bottom: 40px;
  }

  .content-block h2 {
      color: var(--primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--gray-light);
  }

  .content-block h3 {
      color: var(--primary);
      margin-top: 25px;
      margin-bottom: 15px;
  }

  .content-block p {
      margin-bottom: 15px;
  }

  .content-block ul,
  .content-block ol {
      margin-left: 20px;
      margin-bottom: 20px;
  }

  .content-block li {
      margin-bottom: 10px;
  }

  .highlight-box {
      background-color: rgba(74, 107, 175, 0.1);
      border-left: 4px solid var(--primary);
      padding: 20px;
      margin: 25px 0;
      border-radius: var(--border-radius);
  }


  @media (max-width: 768px) {
      .header-container {
          flex-wrap: wrap;
      }

      nav {
          width: 100%;
          order: 3;
          margin-top: 15px;
          display: none;
      }

      nav ul {
          flex-direction: column;
          gap: 10px;
      }

      nav li {
          margin-left: 0;
      }

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

      .page-header h1 {
          font-size: 2rem;
      }

      .page-header p {
          font-size: 1rem;
      }

      .content-block {
          padding: 25px;
      }
  }

  @media (max-width: 576px) {


      .content-section {
          padding: 60px 0;
      }
  }

  .highlight-box {
      background-color: rgba(74, 107, 175, 0.1);
      border-left: 4px solid var(--primary);
      padding: 20px;
      margin: 25px 0;
      border-radius: var(--border-radius);
  }

  .warning-box {
      background-color: rgba(220, 53, 69, 0.1);
      border-left: 4px solid var(--danger);
      padding: 20px;
      margin: 25px 0;
      border-radius: var(--border-radius);
  }

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

  .tip-card {
      background-color: rgba(243, 156, 18, 0.1);
      border-radius: var(--border-radius);
      padding: 25px;
      text-align: center;
      transition: var(--transition);
  }

  .tip-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  .tip-icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 15px;
  }

  .resource-list {
      margin: 30px 0;
  }

  .resource-item {
      background-color: var(--gray-light);
      border-radius: var(--border-radius);
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
  }

  .resource-icon {
      font-size: 1.8rem;
      color: var(--primary);
      margin-right: 15px;
      width: 50px;
      text-align: center;
  }

  .resource-content {
      flex: 1;
  }

  .resource-content h4 {
      margin-bottom: 5px;
      color: var(--primary);
  }

  .resource-link {
      display: inline-block;
      margin-top: 10px;
      color: var(--primary);
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
  }

  .resource-link:hover {
      color: var(--primary-dark);
      text-decoration: underline;
  }  .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .cookie-table th, .cookie-table td {
            border: 1px solid var(--gray-light);
            padding: 15px;
            text-align: left;
        }

        .cookie-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }

        .cookie-table tr:nth-child(even) {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .cookie-table tr:hover {
            background-color: rgba(74, 107, 175, 0.05);
        }

        .cookie-category {
            display: flex;
            align-items: center;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray-light);
        }

        .cookie-category i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
        }

        .cookie-category h3 {
            margin-bottom: 0;
        }

        .cookie-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }