 :root {
     --bg: #0b0f14;
     --surface: #121822;
     --primary: #14b8a6;
     --accent: #f59e0b;
     --text: #e5e7eb;
     --muted: #9ca3af;
     --border-radius: 14px;
     --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --bg-main: #0b0f14;
     --text-light: #f9fafb;
     --text-medium: #9ca3af;
     --border-soft: #1f2933;
 }

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

 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--bg);
     color: var(--text);
     line-height: 1.6;
 }

 a {
     text-decoration: none;
 }

 header {
     background-color: var(--surface);
     padding: 1rem 2rem;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: var(--shadow);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     font-weight: 700;
     font-size: 1.5rem;
     color: var(--primary);
 }

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

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

 nav a {
     color: var(--text);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
 }

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

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

 .btn {
     padding: 0.75rem 1.5rem;
     border-radius: var(--border-radius);
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s;
     cursor: pointer;
     border: none;
     font-family: inherit;
 }

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

 .btn-primary:hover {
     background-color: #0d9488;
     transform: translateY(-2px);
 }

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

 .btn-outline:hover {
     border-color: var(--primary);
     color: var(--primary);
 }

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

 .btn-accent:hover {
     background-color: #d97706;
 }


 .hero {
     position: relative;
     height: 70vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(11, 15, 20, 0.7), rgba(11, 15, 20, 0.9));
     z-index: 1;
 }

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     padding: 0 2rem;
 }

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

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

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


 .section {
     padding: 5rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

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

 .section-title h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .section-title p {
     color: var(--muted);
     max-width: 600px;
     margin: 0 auto;
 }

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

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

 .game-card:hover {
     transform: translateY(-5px);
 }

 .game-image {
     height: 200px;
     background-color: #1e293b;
     display: flex;
     align-items: center;
     justify-content: center;
 }

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

 .game-image i {
     font-size: 4rem;
     color: var(--primary);
 }

 .game-content {
     padding: 1.5rem;
 }

 .game-content h3 {
     margin-bottom: 1rem;
     font-size: 1.5rem;
 }

 .game-content p {
     color: var(--muted);
     margin-bottom: 1.5rem;
 }


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

 .step {
     text-align: center;
     position: relative;
 }

 .step::before {
     counter-increment: step-counter;
     content: counter(step-counter);
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     background-color: var(--primary);
     color: var(--bg);
     border-radius: 50%;
     font-size: 1.5rem;
     font-weight: 700;
     margin: 0 auto 1.5rem;
 }

 .step h3 {
     margin-bottom: 1rem;
 }

 .step p {
     color: var(--muted);
 }


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

 .feature {
     text-align: center;
     padding: 2rem;
     background-color: var(--surface);
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
 }

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

 .feature h3 {
     margin-bottom: 1rem;
 }

 .feature p {
     color: var(--muted);
 }


 .trust {
     text-align: center;
     padding: 3rem 2rem;
     background-color: var(--surface);
     border-radius: var(--border-radius);
     max-width: 800px;
     margin: 0 auto;
 }

 .trust h2 {
     margin-bottom: 1.5rem;
 }

 .trust p {
     margin-bottom: 1.5rem;
     color: var(--muted);
 }

 .age-notice {
     display: inline-block;
     background-color: var(--accent);
     color: var(--bg);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }


 .newsletter {
     text-align: center;
     padding: 3rem 2rem;
     background-color: var(--surface);
     border-radius: var(--border-radius);
     max-width: 600px;
     margin: 0 auto;
 }

 .newsletter h2 {
     margin-bottom: 1rem;
 }

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

 .newsletter-form {
     display: flex;
     max-width: 400px;
     margin: 0 auto;
 }

 .newsletter-form input {
     flex: 1;
     padding: 0.75rem 1rem;
     border: 1px solid var(--muted);
     border-radius: var(--border-radius) 0 0 var(--border-radius);
     background-color: var(--bg);
     color: var(--text);
 }

 .newsletter-form button {
     border-radius: 0 var(--border-radius) var(--border-radius) 0;
 }


 footer {
     background-color: var(--surface);
     padding: 4rem 2rem 2rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 3rem;
 }

 .footer-col h3 {
     margin-bottom: 1.5rem;
     font-size: 1.25rem;
 }

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

 .footer-col ul li {
     margin-bottom: 0.75rem;
 }

 .footer-col a {
     color: var(--muted);
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col a:hover {
     color: var(--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);
     border-radius: 50%;
     color: var(--text);
     transition: all 0.3s;
 }

 .social-links a:hover {
     background-color: var(--primary);
     color: var(--bg);
 }

 .footer-bottom {
     max-width: 1200px;
     margin: 0 auto;
     padding-top: 2rem;
     border-top: 1px solid #2d3748;
     text-align: center;
     color: var(--muted);
     font-size: 0.875rem;
 }


 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background-color: var(--surface);
     padding: 1.5rem 2rem;
     box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
     z-index: 1001;
     display: none;
 }

 .cookie-banner.active {
     display: block;
 }

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

 .cookie-text {
     flex: 1;
 }

 .cookie-text p {
     margin-bottom: 0.5rem;
 }

 .cookie-text a {
     color: var(--primary);
 }

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


 @media (max-width: 768px) {
     .header-container {
         flex-direction: column;
         gap: 1rem;
     }

     nav ul {
         gap: 1rem;
     }

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

     .hero-buttons {
         flex-direction: column;
         align-items: center;
     }

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

     .newsletter-form {
         flex-direction: column;
     }

     .newsletter-form input {
         border-radius: var(--border-radius);
         margin-bottom: 1rem;
     }

     .newsletter-form button {
         border-radius: var(--border-radius);
     }
 }

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

     .hero {
         height: 60vh;
     }

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

     .hero p {
         font-size: 1rem;
     }

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

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

 .main-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem;
     gap: 2rem;
 }


 .sidebar {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     padding: 1.5rem;
     height: fit-content;
     box-shadow: var(--shadow);
 }

 .sidebar h3 {
     margin-bottom: 1.5rem;
     padding-bottom: 0.75rem;
     border-bottom: 1px solid #2d3748;
 }

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

 .filter-group h4 {
     margin-bottom: 0.75rem;
     font-size: 1rem;
 }

 .filter-options {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .filter-option {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .filter-option input {
     accent-color: var(--primary);
 }

 .filter-option label {
     cursor: pointer;
 }

 .price-range {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .price-inputs {
     display: flex;
     gap: 0.5rem;
 }

 .price-inputs input {
     width: 100%;
     padding: 0.5rem;
     background-color: var(--bg);
     border: 1px solid #2d3748;
     border-radius: 4px;
     color: var(--text);
 }


 .tickets-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 1.5rem;
 }

 .ticket-card {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform 0.3s;
 }

 .ticket-card:hover {
     transform: translateY(-5px);
 }

 .ticket-header {
     padding: 1.5rem;
     background-color: #1e293b;
     text-align: center;
 }

 .ticket-header h3 {
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
 }

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

 .ticket-body {
     padding: 1.5rem;
 }

 .ticket-description {
     color: var(--muted);
     margin-bottom: 1.5rem;
 }


 .number-selection {
     margin-bottom: 1.5rem;
 }

 .number-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 0.5rem;
     margin-bottom: 1rem;
 }

 .number-btn {
     width: 100%;
     aspect-ratio: 1;
     border: 1px solid #2d3748;
     background-color: var(--bg);
     color: var(--text);
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.2s;
     font-weight: 600;
 }

 .number-btn:hover {
     border-color: var(--primary);
 }

 .number-btn.selected {
     background-color: var(--primary);
     color: var(--bg);
     border-color: var(--primary);
 }

 .number-controls {
     display: flex;
     gap: 0.5rem;
 }


 .keno-selection {
     margin-bottom: 1.5rem;
 }

 .keno-options {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .keno-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0.75rem;
     background-color: var(--bg);
     border-radius: 4px;
     border: 1px solid #2d3748;
 }

 .keno-option.selected {
     border-color: var(--primary);
 }

 .keno-details {
     display: flex;
     flex-direction: column;
 }

 .keno-price {
     font-weight: 600;
     color: var(--primary);
 }


 .cart {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     padding: 1.5rem;
     height: fit-content;
     box-shadow: var(--shadow);
     position: sticky;
     top: 100px;
 }

 .cart h3 {
     margin-bottom: 1.5rem;
     padding-bottom: 0.75rem;
     border-bottom: 1px solid #2d3748;
 }

 .cart-items {
     margin-bottom: 1.5rem;
     max-height: 300px;
     overflow-y: auto;
 }

 .cart-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0.75rem 0;
     border-bottom: 1px solid #2d3748;
 }

 .cart-item:last-child {
     border-bottom: none;
 }

 .item-details h4 {
     font-size: 0.9rem;
     margin-bottom: 0.25rem;
 }

 .item-numbers {
     font-size: 0.8rem;
     color: var(--muted);
 }

 .item-controls {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .item-quantity {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .quantity-btn {
     width: 24px;
     height: 24px;
     border: none;
     background-color: var(--bg);
     color: var(--text);
     border-radius: 4px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .remove-btn {
     color: #ef4444;
     background: none;
     border: none;
     cursor: pointer;
 }

 .cart-summary {
     border-top: 1px solid #2d3748;
     padding-top: 1rem;
 }

 .summary-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 0.5rem;
 }

 .summary-total {
     font-weight: 700;
     font-size: 1.1rem;
     border-top: 1px solid #2d3748;
     padding-top: 0.5rem;
     margin-top: 0.5rem;
 }

 .empty-cart {
     text-align: center;
     color: var(--muted);
     padding: 2rem 0;
 }


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

 .modal.active {
     display: flex;
 }

 .modal-content {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     width: 90%;
     max-width: 500px;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
 }

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

 .modal-header h3 {
     margin: 0;
 }

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

 .modal-body {
     padding: 1.5rem;
 }

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

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

 .form-control {
     width: 100%;
     padding: 0.75rem;
     background-color: var(--bg);
     border: 1px solid #2d3748;
     border-radius: 4px;
     color: var(--text);
     font-family: inherit;
 }

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

 .payment-methods {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
     margin-bottom: 1.5rem;
 }

 .payment-method {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .payment-method input {
     accent-color: var(--primary);
 }

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

 .checkbox-group input {
     margin-top: 0.25rem;
     accent-color: var(--primary);
 }

 .checkbox-group label {
     font-size: 0.9rem;
 }

 .checkbox-group a {
     color: var(--primary);
 }

 .modal-footer {
     padding: 1.5rem;
     border-top: 1px solid #2d3748;
     display: flex;
     justify-content: flex-end;
     gap: 1rem;
 }


 .confirmation {
     text-align: center;
     padding: 2rem;
 }

 .confirmation i {
     font-size: 3rem;
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .confirmation h3 {
     margin-bottom: 1rem;
 }

 .confirmation p {
     color: var(--muted);
     margin-bottom: 1.5rem;
 }

 .order-number {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--primary);
     margin: 1rem 0;
 }


 footer {
     background-color: var(--surface);
     padding: 4rem 2rem 2rem;
     margin-top: 4rem;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     margin-bottom: 3rem;
 }

 .footer-col h3 {
     margin-bottom: 1.5rem;
     font-size: 1.25rem;
 }

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

 .footer-col ul li {
     margin-bottom: 0.75rem;
 }

 .footer-col a {
     color: var(--muted);
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col a:hover {
     color: var(--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);
     border-radius: 50%;
     color: var(--text);
     transition: all 0.3s;
 }

 .social-links a:hover {
     background-color: var(--primary);
     color: var(--bg);
 }

 .footer-bottom {
     max-width: 1200px;
     margin: 0 auto;
     padding-top: 2rem;
     border-top: 1px solid #2d3748;
     text-align: center;
     color: var(--muted);
     font-size: 0.875rem;
 }

 .age-notice {
     display: inline-block;
     background-color: var(--accent);
     color: var(--bg);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }


 @media (max-width: 1024px) {
     .main-container {
         grid-template-columns: 1fr;
         grid-template-areas:
             "filters"
             "cart"
             "tickets";
     }

     .sidebar {
         grid-area: filters;
     }

     .tickets-container {
         grid-area: tickets;
     }

     .cart {
         grid-area: cart;
         position: static;
     }
 }

 @media (max-width: 768px) {
     .header-container {
         flex-direction: column;
         gap: 1rem;
     }

     nav ul {
         gap: 1rem;
     }

     .tickets-grid {
         grid-template-columns: 1fr;
     }

     .number-grid {
         grid-template-columns: repeat(5, 1fr);
     }
 }

 @media (max-width: 480px) {
     .main-container {
         padding: 1rem;
     }

     .modal-content {
         width: 95%;
     }

     .number-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .age-gate-overlay {
     position: fixed;
     inset: 0;
     background: rgba(11, 15, 20, 0.96);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     padding: 1.5rem;
 }

 .age-gate-overlay.hidden {
     display: none;
 }

 .age-gate-card {
     max-width: 480px;
     width: 100%;
     background: #05070b;
     border-radius: 1rem;
     border: 1px solid var(--accent);
     padding: 2rem 2.2rem;
     box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
     color: var(--text-light);
     text-align: left;
 }

 .age-gate-icon {
     width: 48px;
     height: 48px;
     border-radius: 999px;
     background: rgba(20, 184, 166, 0.12);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
     color: var(--accent);
     font-size: 1.4rem;
 }

 .age-gate-card h2 {
     margin: 0 0 0.75rem;
     font-size: 1.6rem;
 }

 .age-gate-card p {
     margin: 0 0 1.25rem;
     color: var(--text-medium);
     font-size: 0.95rem;
     line-height: 1.6;
 }

 .age-gate-actions {
     display: flex;
     gap: 0.75rem;
     margin-bottom: 0.75rem;
     flex-wrap: wrap;
 }

 .age-gate-small {
     font-size: 0.78rem;
     color: var(--text-medium);
 }


 .cookie-banner {
     position: fixed;
     left: 50%;
     bottom: 1.25rem;
     transform: translateX(-50%);
     width: min(960px, 100% - 2rem);
     background: #05070b;
     border-radius: 0.75rem;
     border: 1px solid var(--border-soft);
     padding: 1rem 1.25rem;
     display: flex;
     gap: 1rem;
     align-items: center;
     justify-content: space-between;
     color: var(--text-light);
     box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
     z-index: 9998;
     font-size: 0.9rem;
 }

 .cookie-banner.hidden {
     display: none;
 }

 .cookie-banner-content {
     display: flex;
     gap: 0.75rem;
     align-items: flex-start;
 }

 .cookie-banner-icon {
     width: 36px;
     height: 36px;
     border-radius: 999px;
     background: rgba(20, 184, 166, 0.12);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--accent);
 }

 .cookie-banner-text h3 {
     margin: 0 0 0.25rem;
     font-size: 1rem;
 }

 .cookie-banner-text p {
     margin: 0;
     color: var(--text-medium);
     line-height: 1.5;
 }

 .cookie-banner-actions {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
     min-width: 180px;
 }


 @media (max-width: 640px) {
     .cookie-banner {
         flex-direction: column;
         align-items: stretch;
     }

     .cookie-banner-actions {
         width: 100%;
     }
 }




 .cookie-link {
     margin-top: 0.4rem;
     background: none;
     border: none;
     color: var(--accent);
     font-size: 0.85rem;
     text-decoration: underline;
     cursor: pointer;
     padding: 0;
 }


 .cookie-modal-overlay {
     position: fixed;
     inset: 0;
     background: rgba(11, 15, 20, 0.92);
     display: none;
     align-items: center;
     justify-content: center;
     padding: 1.5rem;
     z-index: 9999;
 }

 .cookie-modal-overlay.visible {
     display: flex;
 }

 .cookie-modal {
     width: min(560px, 100%);
     background: #05070b;
     border-radius: 1rem;
     border: 1px solid var(--border-soft);
     padding: 1.5rem 1.75rem 1.25rem;
     color: var(--text-light);
     box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
 }

 .cookie-modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0.75rem;
 }

 .cookie-modal-header h3 {
     margin: 0;
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .cookie-modal-body>p {
     margin: 0 0 1rem;
     color: var(--text-medium);
     font-size: 0.9rem;
 }

 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1rem;
     padding: 0.75rem 0;
     border-top: 1px solid rgba(148, 163, 184, 0.25);
 }

 .cookie-option:first-of-type {
     border-top: none;
 }

 .cookie-option p {
     margin: 0.25rem 0 0;
     color: var(--text-medium);
     font-size: 0.85rem;
 }

 .cookie-badge {
     font-size: 0.75rem;
     padding: 0.25rem 0.6rem;
     border-radius: 999px;
     border: 1px solid rgba(148, 163, 184, 0.6);
     color: var(--text-medium);
 }

 .cookie-modal-footer {
     margin-top: 1.25rem;
 }

 .full-width {
     width: 100%;
 }


 .modal-close-btn {
     background: none;
     border: none;
     color: var(--text-medium);
     cursor: pointer;
     font-size: 1rem;
     padding: 0.25rem;
 }

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


 .switch {
     position: relative;
     display: inline-block;
     width: 44px;
     height: 22px;
 }

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

 .slider {
     position: absolute;
     cursor: pointer;
     inset: 0;
     background-color: #111827;
     border-radius: 999px;
     transition: 0.2s;
 }

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

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

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



 .nz-footer {
     background: #020617;
     color: #f9fafb;
     padding: 40px 20px 24px;
     font-size: 0.9rem;
 }

 .nz-footer a {
     color: #e5e7eb;
     text-decoration: underline;
 }

 .nz-footer a:hover {
     text-decoration: none;
 }

 .footer-inner {
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
 }

 .footer-lead {
     margin-bottom: 12px;
 }

 .footer-text {
     margin: 6px 0;
     color: #d1d5db;
 }

 .footer-text.small {
     font-size: 0.8rem;
 }

 .age-warning {
     margin: 18px 0 10px;
     font-weight: 600;
     color: #f97373;
 }

 .footer-nav {
     margin: 8px 0 20px;
 }

 .footer-nav .sep {
     margin: 0 6px;
     color: #6b7280;
 }

 .footer-logos {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 16px;
     margin: 16px 0 18px;
 }

 .footer-logo {
     background: #111827;
     border-radius: 10px;
     padding: 8px 14px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 90px;
 }

 .footer-logo img {

     height: 50px;
 }

 .age-badge {
     width: 44px;
     height: 44px;
     border-radius: 999px;
     border: 2px solid #f97373;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1rem;
 }

 .footer-copy {
     margin-top: 10px;
     font-size: 0.75rem;
     color: #9ca3af;
 }

 .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
 }

 .main-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem;
 }

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

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

 .page-header p {
     color: var(--muted);
     max-width: 600px;
     margin: 0 auto;
 }

 .content-section {
     margin-bottom: 4rem;
 }

 .content-section h2 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--primary);
 }

 .content-section p {
     margin-bottom: 1.5rem;
     color: var(--muted);
 }

 .content-section ul {
     margin-bottom: 1.5rem;
     padding-left: 1.5rem;
 }

 .content-section li {
     margin-bottom: 0.5rem;
     color: var(--muted);
 }

 /* Accordion */
 .accordion {
     margin-top: 2rem;
 }

 .accordion-item {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     margin-bottom: 1rem;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

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

 .accordion-header:hover {
     background-color: #1a2232;
 }

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

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

 .accordion-content {
     padding: 0 1.5rem;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out, padding 0.3s;
 }

 .accordion-content.active {
     padding: 1.5rem;
     max-height: 1000px;
 }

 .accordion-content p {
     margin-bottom: 1rem;
 }

 /* Trust Section */
 .trust {
     text-align: center;
     padding: 3rem 2rem;
     background-color: var(--surface);
     border-radius: var(--border-radius);
     max-width: 800px;
     margin: 0 auto;
 }

 .trust h2 {
     margin-bottom: 1.5rem;
 }

 .trust p {
     margin-bottom: 1.5rem;
     color: var(--muted);
 }

 .age-notice {
     display: inline-block;
     background-color: var(--accent);
     color: var(--bg);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

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

 .contact-info {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     padding: 2rem;
     box-shadow: var(--shadow);
 }

 .contact-info h2 {
     margin-bottom: 1.5rem;
     color: var(--primary);
 }

 .contact-details {
     margin-bottom: 2rem;
 }

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

 .contact-item i {
     color: var(--primary);
     margin-top: 0.25rem;
 }

 .contact-item h3 {
     margin-bottom: 0.25rem;
 }

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

 .map-container {
     margin-top: 2rem;
     border-radius: var(--border-radius);
     overflow: hidden;
 }

 .map-container iframe {
     width: 100%;
     height: 300px;
     border: none;
 }

 .contact-form {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     padding: 2rem;
     box-shadow: var(--shadow);
 }

 .contact-form h2 {
     margin-bottom: 1.5rem;
     color: var(--primary);
 }

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

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

 .form-control {
     width: 100%;
     padding: 0.75rem;
     background-color: var(--bg);
     border: 1px solid #2d3748;
     border-radius: 4px;
     color: var(--text);
     font-family: inherit;
 }

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

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

 .honeypot {
     opacity: 0;
     position: absolute;
     top: 0;
     left: 0;
     height: 0;
     width: 0;
     z-index: -1;
 }

 .auth-container {
     display: flex;
     flex: 1;
     align-items: center;
     justify-content: center;
     padding: 2rem;
 }

 .auth-card {
     background-color: var(--surface);
     border-radius: var(--border-radius);
     padding: 3rem;
     width: 100%;
     max-width: 450px;
     box-shadow: var(--shadow);
 }

 .auth-header {
     text-align: center;
     margin-bottom: 2rem;
 }

 .auth-header h1 {
     font-size: 2rem;
     margin-bottom: 0.5rem;
 }

 .auth-header p {
     color: var(--muted);
 }

 .auth-form {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
 }

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

 .form-control {
     padding: 0.75rem 1rem;
     background-color: var(--bg);
     border: 1px solid #2d3748;
     border-radius: 4px;
     color: var(--text);
     font-family: inherit;
     transition: border-color 0.3s;
 }

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

 .password-strength {
     margin-top: 0.5rem;
     font-size: 0.875rem;
 }

 .password-strength.weak {
     color: #ef4444;
 }

 .password-strength.medium {
     color: #f59e0b;
 }

 .password-strength.strong {
     color: #10b981;
 }

 .form-options {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
 }

 .remember-me {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .remember-me input {
     accent-color: var(--primary);
 }

 .forgot-password {
     color: var(--primary);
     text-decoration: none;
     font-size: 0.875rem;
 }

 .forgot-password:hover {
     text-decoration: underline;
 }

 .auth-footer {
     text-align: center;
     margin-top: 2rem;
     padding-top: 1.5rem;
     border-top: 1px solid #2d3748;
 }

 .auth-footer p {
     color: var(--muted);
 }

 .auth-footer a {
     color: var(--primary);
     text-decoration: none;
     font-weight: 500;
 }

 .auth-footer a:hover {
     text-decoration: underline;
 }

 .error-message {
     background-color: rgba(239, 68, 68, 0.1);
     color: #ef4444;
     padding: 0.75rem;
     border-radius: 4px;
     font-size: 0.875rem;
     margin-bottom: 1rem;
     display: none;
 }

 .error-message.active {
     display: block;
 }

 .age-notice {
     display: inline-block;
     background-color: var(--accent);
     color: var(--bg);
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

 .page-header {
     padding: 60px 0 40px;
     text-align: center;
 }

 .page-header h1 {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .page-header p {
     color: #9ca3af;
     max-width: 700px;
     margin: 0 auto;
 }

 .content-section {
     background-color: #121822;
     border-radius: 14px;
     padding: 40px;
     margin-bottom: 30px;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
 }

 .content-section h2 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     color: #14b8a6;
 }

 .content-section h3 {
     font-size: 1.3rem;
     margin: 25px 0 15px;
 }

 .content-section p {
     margin-bottom: 15px;
     color: #d1d5db;
 }

 .content-section ul {
     margin-left: 20px;
     margin-bottom: 20px;
 }

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

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

 .cookie-type {
     background-color: #1e293b;
     padding: 25px;
     border-radius: 10px;
 }

 .cookie-type h4 {
     font-size: 1.2rem;
     margin-bottom: 15px;
     color: #f59e0b;
 }

 .cookie-controls {
     background-color: #1e293b;
     padding: 30px;
     border-radius: 10px;
     margin-top: 30px;
 }

 .cookie-controls h3 {
     margin-bottom: 20px;
 }

 .cookie-option {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 0;
     border-bottom: 1px solid #374151;
 }

 .cookie-option:last-child {
     border-bottom: none;
 }

 .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: #4b5563;
     transition: .4s;
     border-radius: 24px;
 }

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

 input:checked+.cookie-slider {
     background-color: #14b8a6;
 }

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

 .save-preferences {
     margin-top: 30px;
     text-align: center;
 }

 .page {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
 }     .warning-box {
            background-color: #1e293b;
            border-left: 4px solid #ef4444;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .tip-box {
            background-color: #1e293b;
            border-left: 4px solid #f59e0b;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

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

        .help-card {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
        }

        .help-card i {
            font-size: 2.5rem;
            color: #14b8a6;
            margin-bottom: 15px;
        }

        .help-card h3 {
            margin-bottom: 10px;
        }

        .help-card p {
            margin-bottom: 15px;
            color: #9ca3af;
        }

        .help-link {
            display: inline-block;
            background-color: #14b8a6;
            color: #0b0f14;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .help-link:hover {
            background-color: #0d9488;
        }

        .self-assessment {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
        }

        .self-assessment h3 {
            text-align: center;
            margin-bottom: 20px;
        }

        .assessment-question {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #374151;
        }

        .assessment-question:last-child {
            border-bottom: none;
        }

        .assessment-question p {
            margin-bottom: 10px;
            font-weight: 500;
        }

        .age-notice {
            display: inline-block;
            background-color: #f59e0b;
            color: #0b0f14;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            margin-top: 15px;
        }
