 :root {

     --bg-body: #050505;
     --bg-dark: #0a0a0a;
     --bg-card: rgba(25, 25, 25, 0.6);
     --bg-card-hover: rgba(35, 35, 35, 0.8);
     --bg-input: rgba(255, 255, 255, 0.05);

     --primary: #008080;

     --primary-gradient: linear-gradient(135deg, #008080 0%, #005c5c 100%);
     --gold: #D4AF37;

     --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA8A25 100%);

     --text-main: #ffffff;
     --text-muted: #a0a0a0;
     --danger: #ff4d4d;


     --glass-border: 1px solid rgba(255, 255, 255, 0.08);
     --radius-sm: 8px;
     --radius-lg: 16px;
     --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
     --shadow-glow: 0 0 20px rgba(0, 128, 128, 0.2);


     --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
     --container-width: 1200px;
     --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     outline: none;
     -webkit-tap-highlight-color: transparent;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     background-color: var(--bg-body);
     background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 100%);
     color: var(--text-main);
     font-family: var(--font-main);
     line-height: 1.6;
     min-height: 100vh;
     overflow-x: hidden;
 }

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

 ul {
     list-style: none;
 }

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

 .container {
     width: 90%;
     max-width: var(--container-width);
     margin: 0 auto;
 }

 .hidden {
     display: none !important;
 }

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

 .full-width {
     width: 100%;
 }

 .bg-darker {
     background-color: rgba(0, 0, 0, 0.3);
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     position: relative;
     overflow: hidden;
 }

 .btn-primary {
     background: var(--primary-gradient);
     color: white;
     box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 128, 128, 0.5);
     filter: brightness(1.1);
 }

 .btn-gold {
     background: var(--gold-gradient);
     color: #000;
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

 .btn-gold:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
     filter: brightness(1.1);
 }

 .btn-outline {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.2);
     color: var(--text-main);
 }

 .btn-outline:hover {
     border-color: var(--text-main);
     background: rgba(255, 255, 255, 0.05);
 }

 .btn-text,
 .btn-text-sm {
     background: none;
     color: var(--text-muted);
     padding: 5px 10px;
     border-radius: var(--radius-sm);
     text-transform: none;
 }

 .btn-text:hover,
 .btn-text-sm:hover {
     color: var(--gold);
 }

 .btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     transform: none !important;
 }

 .main-header {
     background: rgba(10, 10, 10, 0.85);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: var(--glass-border);
     padding: 15px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

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

 .logo {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-main);
     display: flex;
     align-items: center;
     gap: 10px;
 }

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

 .nav-list {
     display: flex;
     gap: 30px;
 }

 .nav-list a {
     font-size: 0.95rem;
     font-weight: 500;
     color: var(--text-muted);
     position: relative;
     padding: 5px 0;
 }

 .nav-list a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gold);
     transition: width 0.3s ease;
 }

 .nav-list a:hover,
 .nav-list a.active {
     color: var(--text-main);
 }

 .nav-list a:hover::after,
 .nav-list a.active::after {
     width: 100%;
 }

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

 .burger-menu {
     display: none;
     background: none;
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
 }


 .mobile-menu {
     display: none;
     background-color: #0f0f0f;
     padding: 20px;
     border-bottom: var(--glass-border);
     position: fixed;
     top: 70px;
     left: 0;
     width: 100%;
     z-index: 999;
     flex-direction: column;
     gap: 15px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
 }

 .mobile-menu.active {
     display: flex;
     animation: slideDown 0.3s ease;
 }

 .mobile-menu a {
     padding: 10px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     font-size: 1.1rem;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .page-header {
     padding: 80px 0 40px;
     text-align: center;
     background: linear-gradient(to bottom, rgba(0, 128, 128, 0.1), transparent);
 }

 .page-header h1 {
     font-size: 3rem;
     color: var(--text-main);
 }

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

 .content-section h2 {
     margin-bottom: 30px;
     color: var(--gold);
 }

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

 .feature-item {
     background: var(--bg-card);
     padding: 30px;
     border-radius: var(--radius-sm);
     border: var(--glass-border);
 }

 .feature-item i {
     font-size: 2rem;
     color: var(--primary);
     margin-bottom: 15px;
 }


 .hero {
     padding: 100px 0 120px;
     text-align: center;
     background: radial-gradient(circle at center, rgba(0, 128, 128, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 20px;
     background: linear-gradient(180deg, #fff 0%, #ccc 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero p {
     font-size: 1.2rem;
     color: var(--text-muted);
     max-width: 600px;
     margin: 0 auto 40px;
 }

 .hero-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
 }


 .how-it-works,
 .featured-lotteries,
 .faq-section {
     padding: 80px 0;
 }

 h2 {
     text-align: center;
     margin-bottom: 50px;
     font-size: 2.2rem;
     color: var(--text-main);
 }

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

 .step-card {
     background: var(--bg-card);
     padding: 40px 25px;
     border-radius: var(--radius-lg);
     text-align: center;
     border: var(--glass-border);
     transition: var(--transition);
 }

 .step-card:hover {
     background: var(--bg-card-hover);
     transform: translateY(-5px);
 }

 .step-card i {
     font-size: 2.5rem;
     color: var(--gold);
     margin-bottom: 20px;
 }

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

 .lottery-card {
     background: var(--bg-card);
     backdrop-filter: blur(10px);
     border-radius: var(--radius-lg);
     padding: 40px;
     text-align: center;
     border: var(--glass-border);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

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

 .lottery-logo {
     height: 80px;
     width: 80px;
     background-color: #fff;
     border-radius: 50%;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .lottery-logo img {
     max-height: 40px;
 }

 .lottery-card h3 {
     margin-bottom: 10px;
     font-size: 1.4rem;
 }

 .lottery-card p {
     color: var(--text-muted);
     margin-bottom: 25px;
 }


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

 .accordion-item {
     border-bottom: var(--glass-border);
 }

 .accordion-header {
     width: 100%;
     text-align: left;
     background: transparent;
     border: none;
     padding: 20px 0;
     color: var(--text-main);
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     transition: color 0.2s;
 }

 .accordion-header:hover {
     color: var(--gold);
 }

 .accordion-header::after {
     content: '+';
     font-size: 1.5rem;
     color: var(--primary);
 }

 .accordion-item.active .accordion-header::after {
     transform: rotate(45deg);
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease, padding 0.3s ease;
     color: var(--text-muted);
 }

 .accordion-item.active .accordion-content {
     max-height: 200px;
     padding-bottom: 20px;
 }


 .newsletter {
     text-align: center;
     padding: 80px 0;
     background: var(--bg-dark);
     border-top: var(--glass-border);
 }

 .newsletter input {
     padding: 14px 20px;
     border-radius: 50px;
     border: 1px solid #333;
     background: rgba(255, 255, 255, 0.05);
     color: white;
     width: 300px;
     margin-right: 10px;
 }


 .responsible-play-section {
     background: #0f0f0f;
     padding: 30px 0;
     border-top: var(--glass-border);
     border-bottom: var(--glass-border);
     text-align: center;
 }

 .responsible-play-section .container {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
 }

 .responsible-play-section i {
     font-size: 2rem;
     color: var(--primary);
 }

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

 .auth-card {
     background: var(--bg-card);
     backdrop-filter: blur(20px);
     padding: 40px;
     border-radius: var(--radius-lg);
     width: 100%;
     max-width: 450px;
     border: var(--glass-border);
     box-shadow: var(--shadow-card);
 }

 .auth-card h2 {
     text-align: center;
     margin-bottom: 30px;
 }

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

 .form-group label {
     display: block;
     margin-bottom: 8px;
     color: var(--text-muted);
     font-size: 0.9rem;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     width: 100%;
     padding: 12px 15px;
     border-radius: var(--radius-sm);
     border: 1px solid #333;
     background-color: var(--bg-input);
     color: white;
     font-family: inherit;
     font-size: 1rem;
     transition: var(--transition);
 }

 .form-group input:focus,
 .form-group textarea:focus {
     border-color: var(--primary);
     background-color: rgba(0, 0, 0, 0.2);
 }

 .checkbox-group {
     display: flex;
     align-items: flex-start;
     gap: 10px;
 }

 .checkbox-group input {
     width: 18px;
     height: 18px;
     margin-top: 4px;
     accent-color: var(--primary);
 }

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

 .form-footer a {
     color: var(--primary);
 }


 .contact-section {
     padding: 40px 0;
 }

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

 .info-item {
     display: flex;
     gap: 15px;
     margin-bottom: 25px;
 }

 .info-item i {
     color: var(--gold);
     font-size: 1.2rem;
     margin-top: 5px;
 }

 .map-placeholder {
     width: 100%;
     height: 200px;
     background: #151515;
     border-radius: var(--radius-sm);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     border: 1px dashed #333;
     color: #555;
     margin-top: 20px;
 }

 .buy-layout {
     padding: 50px 0;
 }

 .buy-container {
     display: grid;
     grid-template-columns: 2.5fr 1fr;
     gap: 40px;
 }

 .lottery-tabs {
     display: flex;
     gap: 15px;
     margin-bottom: 25px;
     flex-wrap: wrap;
 }

 .tab-btn {
     padding: 12px 25px;
     background: transparent;
     border: 1px solid #333;
     color: var(--text-muted);
     border-radius: var(--radius-sm);
     cursor: pointer;
     font-weight: 600;
     transition: var(--transition);
 }

 .tab-btn.active {
     background: var(--gold-gradient);
     color: #000;
     border: none;
     box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
 }

 .game-area {
     background: var(--bg-card);
     backdrop-filter: blur(10px);
     padding: 30px;
     border-radius: var(--radius-lg);
     border: var(--glass-border);
 }

 .game-header {
     text-align: center;
     margin-bottom: 30px;
 }

 .game-header h2 {
     color: var(--gold);
     margin-bottom: 5px;
 }

 .number-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
     gap: 12px;
     margin: 30px 0;
     justify-items: center;
 }

 .num-btn {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     border: none;
     background: #252525;
     color: var(--text-muted);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     transition: var(--transition);
     box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5);
 }

 .num-btn:hover {
     background: #333;
     color: white;
 }

 .num-btn.selected {
     background: var(--primary-gradient);
     color: white;
     transform: scale(1.1);
     box-shadow: 0 0 15px var(--primary);
 }

 .game-controls {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 30px;
     border-top: var(--glass-border);
     padding-top: 20px;
 }


 .cart-sidebar {
     background: var(--bg-card);
     padding: 25px;
     border-radius: var(--radius-lg);
     border: var(--glass-border);
     height: fit-content;
     position: sticky;
     top: 100px;
 }

 .cart-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     border-bottom: var(--glass-border);
     padding-bottom: 10px;
 }

 .cart-items {
     min-height: 100px;
 }

 .empty-msg {
     color: #666;
     text-align: center;
     font-style: italic;
     margin-top: 20px;
 }

 .cart-item {
     background: rgba(0, 0, 0, 0.3);
     padding: 12px;
     margin-bottom: 10px;
     border-radius: var(--radius-sm);
     font-size: 0.9rem;
     position: relative;
     border-left: 3px solid var(--primary);
 }

 .cart-item .delete-item {
     position: absolute;
     top: 10px;
     right: 10px;
     background: none;
     border: none;
     color: var(--danger);
     cursor: pointer;
     opacity: 0.7;
 }

 .cart-item .delete-item:hover {
     opacity: 1;
 }

 .total-row {
     display: flex;
     justify-content: space-between;
     font-size: 1.2rem;
     font-weight: 700;
     margin: 20px 0;
     color: var(--gold);
 }

 .main-footer {
     background: #080808;
     padding: 80px 0 30px;
     border-top: var(--glass-border);
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 50px;
 }

 .footer-col h3 {
     color: var(--gold);
     margin-bottom: 15px;
 }

 .footer-col h4 {
     color: white;
     margin-bottom: 20px;
 }

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

 .footer-col ul li a {
     color: var(--text-muted);
 }

 .footer-col ul li a:hover {
     color: var(--gold);
 }

 .payment-icons {
     font-size: 2.5rem;
     color: var(--text-muted);
     display: flex;
     gap: 20px;
 }

 .footer-bottom {
     text-align: center;
     border-top: var(--glass-border);
     padding-top: 25px;
     color: #444;
     font-size: 0.85rem;
 }

 .modal,
 .age-gate-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     backdrop-filter: blur(5px);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2000;
     opacity: 1;
     transition: opacity 0.3s;
 }

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

 .modal-content,
 .age-gate-content {
     background: #151515;
     padding: 40px;
     border-radius: var(--radius-lg);
     max-width: 500px;
     width: 90%;
     border: 1px solid var(--gold);
     box-shadow: var(--shadow-glow);
     animation: zoomIn 0.3s ease;
 }

 @keyframes zoomIn {
     from {
         transform: scale(0.9);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .modal h3,
 .age-gate-content h2 {
     color: var(--gold);
     margin-bottom: 15px;
     text-align: center;
 }

 .modal-actions,
 .age-gate-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     margin-top: 25px;
 }

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


 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #111;
     border-top: 1px solid var(--primary);
     padding: 20px;
     z-index: 9998;
     box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
 }

 .cookie-content {
     max-width: var(--container-width);
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 90%;
 }

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

 .text-link {
     background: none;
     border: none;
     text-decoration: underline;
     color: var(--gold);
     cursor: pointer;
     font-size: inherit;
 }

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

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

 @media (max-width: 768px) {
     .main-nav {
         display: none;
     }

     .burger-menu {
         display: block;
     }

     .header-actions .btn {
         display: none;
     }


     .header-actions .burger-menu {
         display: block;
     }

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

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

     .cart-sidebar {
         order: 2;
         position: static;
         margin-top: 30px;
     }

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

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

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

 .site-footer {
     background: #181818;
     color: #e5e7eb;
     padding: 24px 16px;
     font-size: 14px;
     text-align: center;
 }

 .footer-legal-block {
     max-width: 900px;
     margin: 0 auto 16px auto;
     line-height: 1.6;
 }

 .footer-logos {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 24px;
     margin-bottom: 16px;
     flex-wrap: wrap;
 }

 .footer-logo img {
     height: 60px;
     padding: 8px;
     border-radius: 8px;
     background: #fff;
     display: block;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     gap: 12px;
     flex-wrap: wrap;
     border-top: 1px solid #111827;
     padding-top: 12px;
     font-size: 12px;
     color: #9ca3af;
 }

 .footer-links {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 24px;
     margin-bottom: 16px;
     flex-wrap: wrap;
 }

 .legal-content p {
     margin-bottom: 20px;
     color: var(--text-muted);
     text-align: justify;
 }

 .legal-content h2 {
     text-align: left;
     margin-top: 40px;
     margin-bottom: 20px;
     color: var(--gold);
     font-size: 1.8rem;
 }

 .legal-content h3 {
     color: var(--text-main);
     margin-bottom: 15px;
     font-size: 1.3rem;
     margin-top: 30px;
 }

 .legal-content ul {
     margin-bottom: 20px;
     padding-left: 20px;
     color: var(--text-muted);
     list-style-type: disc;
 }

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

 .table-container {
     overflow-x: auto;
     margin: 30px 0;
     border: 1px solid var(--glass-border);
     border-radius: 8px;
 }

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     min-width: 600px;
 }

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

 .cookie-table th {
     background-color: rgba(255, 255, 255, 0.05);
     color: var(--primary);
 }

 .cookie-table td {
     color: var(--text-muted);
     font-size: 0.9rem;
 }

 .highlight-box {
     background: rgba(0, 128, 128, 0.1);
     border-left: 4px solid var(--primary);
     padding: 20px;
     margin: 30px 0;
     border-radius: 4px;
 }

 .contact-box {
     background: rgba(255, 255, 255, 0.05);
     padding: 30px;
     border-radius: 8px;
     border: 1px solid var(--glass-border);
     margin-top: 40px;
 }.help-resources { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
        .resource-card { background: rgba(0, 128, 128, 0.15); border: 1px solid var(--primary); padding: 25px; border-radius: 8px; text-align: center; transition: 0.3s; }
        .resource-card:hover { background: rgba(0, 128, 128, 0.25); transform: translateY(-5px); }
        .resource-card h4 { color: var(--gold); margin-bottom: 10px; font-size: 1.2rem; }
        .resource-card a { color: white; text-decoration: underline; font-weight: bold; }
        
        .myth-fact-box { background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--gold); }
        .myth-fact-box strong { display: block; margin-bottom: 5px; color: var(--text-main); }
        .myth { color: #ff5555; }
        .fact { color: #55ff55; }
        
        .warning-list li { padding-left: 10px; border-left: 2px solid #ff5555; margin-bottom: 15px; }