 :root {

     --primary-navy: #0a1f35;
     --primary-teal: #00897b;
     --teal-dark: #00695c;
     --teal-light: #4db6ac;
     --accent-gold: #ffc107;


     --bg-body: #f4f6f9;
     --bg-white: #ffffff;
     --text-main: #1e293b;
     --text-muted: #64748b;
     --text-light: #ffffff;
     --border-color: #e2e8f0;


     --font-heading: 'Montserrat', sans-serif;
     --font-body: 'Inter', sans-serif;


     --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
     --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
     --shadow-glow: 0 0 15px rgba(0, 137, 123, 0.3);
     --radius-sm: 6px;
     --radius-md: 12px;
 }

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

 body {
     font-family: var(--font-body);
     background-color: var(--bg-body);
     color: var(--text-main);
     line-height: 1.6;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
 }

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

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

 ul {
     list-style: none;
 }

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

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


 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 14px 28px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     border: none;
     letter-spacing: 0.5px;
     box-shadow: var(--shadow-sm);
 }

 .btn:active {
     transform: scale(0.98);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
     color: var(--text-light);
     box-shadow: 0 4px 15px rgba(0, 137, 123, 0.4);
 }

 .btn-primary:hover {
     background: linear-gradient(135deg, var(--teal-light) 0%, var(--primary-teal) 100%);
     box-shadow: 0 6px 20px rgba(0, 137, 123, 0.6);
     transform: translateY(-2px);
 }

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

 .btn-secondary:hover {
     background: var(--bg-body);
     color: var(--primary-teal);
     transform: translateY(-2px);
     box-shadow: var(--shadow-md);
 }

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

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


 .card {
     background: var(--bg-white);
     padding: 40px 30px;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-sm);
     border: 1px solid var(--border-color);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
     border-color: transparent;
 }

 .card-icon {
     font-size: 3rem;
     background: linear-gradient(135deg, var(--primary-teal), var(--teal-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 24px;
     display: inline-block;
 }

 header {
     background-color: var(--bg-white);
     box-shadow: var(--shadow-sm);
     position: sticky;
     top: 0;
     z-index: 1000;
     border-bottom: 1px solid var(--border-color);
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 80px;
 }

 .logo {
     font-family: var(--font-heading);
     font-size: 1.6rem;
     font-weight: 800;
     color: var(--primary-navy);
     display: flex;
     align-items: center;
     gap: 8px;
     letter-spacing: -0.5px;
 }

 .logo span {
     color: var(--primary-teal);
 }

 .badge-19 {
     background: #e11d48;
     color: white;
     font-size: 0.7rem;
     font-weight: 700;
     padding: 3px 8px;
     border-radius: 4px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transform: translateY(-2px);
 }

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

 .nav-links a {
     font-weight: 600;
     color: var(--primary-navy);
     position: relative;
     font-size: 0.95rem;
 }

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

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

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

 .burger {
     display: none;
     font-size: 1.5rem;
     color: var(--primary-navy);
     cursor: pointer;
     padding: 10px;
 }

 .hero {
     background: linear-gradient(135deg, rgba(10, 31, 53, 0.9) 0%, rgba(22, 62, 92, 0.8) 100%),
         url('../img/hero.png') center center/cover no-repeat;

     color: var(--text-light);
     padding: 100px 0;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
     border-radius: 50%;
 }

 .hero h1 {
     font-size: 3rem;
     text-align: center;
     color: var(--text-light);
     margin-bottom: 1.5rem;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero p {
     font-size: 1.25rem;
     color: #cbd5e1;
     max-width: 650px;
     margin: 0 auto 3rem;
     font-weight: 300;
 }

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

 .section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 2.25rem;
     position: relative;
     display: inline-block;
     padding-bottom: 15px;
 }

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

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

 .bg-navy {
     background-color: var(--primary-navy);
     color: var(--text-light);
 }

 .bg-navy h2,
 .bg-navy h3 {
     color: var(--text-light);
 }

 .bg-navy .card {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     box-shadow: none;
 }

 .bg-navy .card h3 {
     color: var(--text-light);
 }

 .bg-navy .card p {
     color: #cbd5e1;
 }


 .faq-item {
     background: var(--bg-white);
     border: 1px solid var(--border-color);
     padding: 24px;
     margin-bottom: 16px;
     border-radius: var(--radius-sm);
     transition: box-shadow 0.3s ease;
 }

 .faq-item:hover {
     box-shadow: var(--shadow-md);
     border-color: var(--primary-teal);
 }

 .table-wrapper {
     overflow-x: auto;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-md);
 }

 .results-table,
 .prizes-table {
     width: 100%;
     border-collapse: collapse;
     background: var(--bg-white);
     min-width: 600px;
 }

 .results-table th,
 .prizes-table th {
     background-color: var(--primary-navy);
     color: var(--text-light);
     padding: 18px 24px;
     text-align: left;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1px;
 }

 .results-table td,
 .prizes-table td {
     padding: 20px 24px;
     border-bottom: 1px solid var(--border-color);
     color: var(--text-main);
 }

 .results-table tr:last-child td {
     border-bottom: none;
 }

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


 .numbers-display {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .numbers-display span {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;


     background: radial-gradient(circle at 30% 30%, var(--teal-light), var(--primary-teal));
     color: white;
     font-weight: 700;
     font-size: 1rem;
     box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.3), 2px 2px 5px rgba(0, 0, 0, 0.2);
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
 }

 .numbers-display span.bonus {
     background: radial-gradient(circle at 30% 30%, #ffd54f, #f57f17);
     color: #fff;
 }

 .login-container {
     max-width: 450px;
     margin: 40px auto;
     padding: 0 20px;
 }

 .login-form {
     background: var(--bg-white);
     padding: 48px;
     border-radius: var(--radius-md);
     box-shadow: var(--shadow-lg);
     border-top: 5px solid var(--primary-teal);
 }

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

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: var(--primary-navy);
     font-size: 0.9rem;
 }

 .form-group input {
     width: 100%;
     padding: 14px;
     border: 1px solid var(--border-color);
     border-radius: var(--radius-sm);
     font-family: inherit;
     font-size: 1rem;
     transition: all 0.2s;
     background-color: #f8fafc;
 }

 .form-group input:focus {
     outline: none;
     border-color: var(--primary-teal);
     background-color: #fff;
     box-shadow: 0 0 0 4px rgba(0, 137, 123, 0.1);
 }

 .form-check {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 24px;
 }

 .form-check input {
     width: 18px;
     height: 18px;
     cursor: pointer;
     accent-color: var(--primary-teal);
 }

 .success-message {
     background-color: #d1fae5;
     color: #065f46;
     padding: 15px;
     border-radius: var(--radius-sm);
     text-align: center;
     margin-top: 20px;
     font-weight: 500;
     display: none;
 }

 .error-message {
     color: #e11d48;
     font-size: 0.85rem;
     margin-top: 6px;
     display: none;
 }

 .legal-line {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 40px;
     text-align: center;
     font-size: 0.85rem;
     line-height: 1.8;
 }

 .legal-line a {
     color: var(--text-light);
     margin: 0 10px;
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(10, 31, 53, 0.95);
     backdrop-filter: blur(5px);
     z-index: 2000;
     display: none;
     justify-content: center;
     align-items: center;
 }

 .modal-card {
     background: var(--bg-white);
     padding: 50px 40px;
     max-width: 550px;
     width: 90%;
     border-radius: var(--radius-md);
     text-align: center;
     box-shadow: var(--shadow-lg);
     border-top: 6px solid #e11d48;
 }

 .modal-card h2 {
     color: var(--primary-navy);
     margin-bottom: 15px;
 }

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--bg-white);
     border-top: 1px solid var(--border-color);
     padding: 24px;
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     display: none;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 @media (min-width: 768px) {
     .burger {
         display: none;
     }

     .nav-links {
         display: flex;
         position: static;
         flex-direction: row;
         background: none;
         width: auto;
         padding: 0;
         box-shadow: none;
         gap: 30px;
     }

     .cookie-banner {
         flex-direction: row;
         justify-content: center;
         gap: 40px;
         text-align: left;
     }
 }

 @media (max-width: 767px) {
     .navbar {
         height: 70px;
     }

     .nav-links {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 70px;
         left: 0;
         width: 100%;
         background-color: var(--bg-white);
         padding: 20px 0;
         box-shadow: var(--shadow-lg);
         text-align: center;
         gap: 0;
     }

     .nav-links a {
         display: block;
         padding: 15px;
         border-bottom: 1px solid var(--bg-body);
     }

     .nav-links a:hover {
         background-color: var(--bg-body);
     }

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

     .burger {
         display: block;
     }

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

     .hero-buttons .btn {
         width: 100%;
     }

     .results-table th,
     .results-table td {
         padding: 12px;
         font-size: 0.9rem;
     }

     .numbers-display span {
         width: 32px;
         height: 32px;
         font-size: 0.85rem;
     }
 }

 .hero-ticket-card {
     background: var(--bg-white);
     color: var(--text-main);
     max-width: 420px;
     margin: 30px auto 0;
     padding: 30px;
     border-radius: var(--radius-md);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     text-align: left;
     position: relative;
     border-top: 5px solid var(--primary-teal);
 }

 .ticket-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 5px;
 }

 .ticket-info h3 {
     font-size: 1.1rem;
     margin-bottom: 2px;
     color: var(--primary-navy);
 }

 .draw-number {
     font-size: 0.85rem;
     color: var(--text-muted);
     font-family: var(--font-body);
 }

 .ticket-price {
     font-family: var(--font-heading);
     font-size: 1.5rem;
     font-weight: 800;
     color: var(--primary-navy);
 }

 .ticket-estimated {
     font-size: 0.9rem;
     color: var(--primary-teal);
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 1px solid var(--border-color);
 }


 .qty-control-wrapper {
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #f1f5f9;
     border-radius: 50px;
     padding: 5px;
     margin-bottom: 20px;
     width: fit-content;
     margin-left: auto;
     margin-right: auto;
 }

 .qty-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: none;
     background-color: white;
     color: var(--primary-navy);
     font-size: 1rem;
     cursor: pointer;
     box-shadow: var(--shadow-sm);
     transition: all 0.2s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .qty-btn:hover {
     background-color: var(--primary-teal);
     color: white;
     transform: scale(1.1);
 }

 .qty-btn:active {
     transform: scale(0.9);
 }

 .qty-value {
     font-family: var(--font-heading);
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary-navy);
     width: 60px;
     text-align: center;
 }


 .btn-full-width {
     width: 100%;
     border-radius: var(--radius-sm);
     padding: 16px;
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .ticket-legal {
     margin-top: 15px;
     font-size: 18px !important;
     color: rgb(88, 88, 88) !important;
     line-height: 1.4;
     text-align: center;
 }


 @media (max-width: 480px) {
     .hero-ticket-card {
         padding: 20px;
     }

     .ticket-price {
         font-size: 1.25rem;
     }
 }

 .hero .container.hero-flex-container {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 40px;
     text-align: center;
 }

 .hero-content {
     max-width: 100%;
 }

 .hero-ticket-card {
     width: 100%;
     max-width: 420px;
     margin: 0;
 }

 @media (min-width: 992px) {
     .hero {
         text-align: left;
         padding: 120px 0;
     }

     .hero .container.hero-flex-container {
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
         gap: 60px;
     }

     .hero-content {
         flex: 1;
         max-width: 550px;
         text-align: left;
     }

     .hero-content h1 {
         font-size: 3.5rem;
         margin-bottom: 24px;
     }

     .hero-content p {
         font-size: 1.25rem;
         margin: 0 0 30px 0;
         max-width: 100%;
     }

     .hero-ticket-card {
         flex-shrink: 0;
         width: 420px;

         animation: floatUp 0.8s ease-out forwards;
     }
 }


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

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

 .ln-footer {
     background-color: #05080e;
     color: #f9fafb;
     padding: 40px 16px 32px;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     font-size: 14px;
     line-height: 1.6;
 }

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

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

 .ln-footer-logos a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .ln-footer-logo {
     height: 50px;
     width: auto;
     display: block;
 }

 .ln-footer-text {
     margin-bottom: 8px;
     color: #e5e7eb;
 }

 .ln-footer-text a {
     color: #ffffff;
     text-decoration: underline;
 }

 .ln-footer-warning {
     margin: 22px 0 26px;
     font-weight: 600;
     color: #ff3737;
 }

 .ln-footer-bottom {
     border-top: 1px solid rgba(148, 163, 184, 0.4);
     padding-top: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
     align-items: center;
     justify-content: space-between;
     font-size: 13px;
 }

 .ln-footer-copy span {
     font-weight: 600;
 }

 .ln-footer-links {
     display: flex;
     gap: 24px;
 }

 .ln-footer-links a {
     color: #e5e7eb;
     text-decoration: none;
 }

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

 @media (min-width: 768px) {
     .ln-footer {
         padding: 48px 24px 32px;
     }

     .ln-footer-bottom {
         flex-direction: row;
     }
 }

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

 .legal-content h3 {
     font-size: 1.2rem;
     margin-top: 25px;
     margin-bottom: 15px;
     color: var(--primary-teal);
 }

 .legal-content p {
     margin-bottom: 15px;
     color: var(--text-main);
 }

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

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

 .last-updated {
     font-style: italic;
     color: var(--text-muted);
     margin-bottom: 30px;
 }