 :root {
     --bg-dark: #12121f;
     --surface-dark: #1a1a2e;
     --surface-light: #2a2a40;
     --text-primary: #f0f0f0;
     --text-secondary: #a9a9c0;
     --accent-primary: #00c6ff;
     --accent-primary-darker: #009bcc;
     --accent-secondary: #28a745;
     --error: #e74c3c;
     --success: #2ecc71;
     --font-heading: 'Montserrat', sans-serif;
     --font-body: 'Roboto', sans-serif;
     --header-height: 70px;
     --border-radius: 8px;
     --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     --shadow-light: 0 4px 15px rgba(0, 198, 255, 0.1);
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     background-color: var(--bg-dark);
     color: var(--text-primary);
     line-height: 1.7;
     font-size: 16px;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--font-heading);
     color: var(--text-primary);
     margin-bottom: 1rem;
     line-height: 1.3;
     font-weight: 600;
 }

 h1 {
     font-size: 2.8rem;
 }

 h2 {
     font-size: 2.2rem;
 }

 h3 {
     font-size: 1.5rem;
 }

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

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

 a:hover {
     color: var(--accent-primary-darker);
     text-decoration: underline;
 }

 .text-link {
     font-weight: bold;
 }

 img {
     max-width: 100%;
     height: auto;
     border-radius: var(--border-radius);
 }

 ul {
     list-style: none;
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
 }

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

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
     font-size: 2.5rem;
     position: relative;
     padding-bottom: 1rem;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background-color: var(--accent-primary);
     border-radius: 2px;
 }

 section {
     padding: 5rem 0;
 }

 section:nth-of-type(even) {
     background-color: var(--surface-dark);
 }


 .btn {
     display: inline-block;
     padding: 0.8rem 1.8rem;
     font-family: var(--font-heading);
     font-weight: 600;
     font-size: 0.9rem;
     letter-spacing: 0.5px;
     text-transform: uppercase;
     text-align: center;
     border: 2px solid transparent;
     border-radius: var(--border-radius);
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none !important;
 }

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

 .btn-primary:hover {
     background-color: var(--accent-primary-darker);
     border-color: var(--accent-primary-darker);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: var(--shadow-light);
 }

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

 .btn-secondary:hover {
     background-color: var(--accent-primary);
     color: var(--bg-dark);
     transform: translateY(-2px);
     box-shadow: var(--shadow-light);
 }

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

 .btn-block {
     display: block;
     width: 100%;
 }

 .btn:disabled {
     background-color: var(--surface-light);
     border-color: var(--surface-light);
     color: var(--text-secondary);
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }



 .main-header {
     background-color: var(--surface-dark);
     border-bottom: 1px solid var(--surface-light);
     height: var(--header-height);
     position: fixed;
     width: 100%;
     top: 0;
     left: 0;
     z-index: 1000;
     box-shadow: var(--shadow);
 }

 .main-header nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 100%;
 }

 .logo {
     font-family: var(--font-heading);
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--text-primary);
     text-decoration: none !important;
 }

 .logo i {
     color: var(--accent-primary);
     margin-right: 0.5rem;
     transform: rotate(-15deg);
 }

 .nav-links {
     display: flex;
     align-items: center;
 }

 .nav-links li {
     margin-left: 1.5rem;
 }

 .nav-links a {
     color: var(--text-secondary);
     font-weight: 500;
     text-transform: uppercase;
     font-size: 0.9rem;
     padding: 0.5rem;
     position: relative;
     text-decoration: none;
 }

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

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

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

 .burger {
     display: none;
     cursor: pointer;
 }

 .burger div {
     width: 25px;
     height: 3px;
     background-color: var(--text-primary);
     margin: 5px;
     transition: all 0.3s ease;
 }


 main {
     margin-top: var(--header-height);
 }



 .main-footer {
     background-color: var(--surface-dark);
     padding: 4rem 0 2rem 0;
     border-top: 2px solid var(--surface-light);
     color: var(--text-secondary);
 }

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

 .footer-col h3 {
     color: var(--text-primary);
     margin-bottom: 1.5rem;
     font-size: 1.2rem;
 }

 .footer-col p {
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 .contact-list li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1rem;
     font-size: 0.9rem;
 }

 .contact-list i {
     color: var(--accent-primary);
     margin-right: 1rem;
     margin-top: 5px;
     width: 20px;
     text-align: center;
 }

 .quick-links li {
     margin-bottom: 0.8rem;
 }

 .quick-links a {
     color: var(--text-secondary);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
 }

 .quick-links i {
     margin-right: 0.75rem;
     width: 20px;
 }

 .quick-links a:hover {
     color: var(--accent-primary);
     text-decoration: none;
     transform: translateX(5px);
 }

 .social-icons {
     margin-bottom: 1.5rem;
 }

 .social-icons a {
     color: var(--text-secondary);
     font-size: 1.3rem;
     margin-right: 1.2rem;
     transition: all 0.3s ease;
 }

 .social-icons a:hover {
     color: var(--accent-primary);
     transform: scale(1.1);
 }

 .disclaimer-title {
     margin-top: 1.5rem;
     border-top: 1px solid var(--surface-light);
     padding-top: 1.5rem;
 }

 .disclaimer-text {
     font-size: 0.8rem;
     font-style: italic;
     line-height: 1.5;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     border-top: 1px solid var(--surface-light);
     font-size: 0.9rem;
 }




 .hero {
     height: calc(100vh - var(--header-height));
     min-height: 500px;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: #fff;

     background: linear-gradient(rgba(18, 18, 31, 0.85), rgba(18, 18, 31, 0.85)),
         url('../img/hero.png') no-repeat center center/cover;

 }

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

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 1rem;
     font-weight: 700;
     color: #fff;
 }

 .hero .subheadline {
     font-size: 1.3rem;
     color: var(--text-primary);
     margin-bottom: 2.5rem;
     font-weight: 400;
 }

 .hero-cta .btn {
     margin: 0 0.5rem;
     font-size: 1rem;
     padding: 1rem 2.5rem;
 }

 .trust-badges {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-top: 3rem;
     flex-wrap: wrap;
 }

 .badge {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 0.8rem 1.2rem;
     border-radius: var(--border-radius);
     display: flex;
     align-items: center;
     font-weight: 500;
     font-size: 0.9rem;
 }

 .badge i {
     color: var(--accent-secondary);
     margin-right: 0.75rem;
     font-size: 1.2rem;
 }

 .badge:nth-child(1) i {
     color: var(--accent-secondary);
 }

 .badge:nth-child(2) i {
     color: var(--accent-primary);
 }

 .badge:nth-child(3) i {
     color: #e74c3c;
 }



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

 .lotto-card {
     background-color: var(--surface-dark);
     border: 1px solid var(--surface-light);
     border-radius: var(--border-radius);
     padding: 2rem;
     text-align: center;
     box-shadow: var(--shadow);
     transition: all 0.3s ease;
 }

 .lotto-card:hover {
     transform: translateY(-5px);
     border-color: var(--accent-primary);
     box-shadow: var(--shadow-light);
 }

 .lotto-logo {
     margin: 0 auto 1.5rem auto;
     border-radius: var(--border-radius);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     font-weight: 700;
     font-family: var(--font-heading);
     color: #fff;
 }

 .lotto-logo img {
     width: 100%;

 }

 .lotto-card h3 {
     color: var(--accent-primary);
     margin-bottom: 1rem;
 }

 .lotto-card p {
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
     min-height: 100px;
 }


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

 .step-card {
     padding: 2rem;
 }

 .step-card i {
     font-size: 3rem;
     color: var(--accent-primary);
     margin-bottom: 1.5rem;
     display: block;
 }

 .step-card h3 {
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
 }


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

 .benefit-card {
     background-color: var(--surface-dark);
     padding: 2.5rem;
     border-radius: var(--border-radius);
     border-left: 5px solid var(--accent-primary);
     box-shadow: var(--shadow);
 }

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

 .benefit-card h3 {
     margin-bottom: 0.5rem;
 }


 .responsible-play {
     background-color: var(--surface-light);
 }

 .responsible-play .icon-large {
     font-size: 4rem;
     color: var(--accent-secondary);
     margin-bottom: 1.5rem;
 }

 .responsible-play p {
     max-width: 700px;
     margin: 0 auto;
 }


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

 .contact-teaser p {
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
 }



 .page-header {
     background-color: var(--surface-dark);
     padding: 3rem 0;
     text-align: center;
     border-bottom: 1px solid var(--surface-light);
 }

 .page-header h1 {
     font-size: 2.8rem;
     margin-bottom: 0.5rem;
 }

 .page-header p {
     font-size: 1.1rem;
     color: var(--text-secondary);
     margin: 0;
 }


 .about-grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 3rem;
     align-items: center;
 }

 .about-text h2 {
     color: var(--accent-primary);
     margin-top: 1.5rem;
     margin-bottom: 1rem;
 }

 .about-text h2:first-child {
     margin-top: 0;
 }

 .about-image img {
     box-shadow: var(--shadow);
 }

 .our-values {
     background-color: var(--bg-dark);
 }


 #page-auth {
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 100vh;
     padding: 2rem 0;

     background: var(--bg-dark) linear-gradient(160deg, var(--surface-dark) 0%, var(--bg-dark) 100%);
     margin-top: 0;
 }

 .auth-container {
     width: 90%;
     max-width: 450px;
     margin: 20px auto;
     padding-top: 80px;
 }

 .auth-card {
     background-color: var(--surface-dark);
     padding: 2.5rem;
     border-radius: var(--border-radius);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     border: 1px solid var(--surface-light);
 }

 .auth-logo {
     display: block;
     text-align: center;
     margin-bottom: 1.5rem;
     font-size: 1.8rem;
 }

 .auth-card h2 {
     text-align: center;
     font-size: 1.8rem;
 }

 .auth-card p {
     text-align: center;
     margin-bottom: 2rem;
     font-size: 0.9rem;
 }

 .auth-switch {
     text-align: center;
     margin-top: 1.5rem;
     padding-top: 1.5rem;
     border-top: 1px solid var(--surface-light);
 }

 .auth-switch p {
     margin: 0;
     font-size: 0.9rem;
 }



 .dark-form {
     width: 100%;
 }

 .form-control {
     margin-bottom: 1.5rem;
     position: relative;
 }

 .form-control label {
     display: block;
     font-weight: 500;
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
     color: var(--text-primary);
 }

 .form-control input[type="text"],
 .form-control input[type="email"],
 .form-control input[type="password"],
 .form-control input[type="number"],
 .form-control textarea {
     display: block;
     width: 100%;
     padding: 0.9rem 1rem;
     background-color: var(--bg-dark);
     border: 1px solid var(--surface-light);
     border-radius: var(--border-radius);
     color: var(--text-primary);
     font-family: var(--font-body);
     font-size: 1rem;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

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

 .form-control input:focus,
 .form-control textarea:focus {
     outline: none;
     border-color: var(--accent-primary);
     box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.2);
 }

 .form-control small {
     color: var(--error);
     position: absolute;
     bottom: -1.2rem;
     left: 0;
     font-size: 0.8rem;
     visibility: hidden;
 }


 .form-control.success input,
 .form-control.success textarea {
     border-color: var(--success);
 }

 .form-control.error input,
 .form-control.error textarea {
     border-color: var(--error);
 }

 .form-control.error small {
     visibility: visible;
 }


 .checkbox-control {
     display: flex;
     align-items: center;
     margin-bottom: 1.5rem;
 }

 .checkbox-control input[type="checkbox"] {
     appearance: none;
     width: 18px;
     height: 18px;
     background-color: var(--bg-dark);
     border: 2px solid var(--surface-light);
     border-radius: 4px;
     cursor: pointer;
     margin-right: 0.75rem;
     position: relative;
     top: -2px;
     flex-shrink: 0;
 }

 .checkbox-control input[type="checkbox"]:checked {
     background-color: var(--accent-primary);
     border-color: var(--accent-primary);
 }

 .checkbox-control input[type="checkbox"]:checked::after {
     content: '\f00c';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     color: var(--bg-dark);
     position: absolute;
     font-size: 12px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .checkbox-control label {
     margin: 0;
     font-size: 0.9rem;
     color: var(--text-secondary);
     user-select: none;
 }

 .checkbox-control.terms-control label {
     font-size: 0.85rem;
     line-height: 1.4;
 }

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

 .form-options .checkbox-control {
     margin: 0;
 }

 .form-options a {
     font-size: 0.9rem;
 }


 .form-message {
     padding: 1rem;
     margin-bottom: 1rem;
     border-radius: var(--border-radius);
     font-size: 0.9rem;
     display: none;
 }

 .form-message.success {
     background-color: rgba(46, 204, 113, 0.1);
     border: 1px solid var(--success);
     color: var(--success);
     display: block;
 }

 .form-message.error {
     background-color: rgba(231, 76, 60, 0.1);
     border: 1px solid var(--error);
     color: var(--error);
     display: block;
 }



 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 3rem;
     background-color: var(--surface-dark);
     padding: 3rem;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
 }

 .contact-info h3,
 .contact-form-container h3 {
     font-size: 1.8rem;
     margin-bottom: 2rem;
     color: var(--text-primary);
 }

 .contact-info .contact-list {
     margin-top: 2rem;
 }

 .contact-info .contact-list li {
     align-items: flex-start;
 }

 .contact-info .contact-list div {
     flex: 1;
 }

 .contact-info .contact-list strong {
     display: block;
     color: var(--text-primary);
     font-size: 1rem;
     margin-bottom: 0.25rem;
 }

 .contact-info .contact-list p {
     margin: 0;
     font-size: 0.9rem;
 }

 .contact-info .social-icons {
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid var(--surface-light);
 }



 .buy-ticket-layout {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 2rem;
 }


 .lotto-tabs {
     display: flex;
     background-color: var(--surface-dark);
     border-radius: var(--border-radius);
     overflow: hidden;
     margin-bottom: 1.5rem;
 }

 .tab-btn {
     flex: 1;
     padding: 1.2rem;
     background-color: transparent;
     border: none;
     color: var(--text-secondary);
     font-family: var(--font-heading);
     font-weight: 600;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     border-bottom: 3px solid transparent;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .tab-btn:hover {
     background-color: var(--surface-light);
     color: var(--text-primary);
 }

 .tab-btn.active {
     color: var(--text-primary);
     background-color: var(--surface-light);
     border-bottom-color: var(--accent-primary);
 }

 .lotto-logo.small {
     height: 25px;
     width: 25px;
     font-size: 0.8rem;
     font-weight: bold;
     border-radius: 50%;
     margin-right: 0.75rem;
     flex-shrink: 0;
 }


 .lotto-panel {
     display: none;
     background-color: var(--surface-dark);
     padding: 2rem;
     border-radius: var(--border-radius);
     border: 1px solid var(--surface-light);
 }

 .lotto-panel.active {
     display: block;
 }

 .lotto-panel h3 {
     font-size: 1.3rem;
     color: var(--text-primary);
 }

 .extra-pick-title {
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid var(--surface-light);
 }

 .panel-controls {
     margin: 1rem 0 1.5rem 0;
     display: flex;
     gap: 1rem;
 }


 .number-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
     gap: 0.75rem;
 }

 .num-btn {
     width: 48px;
     height: 48px;
     background-color: var(--bg-dark);
     border: 1px solid var(--surface-light);
     border-radius: 50%;
     color: var(--text-primary);
     font-family: var(--font-heading);
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.2s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .num-btn:hover {
     background-color: var(--surface-light);
     border-color: var(--accent-primary);
 }

 .num-btn.selected {
     background-color: var(--accent-primary);
     color: var(--bg-dark);
     border-color: var(--accent-primary);
     box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
 }

 .num-btn.disabled {
     opacity: 0.5;
     cursor: not-allowed;
     background-color: var(--surface-light);
 }

 .num-btn.disabled:hover {
     border-color: var(--surface-light);
 }


 .extra-grid {
     grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
     max-width: 400px;
 }

 .extra-grid .num-btn {
     background-color: var(--bg-dark);
     border: 1px dashed var(--accent-primary);
 }

 .extra-grid .num-btn:hover {
     background-color: var(--surface-light);
 }

 .extra-grid .num-btn.selected {
     background-color: var(--accent-primary);
     color: var(--bg-dark);
 }



 .ticket-summary {
     background-color: var(--surface-dark);
     padding: 2rem;
     border-radius: var(--border-radius);
     border: 1px solid var(--surface-light);
     position: sticky;
     top: calc(var(--header-height) + 2rem);
 }

 .ticket-summary h3 {
     font-size: 1.3rem;
     padding-bottom: 1rem;
     border-bottom: 1px solid var(--surface-light);
 }

 .ticket-summary h3 i {
     margin-right: 0.5rem;
     color: var(--accent-primary);
 }

 .summary-item {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     padding: 1.2rem 0;
     border-bottom: 1px solid var(--surface-light);
     font-size: 0.9rem;
 }

 .summary-item span {
     color: var(--text-secondary);
 }

 .summary-item strong {
     color: var(--text-primary);
     font-size: 1rem;
 }

 .summary-numbers-list {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     justify-content: flex-end;
     max-width: 60%;
 }

 .summary-numbers-list .num-bubble {
     width: 30px;
     height: 30px;
     background-color: var(--accent-primary);
     color: var(--bg-dark);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 0.9rem;
 }

 .summary-numbers-list .num-bubble.extra {
     background-color: var(--accent-secondary);
     color: #fff;
 }

 .summary-numbers-list .placeholder {
     font-style: italic;
     font-size: 0.9rem;
     color: var(--text-secondary);
     text-align: right;
 }

 .summary-qty {
     align-items: center;
 }

 .summary-qty input[type="number"] {
     width: 70px;
     padding: 0.5rem;
     font-size: 1rem;
     text-align: center;
 }

 .summary-total {
     padding: 1.5rem 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .summary-total span {
     font-size: 1.1rem;
     font-weight: 500;
     color: var(--text-primary);
 }

 .summary-total strong {
     font-size: 2rem;
     font-weight: 700;
     color: var(--accent-secondary);
 }

 .ticket-summary .btn-block {
     margin-top: 1rem;
 }

 .responsible-note {
     margin-top: 1.5rem;
     padding-top: 1.5rem;
     border-top: 1px solid var(--surface-light);
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
 }

 .responsible-note i {
     color: var(--accent-primary);
     margin-top: 5px;
 }

 .responsible-note p {
     font-size: 0.85rem;
     line-height: 1.5;
     margin: 0;
 }





 @media screen and (max-width: 992px) {
     h1 {
         font-size: 2.5rem;
     }

     h2 {
         font-size: 2rem;
     }

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

     .hero .subheadline {
         font-size: 1.2rem;
     }

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

     .about-image {
         order: -1;
         max-width: 500px;
         margin: 0 auto;
     }

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

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

     .ticket-summary {
         position: relative;
         top: 0;
         margin-top: 2rem;
     }
 }


 @media screen and (max-width: 768px) {
     body {
         font-size: 15px;
     }

     h1 {
         font-size: 2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

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


     .nav-links {
         position: fixed;
         top: var(--header-height);
         right: 0;
         height: calc(100vh - var(--header-height));
         width: 70%;
         max-width: 300px;
         background-color: var(--surface-dark);
         flex-direction: column;
         align-items: flex-start;
         padding: 2rem;
         transform: translateX(100%);
         transition: transform 0.5s ease-in;
         border-left: 1px solid var(--surface-light);
     }

     .nav-links.nav-active {
         transform: translateX(0%);
     }

     .nav-links li {
         margin-left: 0;
         width: 100%;
     }

     .nav-links a {
         display: block;
         padding: 1.2rem 0;
         width: 100%;
         font-size: 1.1rem;
     }

     .nav-links a::after {
         display: none;
     }

     .nav-links .nav-auth {
         margin-top: 1rem;
     }

     .nav-links .nav-auth .btn {
         width: 100%;
         text-align: center;
         margin-bottom: 1rem;
     }

     .burger {
         display: block;
     }


     .toggle .line1 {
         transform: rotate(-45deg) translate(-5px, 6px);
     }

     .toggle .line2 {
         opacity: 0;
     }

     .toggle .line3 {
         transform: rotate(45deg) translate(-5px, -6px);
     }


     .hero {
         height: auto;
         padding: 6rem 0;
     }

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

     .hero .subheadline {
         font-size: 1.1rem;
     }

     .hero-cta {
         display: flex;
         flex-direction: column;
         gap: 1rem;
     }

     .hero-cta .btn {
         width: 100%;
         max-width: 300px;
         margin: 0 auto;
     }

     .trust-badges {
         flex-direction: column;
         align-items: center;
         gap: 1rem;
     }


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

     .contact-list li {
         flex-direction: column;
         align-items: center;
         gap: 0.5rem;
     }

     .contact-list i {
         margin: 0;
     }

     .quick-links a {
         justify-content: center;
     }

     .social-icons {
         display: flex;
         justify-content: center;
     }


     .tab-btn {
         font-size: 0.9rem;
         padding: 1rem 0.5rem;
     }

     .lotto-logo.small {
         margin-right: 0.5rem;
         width: 20px;
         height: 20px;
         font-size: 0.7rem;
     }

     .number-grid {
         gap: 0.5rem;
     }

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

     .summary-numbers-list {
         max-width: 50%;
     }


     .auth-container {
         width: 100%;
         padding: 1rem;
     }

     .auth-card {
         padding: 2rem 1.5rem;
     }

     #page-auth {
         padding: 0;
         min-height: 100vh;
         align-items: flex-start;
         padding-top: 3rem;
     }


     .contact-grid {
         padding: 2rem 1.5rem;
     }
 }

 .footer-imgs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
 }

 .footer-imgs img {
     padding: 12px;
     margin: 12px;
     height: 55px;
     background: white;
     border-radius: 10px;
 }

 .btn-primary {
     background: #00c6ff;
     color: #0b1120;
     border: none;
     padding: 0.6rem 1.4rem;
     border-radius: 999px;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
 }

 .btn-primary:hover {
     transform: translateY(-1px);
     box-shadow: 0 8px 18px rgba(0, 198, 255, 0.4);
     background: #42d9ff;
 }

 .btn-ghost {
     background: transparent;
     border: 1px solid #00c6ff;
     color: #e5e7eb;
     padding: 0.6rem 1.4rem;
     border-radius: 999px;
     font-weight: 500;
     cursor: pointer;
     transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
 }

 .btn-ghost:hover {
     background: rgba(0, 198, 255, 0.1);
     transform: translateY(-1px);
 }

 .btn-outline {
     background: transparent;
     border: 1px solid #00c6ff;
     color: #e5e7eb;
     padding: 0.4rem 1rem;
     border-radius: 999px;
     font-size: 0.9rem;
     cursor: pointer;
     transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
 }

 .btn-outline:hover {
     background: rgba(0, 198, 255, 0.1);
     transform: translateY(-1px);
 }

 .age-overlay {
     position: fixed;
     inset: 0;
     background: rgba(10, 10, 22, 0.9);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 9999;
 }

 .age-modal {
     background: #1a1a2e;
     border-radius: 16px;
     padding: 2rem 2.2rem;
     max-width: 460px;
     width: 90%;
     color: #e5e7eb;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
     border: 1px solid rgba(0, 198, 255, 0.35);
 }

 .age-modal h2 {
     margin: 0 0 0.75rem;
     font-size: 1.4rem;
     color: #f9fafb;
 }

 .age-modal p {
     margin: 0 0 1.4rem;
     line-height: 1.5;
     font-size: 0.95rem;
     color: #d1d5db;
 }

 .age-buttons {
     display: flex;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .cookie-banner {
     position: fixed;
     bottom: 1rem;
     left: 50%;
     transform: translateX(-50%);
     width: min(960px, 96%);
     background: #1a1a2e;
     color: #e5e7eb;
     border-radius: 14px;
     padding: 1rem 1.2rem;
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
     border: 1px solid rgba(0, 198, 255, 0.35);
     z-index: 9998;
     display: none;
 }

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

 .cookie-text h3 {
     margin: 0 0 0.3rem;
     font-size: 1rem;
     color: #f9fafb;
 }

 .cookie-text p {
     margin: 0;
     font-size: 0.85rem;
     max-width: 540px;
     color: #d1d5db;
 }

 .cookie-actions {
     display: flex;
     gap: 0.5rem;
 }

 .cookie-settings-overlay {
     position: fixed;
     inset: 0;
     background: rgba(10, 10, 22, 0.9);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 10000;
 }

 .cookie-settings-modal {
     background: #1a1a2e;
     border-radius: 16px;
     padding: 1.5rem 1.7rem;
     width: min(520px, 95%);
     color: #e5e7eb;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
     border: 1px solid rgba(0, 198, 255, 0.35);
 }

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

 .cookie-settings-header h3 {
     margin: 0;
     font-size: 1.1rem;
 }

 .close-btn {
     background: transparent;
     border: none;
     color: #9ca3af;
     font-size: 1.6rem;
     cursor: pointer;
     padding: 0;
     line-height: 1;
 }

 .close-btn:hover {
     color: #f9fafb;
 }

 .cookie-settings-desc {
     font-size: 0.85rem;
     color: #d1d5db;
     margin-bottom: 1.2rem;
 }

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

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

 .cookie-option strong {
     display: block;
     margin-bottom: 0.1rem;
 }

 .cookie-option p {
     margin: 0;
     font-size: 0.8rem;
     color: #9ca3af;
 }

 .cookie-settings-footer {
     margin-top: 1.2rem;
     text-align: right;
 }

 .switch {
     position: relative;
     display: inline-block;
     width: 46px;
     height: 24px;
 }

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

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

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

 .switch input:checked+.slider {
     background-color: #00c6ff;
 }

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

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

 @media (max-width: 640px) {
     .cookie-actions {
         width: 100%;
         justify-content: flex-start;
     }

     .cookie-banner {
         bottom: 0.5rem;
         border-radius: 12px;
     }
 }

 .benefits-grid.single-column {
     grid-template-columns: 1fr;
     max-width: 800px;
     margin: 2rem 0;
 }

 .icon-list li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1.25rem;
     font-size: 1.05rem;
 }

 .icon-list i {
     color: var(--accent-primary);
     font-size: 1.3rem;
     margin-right: 1.25rem;
     margin-top: 4px;
     width: 30px;
     text-align: center;
 }

 .benefits-grid.single-column {
     grid-template-columns: 1fr;
     max-width: 800px;
     margin: 2rem 0;
 }

 .resource-links li {
     margin-bottom: 1rem;
 }

 .resource-links a {
     font-size: 1rem;
     color: var(--text-primary);
 }

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

 .resource-links a i {
     color: var(--accent-secondary);
     margin-right: 1rem;
 }