 :root {
     --bg-primary: #0B0F14;
     --bg-secondary: #111823;
     --bg-tertiary: #1A2230;
     --text-primary: #FFFFFF;
     --text-secondary: #A0AEC0;
     --accent: #4FD1C5;
     --accent-hover: #38B2AC;
     --border: #2D3748;
     --shadow: rgba(0, 0, 0, 0.3);
     --success: #48BB78;
     --warning: #ECC94B;
     --error: #F56565;
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
     background-color: var(--bg-primary);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
 }


 h1,
 h2,
 h3,
 h4 {
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
 }

 h1 {
     font-size: 2.5rem;
 }

 h2 {
     font-size: 2rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 p {
     margin-bottom: 1rem;
     color: var(--text-secondary);
 }

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

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


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

 section {
     padding: 5rem 0;
 }

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


 .btn {
     display: inline-block;
     padding: 0.75rem 1.5rem;
     border-radius: 0.5rem;
     font-weight: 600;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s ease;
     border: none;
     font-size: 1rem;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--accent), var(--accent-hover));
     color: white;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px var(--shadow);
 }

 .btn-secondary {
     background-color: transparent;
     color: var(--text-primary);
     border: 1px solid var(--border);
 }

 .btn-secondary:hover {
     background-color: var(--bg-tertiary);
 }

 .btn-small {
     padding: 0.5rem 1rem;
     font-size: 0.875rem;
 }


 .card {
     background-color: var(--bg-secondary);
     border-radius: 0.75rem;
     padding: 1.5rem;
     box-shadow: 0 4px 6px var(--shadow);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 15px var(--shadow);
 }


 header {
     background-color: var(--bg-secondary);
     position: sticky;
     top: 0;
     z-index: 100;
     box-shadow: 0 2px 10px var(--shadow);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 1.5rem;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-primary);
 }

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

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

 nav a {
     color: var(--text-secondary);
     font-weight: 500;
 }

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

 .nav-cta {
     margin-left: 1rem;
 }

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


 .hero {
     background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
     padding: 8rem 0;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 30% 20%, rgba(79, 209, 197, 0.1) 0%, transparent 50%);
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 3rem;
     margin-bottom: 1.5rem;
 }

 .hero p {
     font-size: 1.25rem;
     margin-bottom: 2.5rem;
     color: var(--text-secondary);
 }

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


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

 .step {
     text-align: center;
 }

 .step-icon {
     background: linear-gradient(135deg, var(--accent), var(--accent-hover));
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     font-size: 2rem;
     color: white;
 }


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

 .game-card {
     cursor: pointer;
     overflow: hidden;
 }

 .game-image {
     width: 100%;
     height: 180px;
     background-color: var(--bg-tertiary);
     border-radius: 0.5rem;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-secondary);
     font-size: 3rem;
 }

 .game-title {
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
 }


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

 .feature {
     text-align: center;
 }

 .feature-icon {
     font-size: 2.5rem;
     color: var(--accent);
     margin-bottom: 1rem;
 }


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

 .faq-item {
     margin-bottom: 1rem;
     border-radius: 0.5rem;
     overflow: hidden;
 }

 .faq-question {
     background-color: var(--bg-secondary);
     padding: 1.25rem;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s ease;
 }

 .faq-question:hover {
     background-color: var(--bg-tertiary);
 }

 .faq-answer {
     background-color: var(--bg-tertiary);
     padding: 0 1.25rem;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease, padding 0.3s ease;
 }

 .faq-answer.active {
     padding: 1.25rem;
     max-height: 500px;
 }


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

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }

 .contact-icon {
     font-size: 1.5rem;
     color: var(--accent);
     margin-top: 0.25rem;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
 }

 .form-control {
     width: 100%;
     padding: 0.75rem;
     background-color: var(--bg-secondary);
     border: 1px solid var(--border);
     border-radius: 0.5rem;
     color: var(--text-primary);
     font-size: 1rem;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--accent);
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 0.5rem;
 }

 .checkbox-group input {
     margin-top: 0.25rem;
 }

 .error-message {
     color: var(--error);
     font-size: 0.875rem;
     margin-top: 0.25rem;
     display: none;
 }


 footer {
     background-color: var(--bg-secondary);
     padding: 3rem 0 1.5rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     margin-bottom: 2rem;
 }

 .footer-logo {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .footer-links h4 {
     font-size: 1.125rem;
     margin-bottom: 1rem;
 }

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

 .footer-links li {
     margin-bottom: 0.5rem;
 }

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

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

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: var(--bg-tertiary);
     border-radius: 50%;
     color: var(--text-secondary);
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background-color: var(--accent);
     color: white;
     transform: translateY(-2px);
 }

 .footer-bottom {
     border-top: 1px solid var(--border);
     padding-top: 1.5rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .disclaimer {
     background-color: var(--bg-tertiary);
     padding: 1rem;
     border-radius: 0.5rem;
     margin-bottom: 1.5rem;
     font-size: 0.875rem;
     color: var(--text-secondary);
 }

 .age-badge {
     background-color: var(--accent);
     color: white;
     padding: 0.25rem 0.75rem;
     border-radius: 1rem;
     font-size: 0.75rem;
     font-weight: 700;
 }


 .legal-strip {
     background-color: var(--bg-tertiary);
     padding: 1rem 0;
     font-size: 0.875rem;
 }

 .legal-links {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
     justify-content: center;
 }


 .modal-overlay {
     position: fixed;
     top: 50%;
     transform: translateY(-50%);
     left: 0;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .modal-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .modal {
     background-color: var(--bg-secondary);
     border-radius: 0.75rem;
     width: 90%;
     max-width: 800px;
     max-height: 90vh;
     overflow: auto;
     position: relative;
     transform: scale(0.9);
     transition: transform 0.3s ease;
 }

 .modal-overlay.active .modal {
     transform: scale(1);
 }

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

 .modal-close {
     background: none;
     border: none;
     color: var(--text-secondary);
     font-size: 1.5rem;
     cursor: pointer;
     transition: color 0.3s ease;
 }

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

 .modal-body {
     padding: 1.5rem;
 }

 .game-iframe-container {
     position: relative;
     width: 100%;
     padding-top: 56.25%;
 }

 .game-iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
     border-radius: 0.5rem;
 }


 .age-gate {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--bg-primary);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2000;
     backdrop-filter: blur(10px);
 }

 .age-gate-content {
     background-color: var(--bg-secondary);
     border-radius: 0.75rem;
     padding: 2.5rem;
     text-align: center;
     max-width: 500px;
     width: 90%;
     box-shadow: 0 10px 25px var(--shadow);
 }

 .age-gate-icon {
     font-size: 3rem;
     color: var(--accent);
     margin-bottom: 1.5rem;
 }

 .age-gate-buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
     margin-top: 2rem;
 }


 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: var(--bg-secondary);
     padding: 1rem 1.5rem;
     box-shadow: 0 -2px 10px var(--shadow);
     z-index: 1500;
     transform: translateY(100%);
     transition: transform 0.3s ease;
 }

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

 .cookie-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 1rem;
 }

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

 .cookie-buttons {
     display: flex;
     gap: 1rem;
 }

 .cookie-settings {
     display: grid;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .cookie-setting {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem;
     background-color: var(--bg-tertiary);
     border-radius: 0.5rem;
 }

 .cookie-toggle {
     position: relative;
     display: inline-block;
     width: 50px;
     height: 24px;
 }

 .cookie-toggle input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .cookie-slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: var(--border);
     transition: .3s;
     border-radius: 24px;
 }

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

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

 input:checked+.cookie-slider:before {
     transform: translateX(26px);
 }

 input:disabled+.cookie-slider {
     opacity: 0.6;
     cursor: not-allowed;
 }


 @media (max-width: 768px) {
     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.75rem;
     }

     .hero {
         padding: 6rem 0;
     }

     .hero h1 {
         font-size: 2.25rem;
     }

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

     nav {
         position: fixed;
         top: 0;
         right: -100%;
         width: 280px;
         height: 100vh;
         background-color: var(--bg-secondary);
         padding: 2rem;
         transition: right 0.3s ease;
         z-index: 100;
         box-shadow: -5px 0 15px var(--shadow);
     }

     nav.active {
         right: 0;
     }

     nav ul {
         flex-direction: column;
         gap: 1.5rem;
         margin-top: 2rem;
     }

     .nav-cta {
         margin-left: 0;
         margin-top: 1rem;
     }

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

     .cookie-content {
         flex-direction: column;
         align-items: flex-start;
     }

     .cookie-buttons {
         width: 100%;
         justify-content: flex-end;
     }

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

 @media (max-width: 480px) {
     section {
         padding: 3rem 0;
     }

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

     .age-gate-buttons {
         flex-direction: column;
     }

     .cookie-buttons {
         flex-direction: column;
     }
 }

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

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

 .content-section {
     background-color: var(--bg-primary);
 }

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

 .content-card {
     background-color: var(--bg-secondary);
     border-radius: 0.75rem;
     padding: 2.5rem;
     box-shadow: 0 4px 6px var(--shadow);
     margin-bottom: 2rem;
 }

 .last-updated {
     color: var(--accent);
     font-size: 0.9rem;
     margin-bottom: 2rem;
     text-align: center;
 }

 .privacy-highlight {
     background-color: var(--bg-tertiary);
     border-left: 4px solid var(--accent);
     padding: 1.5rem;
     margin: 1.5rem 0;
     border-radius: 0 0.5rem 0.5rem 0;
 }

 .data-table {
     width: 100%;
     border-collapse: collapse;
     margin: 1.5rem 0;
 }

 .data-table th,
 .data-table td {
     padding: 1rem;
     text-align: left;
     border-bottom: 1px solid var(--border);
 }

 .data-table th {
     background-color: var(--bg-tertiary);
     color: var(--accent);
     font-weight: 600;
 }

 .data-table tr:hover {
     background-color: rgba(79, 209, 197, 0.05);
 }

 .cookie-types {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 1.5rem;
     margin: 2rem 0;
 }

 .cookie-card {
     background-color: var(--bg-tertiary);
     border-radius: 0.5rem;
     padding: 1.5rem;
     border-top: 4px solid var(--accent);
 }

 .cookie-icon {
     font-size: 2rem;
     color: var(--accent);
     margin-bottom: 1rem;
 }

 .cookie-required {
     background-color: rgba(72, 187, 120, 0.1);
     border-top-color: var(--success);
 }

 .cookie-optional {
     background-color: rgba(66, 153, 225, 0.1);
     border-top-color: var(--info);
 }

 .info-box {
     background-color: rgba(66, 153, 225, 0.1);
     border: 1px solid var(--info);
     border-radius: 0.5rem;
     padding: 1.5rem;
     margin: 1.5rem 0;
 }

 .info-box h3 {
     color: var(--info);
     margin-top: 0;
 }

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     margin: 1.5rem 0;
     background-color: var(--bg-tertiary);
     border-radius: 0.5rem;
     overflow: hidden;
 }

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

 .cookie-table th {
     background-color: var(--bg-secondary);
     color: var(--accent);
     font-weight: 600;
 }

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