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

 :root {

     --bg-body: #0b0e11;
     --bg-surface: #151a21;
     --bg-card: #1e232b;
     --bg-input: #2a3038;
     --bg-overlay: rgba(11, 14, 17, 0.85);


     --primary: #00e676;
     --primary-dark: #00b359;
     --primary-glow: rgba(0, 230, 118, 0.4);

     --secondary: #2979ff;
     --accent: #ffd700;


     --text-main: #ffffff;
     --text-muted: #94a3b8;
     --text-dark: #121212;


     --border: #2d3748;
     --success: #00c853;
     --error: #ff5252;


     --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
     --shadow-glow: 0 0 20px var(--primary-glow);
     --backdrop: blur(12px);


     --font-head: 'Montserrat', sans-serif;
     --font-body: 'Open Sans', sans-serif;


     --radius-sm: 8px;
     --radius-md: 12px;
     --radius-lg: 20px;

     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

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

 body {
     background-color: var(--bg-body);
     color: var(--text-main);
     font-family: var(--font-body);
     line-height: 1.7;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--font-head);
     font-weight: 700;
     line-height: 1.3;
     color: var(--text-main);
 }

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

 ul {
     list-style: none;
 }

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

 .hidden {
     display: none !important;
 }

 .btn-primary,
 .btn-secondary,
 .btn-outline,
 .btn-small {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     border-radius: var(--radius-sm);
     font-family: var(--font-head);
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     gap: 10px;
     position: relative;
     overflow: hidden;
     white-space: nowrap;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: var(--text-dark);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
 }

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

 .btn-primary:active {
     transform: translateY(0);
 }

 .btn-secondary {
     background: var(--bg-input);
     color: var(--text-main);
     border: 1px solid var(--border);
 }

 .btn-secondary:hover {
     background: var(--bg-card);
     border-color: var(--text-main);
     transform: translateY(-2px);
 }

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

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

 .btn-small {
     padding: 8px 16px;
     font-size: 0.85rem;
 }

 .btn-text {
     background: none;
     border: none;
     color: var(--text-muted);
     text-decoration: underline;
     cursor: pointer;
 }

 .full-width {
     width: 100%;
 }

 .site-header {
     background: var(--bg-overlay);
     backdrop-filter: var(--backdrop);
     -webkit-backdrop-filter: var(--backdrop);
     border-bottom: 1px solid var(--border);
     position: sticky;
     top: 0;
     z-index: 1000;
     padding: 15px 0;
     transition: var(--transition);
 }

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

 .logo {
     font-family: var(--font-head);
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--text-main);
     display: flex;
     align-items: center;
     gap: 12px;
     letter-spacing: -0.5px;
 }

 .logo i {
     color: var(--primary);
     filter: drop-shadow(0 0 5px var(--primary-glow));
 }

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

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

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

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

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

 .auth-buttons {
     display: flex;
     gap: 15px;
     align-items: center;
 }

 .btn-login {
     color: var(--text-main);
     font-weight: 600;
 }

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

 .btn-register {
     background: var(--primary);
     color: var(--text-dark);
     padding: 8px 20px;
     border-radius: var(--radius-sm);
     font-weight: 700;
     font-size: 0.9rem;
 }

 .btn-register:hover {
     background: var(--primary-dark);
     box-shadow: var(--shadow-glow);
 }

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


 .hero {
     position: relative;
     padding: 120px 0;
     text-align: center;
     background: radial-gradient(circle at top center, #1c2533 0%, var(--bg-body) 70%);
     border-bottom: 1px solid var(--border);
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         linear-gradient(rgba(0, 230, 118, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 230, 118, 0.03) 1px, transparent 1px);
     background-size: 50px 50px;
     opacity: 0.5;
     z-index: 0;
 }

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

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 25px;
     background: linear-gradient(to right, #fff, #b0bec5);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     letter-spacing: -1px;
 }

 .hero p {
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 40px;
     max-width: 650px;
     margin-left: auto;
     margin-right: auto;
 }

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

 .page-hero {
     background: var(--bg-surface);
     padding: 60px 0;
     text-align: center;
     border-bottom: 1px solid var(--border);
 }

 .page-hero h1 {
     font-size: 2.5rem;
     margin-bottom: 10px;
 }

 .page-hero p {
     color: var(--text-muted);
     font-size: 1.1rem;
 }


 .section-title {
     text-align: center;
     margin: 80px 0 50px;
     font-size: 2.25rem;
     position: relative;
     display: inline-block;
     width: 100%;
 }

 .section-title::after {
     content: '';
     display: block;
     width: 60px;
     height: 4px;
     background: var(--primary);
     margin: 15px auto 0;
     border-radius: 2px;
 }


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


 .step-card,
 .lottery-card,
 .benefit-item {
     background: var(--bg-surface);
     padding: 35px 25px;
     border-radius: var(--radius-md);
     text-align: center;
     border: 1px solid var(--border);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

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

 .step-card::before,
 .lottery-card::before,
 .benefit-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), transparent);
     opacity: 0;
     transition: var(--transition);
 }

 .step-card:hover::before,
 .lottery-card:hover::before,
 .benefit-item:hover::before {
     opacity: 1;
 }

 .step-card i,
 .benefit-item i {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 25px;
     display: inline-block;
     padding: 15px;
     background: rgba(0, 230, 118, 0.1);
     border-radius: 50%;
 }

 .step-card h3,
 .lottery-card h3,
 .benefit-item h4 {
     margin-bottom: 15px;
     font-size: 1.25rem;
 }

 .step-card p,
 .lottery-card p,
 .benefit-item p {
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 .lottery-card {
     background: linear-gradient(160deg, var(--bg-surface), #1a2029);
 }

 .lottery-card img {
     height: 80px;
     width: auto;
     margin-bottom: 25px;
     filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
     background: #fff;
     padding: 10px;
     border-radius: var(--radius-sm);
 }

 .lottery-card .btn-primary {
     margin-top: auto;
     width: 100%;
 }


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

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

 .text-block h2 {
     color: var(--primary);
     margin: 40px 0 20px;
 }

 .info-box {
     padding: 30px;
     border-radius: var(--radius-md);
     margin: 30px 0;
     border-left: 4px solid var(--primary);
 }

 .responsible-box {
     background: rgba(0, 230, 118, 0.05);
     border-color: var(--primary);
 }

 .disclaimer-box {
     background: rgba(41, 121, 255, 0.05);
     border-color: var(--secondary);
 }


 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 50px;
     padding: 60px 0;
     align-items: start;
 }

 .contact-info,
 .cart-summary {
     background: var(--bg-surface);
     padding: 30px;
     border-radius: var(--radius-md);
     border: 1px solid var(--border);
 }

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

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


 .dark-form .form-group {
     margin-bottom: 25px;
 }

 .dark-form label {
     display: block;
     margin-bottom: 10px;
     color: var(--text-muted);
     font-size: 0.9rem;
     font-weight: 600;
 }

 .dark-form input[type="text"],
 .dark-form input[type="email"],
 .dark-form input[type="password"],
 .dark-form input[type="number"],
 .dark-form textarea {
     width: 100%;
     padding: 14px;
     background-color: var(--bg-input);
     border: 2px solid transparent;
     border-radius: var(--radius-sm);
     color: var(--text-main);
     font-family: var(--font-body);
     font-size: 1rem;
     transition: var(--transition);
 }

 .dark-form input:focus,
 .dark-form textarea:focus {
     outline: none;
     border-color: var(--primary);
     background-color: var(--bg-body);
     box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1);
 }

 .checkbox-group {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .checkbox-group input {
     width: 18px;
     height: 18px;
     cursor: pointer;
 }

 .success-message {
     margin-top: 15px;
     color: var(--success);
     font-weight: bold;
     text-align: center;
     background: rgba(0, 200, 83, 0.1);
     padding: 10px;
     border-radius: var(--radius-sm);
 }


 .buy-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 30px;
     padding: 40px 0;
 }

 .game-selection {
     display: flex;
     flex-direction: column;
 }

 .tabs {
     display: flex;
     gap: 5px;
     background: var(--bg-surface);
     padding: 5px;
     border-radius: var(--radius-md);
     margin-bottom: 20px;
 }

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

 .tab-btn.active {
     background: var(--bg-input);
     color: var(--text-main);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .number-picker-area {
     background: var(--bg-surface);
     padding: 30px;
     border-radius: var(--radius-md);
     border: 1px solid var(--border);
 }

 .number-grid {
     display: grid;
     grid-template-columns: repeat(7, 1fr);
     gap: 12px;
     margin: 30px 0;
 }

 .num-btn {
     aspect-ratio: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--bg-input);
     border: 1px solid var(--border);
     color: var(--text-muted);
     border-radius: 50%;
     cursor: pointer;
     transition: var(--transition);
     font-weight: 700;
     font-size: 1.1rem;
 }

 .num-btn:hover {
     border-color: var(--primary);
     color: var(--text-main);
 }

 .num-btn.selected {
     background: var(--primary);
     color: var(--text-dark);
     border-color: var(--primary);
     box-shadow: 0 0 10px var(--primary-glow);
     transform: scale(1.1);
 }

 .picker-controls {
     display: flex;
     gap: 15px;
     margin-top: 25px;
 }

 .summary-details {
     margin: 20px 0;
 }

 .summary-details p {
     margin-bottom: 12px;
     border-bottom: 1px solid var(--border);
     padding-bottom: 8px;
     display: flex;
     justify-content: space-between;
 }

 .ticket-qty-box input {
     width: 70px;
     text-align: center;
 }

 .total-cost {
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--primary);
     margin-top: 15px;
     text-align: right;
     display: block !important;
     border: none !important;
 }


 .auth-section {
     display: flex;
     justify-content: center;
     padding: 80px 0;
 }

 .auth-container {
     background: var(--bg-surface);
     padding: 50px 40px;
     border-radius: var(--radius-lg);
     width: 100%;
     max-width: 450px;
     border: 1px solid var(--border);
     box-shadow: var(--shadow-card);
 }

 .auth-container h2 {
     text-align: center;
     margin-bottom: 40px;
 }

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

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

 .responsible-strip {
     background: linear-gradient(90deg, #1a2029, #0f1216);
     padding: 20px 0;
     text-align: center;
     border-top: 1px solid var(--border);
     margin-top: auto;
 }

 .responsible-strip p {
     color: var(--text-muted);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .responsible-strip a {
     color: var(--secondary);
     font-weight: 600;
     text-decoration: underline;
     text-underline-offset: 3px;
 }

 .site-footer {
     background: #050709;
     padding: 60px 0 30px;
     border-top: 1px solid var(--border);
 }

 .footer-content {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-col {
     flex: 1;
     min-width: 200px;
 }

 .footer-col h4 {
     color: var(--text-main);
     margin-bottom: 20px;
     font-size: 1.1rem;
     letter-spacing: 0.5px;
 }

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

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

 .footer-col ul li a:hover {
     color: var(--primary);
     padding-left: 5px;
 }

 .social-icons {
     display: flex;
     gap: 15px;
 }

 .social-icons a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: var(--bg-surface);
     color: var(--text-main);
     border-radius: 50%;
     transition: var(--transition);
 }

 .social-icons a:hover {
     background: var(--primary);
     color: var(--text-dark);
     transform: translateY(-3px);
 }

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

 .disclaimer {
     font-size: 0.8rem;
     color: #555;
     margin-top: 10px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .overlay-container,
 .modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.85);
     backdrop-filter: blur(8px);
     z-index: 2000;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .overlay-content,
 .modal-content {
     background: var(--bg-surface);
     padding: 40px;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border);
     max-width: 500px;
     width: 100%;
     text-align: center;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
     position: relative;
     animation: fadeIn 0.4s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 .overlay-content i {
     font-size: 3.5rem;
     color: var(--primary);
     margin-bottom: 25px;
     filter: drop-shadow(0 0 10px var(--primary-glow));
 }

 .overlay-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     margin-top: 30px;
 }

 .close-modal {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--text-muted);
 }

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

 .cookie-banner {
     background: rgba(30, 35, 43, 0.95);
     backdrop-filter: blur(10px);
     border-top: 1px solid var(--border);
     padding: 20px 0;
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     z-index: 1500;
     display: flex;
     justify-content: center;
 }

 .cookie-banner .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 20px;
 }

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

 .cookie-buttons {
     display: flex;
     gap: 15px;
     align-items: center;
 }

 .cookie-option {
     text-align: left;
     margin-bottom: 15px;
     border-bottom: 1px solid var(--border);
     padding-bottom: 10px;
 }

 .cookie-option label {
     font-weight: 700;
     color: var(--text-main);
 }

 .cookie-option p {
     font-size: 0.85rem;
     color: var(--text-muted);
 }

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

 @media (max-width: 768px) {
     .site-header {
         padding: 10px 0;
     }

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

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

     .main-nav,
     .auth-buttons {
         position: fixed;
         left: 0;
         width: 100%;
         background: var(--bg-surface);
         flex-direction: column;
         padding: 20px;
         border-bottom: 1px solid var(--border);
         display: none;
     }

     .main-nav {
         top: 60px;
         z-index: 999;
     }

     .auth-buttons {
         top: 300px;
         z-index: 999;
         border-top: none;
     }

     .main-nav.show,
     .auth-buttons.show {
         display: flex;
         animation: slideDown 0.3s ease-out;
     }

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

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

     .nav-list {
         flex-direction: column;
         width: 100%;
         text-align: center;
         gap: 15px;
     }

     .contact-grid,
     .buy-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

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

     .number-grid {
         gap: 8px;
     }

     .num-btn {
         font-size: 0.9rem;
     }

     .footer-content {
         flex-direction: column;
         gap: 30px;
     }
 }

 .site-footer {
     background: #050816;
     color: #e5e7eb;
     padding: 32px 16px 24px;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     font-size: 14px;
 }

 .site-footer a {
     color: #93c5fd;
     text-decoration: none;
 }

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

 .site-footer-inner {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-top {
     margin-bottom: 24px;
 }

 .footer-top p {
     margin: 0 0 8px;
     line-height: 1.5;
 }

 .footer-logos {
     display: flex;
     flex-wrap: wrap;
     gap: 16px 32px;
     align-items: center;
     padding: 16px 0;
     border-top: 1px solid #1f2937;
     border-bottom: 1px solid #1f2937;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .footer-logo img {
     height: 60px;
     width: auto;
     border-radius: 8px; 
     display: block;
 }

 .footer-logo span {
     font-weight: 500;
 }

 .footer-age {
     margin-left: auto;
     padding: 8px 12px;
     border-radius: 999px;
     border: 1px solid #facc15;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 8px;
     white-space: nowrap;
     font-size: 13px;
 }

 .footer-bottom {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     justify-content: space-between;
     margin-top: 16px;
     font-size: 12px;
     color: #9ca3af;
 }

.links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

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

     .footer-age {
         margin-left: 0;
     }
 }