 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@500;700;800&display=swap');

 :root {

     --primary-color: #004d2e;
     --primary-light: #2e8b57;
     --secondary-color: #1a1a1a;
     --accent-color: #c5a017;
     --accent-hover: #d4b025;

     --text-main: #333333;
     --text-muted: #666666;
     --bg-light: #f4f7f6;
     --bg-white: #ffffff;
     --danger-color: #d32f2f;

     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
     --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
     --radius: 8px;
     --nav-height: 80px;
 }

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

 body {
     font-family: 'Open Sans', sans-serif;
     color: var(--text-main);
     line-height: 1.7;
     background-color: var(--bg-light);
     display: flex;
     flex-direction: column;
     min-height: 100vh;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Poppins', sans-serif;
     color: var(--secondary-color);
     margin-bottom: 1rem;
     font-weight: 700;
 }

 a {
     text-decoration: none;
     transition: all 0.3s ease;
     color: inherit;
 }

 ul {
     list-style: none;
 }

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

 .container {
     max-width: 1280px;
     margin: 0 auto;
     padding: 0 24px;
 }

 .btn {
     display: inline-block;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-family: 'Poppins', sans-serif;
     cursor: pointer;
     border: none;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 0.5px;
     transition: transform 0.2s, box-shadow 0.2s;
     text-align: center;
 }

 .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .btn:disabled {
     background: #ccc;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }

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

 .btn-primary:hover {
     background: var(--primary-light);
 }

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

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

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

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

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

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

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

 header {
     background: var(--bg-white);
     height: var(--nav-height);
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: var(--shadow-sm);
     display: flex;
     align-items: center;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     position: relative;
 }

 .logo {
     font-size: 1.3rem;
     font-weight: 800;
     color: var(--primary-color);
     font-family: 'Poppins', sans-serif;
     display: flex;
     align-items: center;
     gap: 10px;
     line-height: 1.2;
 }

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

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

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

 .header-right {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .age-gate {
     font-size: 0.75rem;
     font-weight: 700;
     color: var(--text-muted);
     background: #eef2f5;
     padding: 6px 12px;
     border-radius: 4px;
     border: 1px solid #dde2e5;
 }


 .mobile-menu-btn {
     display: none !important;
 }

 .mobile-only {
     display: none;
 }


 .hero {
     background: linear-gradient(135deg, rgba(0, 77, 46, 0.9) 0%, rgba(0, 30, 18, 0.85) 100%),
         url('../img/hero.png') no-repeat center center/cover;
     color: var(--bg-white);
     padding: 140px 0 100px;
     text-align: center;
 }

 .hero h1 {
     color: var(--bg-white);
     font-size: 3rem;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 40px;
     opacity: 0.95;
 }

 .hero-badges {
     margin-top: 40px;
     display: flex;
     justify-content: center;
     gap: 25px;
     opacity: 0.8;
 }

 .hero-badges i {
     font-size: 2rem;
 }


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

 .feature-card {
     background: var(--bg-white);
     padding: 40px 30px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     transition: all 0.3s ease;
     border-top: 4px solid transparent;
 }

 .feature-card:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-md);
     border-top-color: var(--primary-color);
 }

 .icon-box { 
     background: #e6f0eb;
     color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     margin: 0 auto 20px;
 }
.icon-box img {
    width: 100%;
}

 .game-selector {
     background: var(--bg-white);
     padding: 30px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
 }

 .game-selector-nav {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-bottom: 30px;
     flex-wrap: wrap;
 }

 .number-grid {
     display: grid;
     gap: 12px;
     margin: 30px 0;
     justify-items: center;
 }

 .num-btn {
     width: 44px;
     height: 44px;
     padding: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     border: 2px solid #e0e0e0;
     background: var(--bg-white);
     border-radius: 50%;
     font-weight: 700;
     font-size: 1rem;
     color: var(--text-main);
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .num-btn:hover {
     border-color: var(--primary-color);
     background: #f0f9f4;
     transform: scale(1.1);
 }

 .num-btn.selected {
     background: var(--primary-color);
     color: var(--bg-white);
     border-color: var(--primary-color);
     box-shadow: 0 4px 10px rgba(46, 139, 87, 0.4);
 }

 .cart-summary {
     background: var(--bg-white);
     padding: 30px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-md);
     position: sticky;
     top: 100px;
 }


 .contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 60px;
     align-items: flex-start;
     margin-top: 40px;
 }

 .contact-info h3 {
     color: var(--primary-color);
     margin-bottom: 15px;
     font-size: 1.2rem;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     margin-bottom: 35px;
 }

 .info-icon {
     width: 54px;
     height: 54px;
     background-color: var(--bg-white);
     color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     box-shadow: var(--shadow-sm);
     flex-shrink: 0;
     border: 2px solid #eef2f5;
     transition: all 0.3s ease;
 }

 .info-item:hover .info-icon {
     background-color: var(--primary-color);
     color: var(--bg-white);
     transform: translateY(-3px);
 }

 .info-content p {
     color: var(--text-muted);
     font-size: 0.95rem;
     margin: 0;
 }

 .info-content strong {
     display: block;
     color: var(--secondary-color);
     font-size: 1.1rem;
     margin-bottom: 5px;
 }


 .auth-container {
     min-height: 80vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px 20px;
 }

 .auth-card {
     background: var(--bg-white);
     padding: 40px;
     width: 100%;
     max-width: 480px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-md);
     border-top: 5px solid var(--primary-color);
 }

 .auth-links {
     margin-top: 20px;
     text-align: center;
     font-size: 0.9rem;
 }

 .auth-links a {
     color: var(--primary-color);
     font-weight: 600;
 }

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


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

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .form-control {
     width: 100%;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 1rem;
     transition: border 0.3s;
 }

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

 .form-check {
     display: flex;
     gap: 10px;
     align-items: flex-start;
     margin-bottom: 15px;
     font-size: 0.9rem;
 }


 .toast-notification {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%) translateY(20px);
     background-color: var(--danger-color);
     color: #fff;
     padding: 12px 24px;
     border-radius: 50px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     font-weight: 600;
     font-size: 0.9rem;
     z-index: 9999;
     opacity: 0;
     transition: all 0.3s ease;
     pointer-events: none;
     text-align: center;
     width: max-content;
     max-width: 90%;
 }

 .toast-notification.show {
     opacity: 1;
     transform: translateX(-50%) translateY(0);
 }


 .trust-bar {
     background: var(--secondary-color);
     color: var(--bg-white);
     padding: 15px 0;
     text-align: center;
     font-size: 0.85rem;
     font-weight: 600;
 }

 footer {
     background: #0f1f18;
     color: #a0a0a0;
     padding: 60px 0 30px;
     margin-top: auto;
 }

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

 .footer-col h4 {
     color: var(--bg-white);
     margin-bottom: 20px;
 }

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

 .footer-col a:hover {
     color: var(--bg-white);
     text-decoration: underline;
 }

 .legal-text {
     font-size: 0.8rem;
     line-height: 1.5;
     border-top: 1px solid #333;
     padding-top: 30px;
 }


 @media (max-width: 992px) {
     .mobile-menu-btn {
         display: block !important;
         font-size: 1.6rem;
         cursor: pointer;
         color: var(--secondary-color);
         margin-left: auto;
     }

     .header-right {
         display: none;
     }

     .nav-links {
         display: none;
         flex-direction: column;
         position: absolute;
         top: var(--nav-height);
         left: 0;
         width: 100%;
         background: var(--bg-white);
         padding: 20px;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
         border-top: 1px solid #eee;
         z-index: 999;
         gap: 15px;
     }

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

     .nav-links li {
         text-align: center;
         width: 100%;
     }

     .nav-links a {
         display: block;
         padding: 10px;
     }

     .mobile-only {
         display: block;
         border-top: 1px solid #eee;
         padding-top: 10px;
         margin-top: 5px;
     }

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


     .contact-wrapper {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .contact-info {
         order: 2;
     }

     .contact-card {
         order: 1;
         padding: 30px 20px;
     }
 }

 @media (max-width: 768px) {
     .cards-grid {
         grid-template-columns: 1fr;
     }

     .num-btn {
         width: 36px;
         height: 36px;
         font-size: 0.9rem;
     }

     .number-grid {
         gap: 8px;
     }
 }

 .age-gate,
 .cookie-banner,
 .cookie-modal {
     font-family: var(--cookie-font);
     z-index: 9999;
 }

 .age-gate {
     position: fixed;
     inset: 0;
     display: none;
     align-items: center;
     justify-content: center;
 }

 .age-gate--visible {
     display: flex;
 }

 .age-gate__backdrop {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.7);
 }

 .age-gate__dialog {
     position: relative;
     max-width: 560px;
     width: 90%;
     background: var(--cookie-bg);
     border-radius: 1rem;
     padding: 2rem 2.25rem;
     border: 1px solid var(--cookie-accent);
     color: var(--cookie-text-main);
     box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
     z-index: 1;
     text-align: left;
 }

 .age-gate__dialog h2 {
     margin: 0 0 1rem;
     font-size: 1.35rem;
     color: var(--cookie-accent);
 }

 .age-gate__text {
     margin: 0 0 1.5rem;
     line-height: 1.5;
     font-size: 0.95rem;
     color: var(--cookie-text-main);
 }

 .age-gate__buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem;
     margin-bottom: 1rem;
 }

 .age-gate__btn {
     flex: 1 1 160px;
     padding: 0.7rem 1rem;
     border-radius: 999px;
     border: 1px solid transparent;
     font-size: 0.95rem;
     cursor: pointer;
     transition: background var(--cookie-transition), color var(--cookie-transition), border-color var(--cookie-transition), transform var(--cookie-transition);
 }

 .age-gate__btn--primary {
     background: var(--cookie-accent);
     color: #ffffff;
     font-weight: 600;
 }

 .age-gate__btn--primary:hover {
     background: #00673f;
     transform: translateY(-1px);
 }

 .age-gate__btn--secondary {
     background: transparent;
     color: var(--cookie-text-main);
     border-color: var(--cookie-border);
 }

 .age-gate__btn--secondary:hover {
     border-color: var(--cookie-accent);
     color: var(--cookie-accent);
     transform: translateY(-1px);
 }

 .age-gate__note {
     margin: 0;
     font-size: 0.8rem;
     color: var(--cookie-text-muted);
 }

 @media (max-width: 480px) {
     .age-gate__dialog {
         padding: 1.5rem 1.25rem;
     }
 }

 .cookie-banner {
     position: fixed;
     inset-inline: 0;
     bottom: 0;
     background: var(--cookie-bg);
     color: var(--cookie-text-main);
     border-top: 2px solid var(--cookie-accent);
     box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
     transform: translateY(100%);
     transition: transform var(--cookie-transition);
 }

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

 .cookie-banner__content {
     max-width: 1100px;
     margin: 0 auto;
     padding: 1rem 1.5rem;
     display: flex;
     flex-wrap: wrap;
     gap: 0.75rem 1.5rem;
     align-items: center;
     justify-content: space-between;
 }

 .cookie-banner__text {
     flex: 1 1 260px;
     margin: 0;
     font-size: 0.9rem;
     line-height: 1.4;
     color: var(--cookie-text-main);
 }

 .cookie-banner__actions {
     display: flex;
     gap: 0.5rem;
     flex-wrap: wrap;
     justify-content: flex-end;
 }

 .cookie-banner__btn {
     padding: 0.55rem 1.1rem;
     border-radius: 999px;
     border: 1px solid transparent;
     font-size: 0.85rem;
     cursor: pointer;
     transition: background var(--cookie-transition), color var(--cookie-transition), border-color var(--cookie-transition), transform var(--cookie-transition);
     white-space: nowrap;
 }

 .cookie-banner__btn--primary {
     background: var(--cookie-accent);
     color: #ffffff;
     font-weight: 600;
 }

 .cookie-banner__btn--primary:hover {
     background: #00673f;
     transform: translateY(-1px);
 }

 .cookie-banner__btn--secondary {
     background: transparent;
     color: var(--cookie-text-main);
     border-color: var(--cookie-border);
 }

 .cookie-banner__btn--secondary:hover {
     border-color: var(--cookie-accent);
     color: var(--cookie-accent);
     transform: translateY(-1px);
 }

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

     .cookie-banner__actions {
         width: 100%;
         justify-content: flex-start;
     }
 }

 .cookie-modal {
     position: fixed;
     inset: 0;
     display: none;
     align-items: center;
     justify-content: center;
 }

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

 .cookie-modal__backdrop {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.6);
 }

 .cookie-modal__dialog {
     position: relative;
     max-width: 560px;
     width: 90%;
     background: var(--cookie-bg);
     border-radius: 1rem;
     padding: 1.75rem 2rem;
     border: 1px solid var(--cookie-accent);
     color: var(--cookie-text-main);
     z-index: 1;
     box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
 }

 .cookie-modal__dialog h2 {
     margin: 0 0 0.75rem;
     font-size: 1.3rem;
     color: var(--cookie-accent);
 }

 .cookie-modal__intro {
     font-size: 0.9rem;
     margin: 0 0 1.25rem;
     color: var(--cookie-text-muted);
     line-height: 1.5;
 }

 .cookie-modal__group {
     margin-bottom: 1.1rem;
 }

 .cookie-modal__group h3 {
     margin: 0 0 0.35rem;
     font-size: 1rem;
 }

 .cookie-modal__group p {
     margin: 0 0 0.6rem;
     font-size: 0.85rem;
     color: var(--cookie-text-muted);
     line-height: 1.4;
 }

 .cookie-modal__buttons {
     display: flex;
     justify-content: flex-end;
     gap: 0.5rem;
     margin-top: 1.25rem;
 }

 @media (max-width: 480px) {
     .cookie-modal__dialog {
         padding: 1.5rem 1.25rem;
     }
 }

 .cookie-toggle {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     cursor: pointer;
     user-select: none;
 }

 .cookie-toggle input {
     display: none;
 }

 .cookie-toggle__slider {
     position: relative;
     width: 42px;
     height: 22px;
     border-radius: 999px;
     background: #e5e7eb;
     border: 1px solid #d1d5db;
     transition: background var(--cookie-transition), border-color var(--cookie-transition);
 }

 .cookie-toggle__slider::before {
     content: "";
     position: absolute;
     top: 2px;
     left: 2px;
     width: 16px;
     height: 16px;
     border-radius: 999px;
     background: #ffffff;
     box-shadow: 0 1px 3px rgba(15, 23, 42, 0.35);
     transition: transform var(--cookie-transition);
 }

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

 .cookie-toggle input:checked+.cookie-toggle__slider::before {
     transform: translateX(18px);
 }

 .cookie-toggle__label {
     font-size: 0.85rem;
     color: var(--cookie-text-main);
 }

 .cookie-toggle--disabled .cookie-toggle__label {
     color: var(--cookie-text-muted);
 }

 .legal-content {
     background: var(--bg-white);
     padding: 50px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-sm);
     max-width: 1000px;
     margin: 0 auto;
 }

 .legal-content h2 {
     margin-top: 40px;
     padding-bottom: 10px;
     border-bottom: 1px solid #eee;
     font-size: 1.5rem;
     color: var(--primary-color);
 }

 .legal-content h3 {
     margin-top: 25px;
     font-size: 1.1rem;
     color: var(--secondary-color);
 }

 .legal-content p,
 .legal-content li {
     color: #444;
     margin-bottom: 15px;
     text-align: justify;
 }

 .legal-content ul {
     list-style: disc;
     margin-left: 20px;
     margin-bottom: 20px;
 }

 .legal-content strong {
     color: var(--secondary-color);
 }

 @media (max-width: 768px) {
     .legal-content {
         padding: 25px;
     }
 }

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     margin: 20px 0;
     font-size: 0.95rem;
 }

 .cookie-table th,
 .cookie-table td {
     border: 1px solid #eee;
     padding: 12px 15px;
     text-align: left;
 }

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

 .cookie-table tr:nth-child(even) {
     background-color: #f9f9f9;
 }

 @media (max-width: 768px) {
     .legal-content {
         padding: 25px;
     }

     .cookie-table {
         font-size: 0.85rem;
     }

     .cookie-table th,
     .cookie-table td {
         padding: 8px;
     }
 }.help-box {
            background-color: #e8f5e9;
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .help-box h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .help-contact {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin: 10px 0;
            display: block;
        }

        .warning-sign-list li {
            margin-bottom: 10px;
            padding-left: 10px;
        }