 :root {

     --primary-dark: #0a1f2e;

     --primary-main: #0F2D40;

     --primary-light: #1c4b66;


     --accent: #00A896;

     --accent-hover: #008f80;


     --danger: #ef4444;

     --success: #10b981;



     --text-main: #1e293b;

     --text-muted: #64748b;

     --bg-body: #f8fafc;

     --bg-surface: #ffffff;

     --border-color: #e2e8f0;



     --border-radius: 12px;

     --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
     --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);


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

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

 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;
 }

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

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

 ul {
     list-style: none;
 }

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

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

 main {
     flex: 1;

 }

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

 .bg-light {
     background-color: #fff;
 }

 .mt-2 {
     margin-top: 1.5rem;
 }

 .mb-2 {
     margin-bottom: 1.5rem;
 }


 section {
     padding: 60px 0;
 }

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

 .section-title {
     font-size: 2.2rem;
     color: var(--primary-dark);
     margin-bottom: 10px;
 }

 .section-subtitle {
     color: var(--text-muted);
     max-width: 600px;
     margin: 0 auto 40px auto;
 }


 .content-grid {
     display: grid;
     gap: 30px;
 }

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

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     font-family: var(--font-heading);
     font-weight: 600;
     font-size: 1rem;
     border-radius: 50px;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     gap: 8px;
 }

 .btn-primary {
     background-color: var(--accent);
     color: #fff;
     box-shadow: 0 4px 6px rgba(0, 168, 150, 0.2);
 }

 .btn-primary:hover {
     background-color: var(--accent-hover);
     transform: translateY(-2px);
     box-shadow: 0 6px 12px rgba(0, 168, 150, 0.3);
 }

 .btn-secondary {
     background-color: #cbd5e1;
     color: var(--text-main);
 }

 .btn-secondary:hover {
     background-color: #94a3b8;
 }

 .btn-full {
     width: 100%;
     border-radius: var(--border-radius);
 }

 .btn-large {
     padding: 15px 32px;
     font-size: 1.1rem;
 }


 .btn-login {
     border: 2px solid var(--primary-light);
     color: var(--primary-main);
     padding: 8px 24px;
     border-radius: 50px;
     font-size: 0.9rem;
 }

 .btn-login:hover {
     background-color: var(--primary-main);
     color: #fff !important;
 }


 .main-header {
     background: var(--bg-surface);
     height: 80px;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: var(--shadow-sm);
 }

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

 .logo a {
     display: flex;
     flex-direction: column;
     line-height: 1;
 }

 .logo h1 {
     font-size: 1.5rem;
     color: var(--primary-dark);
     margin: 0;
     letter-spacing: -0.5px;
 }

 .logo span {
     font-size: 0.7rem;
     text-transform: uppercase;
     color: var(--accent);
     letter-spacing: 1.5px;
     font-weight: 600;
     margin-top: 2px;
 }

 .main-nav ul {
     display: flex;
     gap: 30px;
     align-items: center;
 }

 .main-nav a {
     font-weight: 500;
     font-size: 0.95rem;
     color: var(--text-main);
 }

 .main-nav a:not(.btn-login):hover,
 .main-nav a.active {
     color: var(--accent);
 }

 .mobile-menu-toggle {
     display: none;

     background: none;
     border: none;
     font-size: 1.5rem;
     color: var(--primary-main);
     cursor: pointer;
 }


 .hero-section {
     background: radial-gradient(circle at top right, rgba(26, 74, 102, 0.85) 0%, rgba(10, 31, 46, 0.95) 100%),
         url('../img/hero.png') center center/cover no-repeat;

     padding: 80px 0 100px 0;
     color: #fff;
     text-align: center;
     position: relative;
     overflow: hidden;
 }


 .hero-section::before {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 400px;
     height: 400px;
     background: rgba(0, 168, 150, 0.1);
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
 }

 .hero-card {
     background: var(--bg-surface);
     color: var(--text-main);
     max-width: 550px;
     margin: 0 auto;
     border-radius: 16px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
     overflow: hidden;
     position: relative;
     z-index: 10;
 }

 .hero-header {
     background: #f8fafc;
     padding: 20px;
     border-bottom: 1px solid var(--border-color);
 }

 .hero-header h3 {
     font-size: 1rem;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin: 0 0 15px 0;
 }


 .countdown-timer {
     display: flex;
     justify-content: center;
     gap: 10px;
 }

 .time-block {
     background: var(--primary-main);
     color: #fff;
     padding: 8px;
     border-radius: 8px;
     min-width: 60px;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .time-block span {
     font-size: 1.5rem;
     font-weight: 700;
     line-height: 1;
     font-family: var(--font-heading);
 }

 .time-block small {
     font-size: 0.6rem;
     text-transform: uppercase;
     margin-top: 4px;
     opacity: 0.8;
 }

 .hero-body {
     padding: 30px;
 }

 .prize-amount {
     font-size: 2.8rem;
     color: var(--accent);
     margin-bottom: 5px;
     font-family: var(--font-heading);
 }

 .draw-info {
     color: var(--text-muted);
     margin-bottom: 25px;
     font-weight: 500;
 }


 .ticket-control {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 15px;
     margin-bottom: 25px;
     background: #f1f5f9;
     padding: 8px;
     border-radius: 50px;
     width: fit-content;
     margin-left: auto;
     margin-right: auto;
 }

 .qty-btn {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: none;
     background: #fff;
     box-shadow: var(--shadow-sm);
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--primary-main);
     transition: transform 0.2s;
 }

 .qty-btn:hover {
     transform: scale(1.1);
 }

 #ticket-qty {
     font-size: 1.2rem;
     font-weight: 700;
     width: 30px;
     text-align: center;
 }

 .hero-footer {
     background: #f8fafc;
     padding: 15px 20px;
     font-size: 0.75rem;
     color: var(--text-muted);
     border-top: 1px solid var(--border-color);
 }

 .hero-footer i {
     color: #f59e0b;

     margin-right: 5px;
 }

 .card,
 .checker-card,
 .login-card {
     background: var(--bg-surface);
     padding: 30px;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-md);
     border: 1px solid var(--border-color);
     transition: transform 0.3s, box-shadow 0.3s;
 }

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

 .card h4 {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 15px;
 }

 .card h4 i {
     color: var(--accent);
 }

 .check-list li {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .check-list i {
     color: var(--success);
 }

 .disclaimer-block {
     padding: 20px 0;
 }

 .alert-box {
     background: #fffbeb;
     border-left: 4px solid #f59e0b;
     padding: 15px 20px;
     border-radius: 6px;
     display: flex;
     gap: 15px;
     align-items: flex-start;
     color: #92400e;
     font-size: 0.9rem;
 }

 .table-responsive {
     overflow-x: auto;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-md);
     margin-bottom: 15px;
 }

 .odds-table,
 .results-table {
     width: 100%;
     border-collapse: collapse;
     background: #fff;
     min-width: 600px;

 }

 .odds-table th,
 .results-table th {
     background-color: var(--primary-main);
     color: #fff;
     padding: 15px;
     text-align: left;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 0.5px;
 }

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

 .odds-table tr:hover,
 .results-table tr:hover {
     background-color: #f8fafc;
 }


 .winning-nums {
     display: flex;
     gap: 5px;
 }

 .winning-nums span {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 30px;
     height: 30px;
     background: var(--bg-surface);
     border: 2px solid var(--primary-main);
     color: var(--primary-main);
     border-radius: 50%;
     font-weight: 700;
     font-size: 0.85rem;
 }


 .badge {
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 700;
     text-transform: uppercase;
 }

 .badge.success {
     background: #dcfce7;
     color: #166534;
 }

 .badge.neutral {
     background: #f1f5f9;
     color: #475569;
 }

 .disclaimer-text {
     font-size: 0.8rem;
     color: var(--text-muted);
     font-style: italic;
 }

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

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

 .form-group input {
     width: 100%;
     padding: 12px;
     border: 1px solid var(--border-color);
     border-radius: 8px;
     font-family: var(--font-body);
     font-size: 1rem;
     transition: border-color 0.2s, box-shadow 0.2s;
 }

 .form-group input:focus {
     outline: none;
     border-color: var(--accent);
     box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.1);
 }

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

 .form-check input {
     width: auto;
     cursor: pointer;
 }

 .login-main {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 60px 20px;
     background: linear-gradient(to bottom, var(--bg-body), #e2e8f0);
 }

 .login-card {
     width: 100%;
     max-width: 420px;
     padding: 40px;
 }

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

 .login-header p {
     color: var(--text-muted);
     font-size: 0.95rem;
 }

 .login-footer {
     display: flex;
     justify-content: space-between;
     font-size: 0.9rem;
     margin-top: 20px;
 }

 .login-footer a {
     color: var(--accent);
     font-weight: 600;
 }

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

 .login-warning {
     margin-top: 30px;
     padding-top: 20px;
     border-top: 1px solid var(--border-color);
     font-size: 0.75rem;
     color: var(--text-muted);
     text-align: center;
 }

 .main-footer {
     background-color: var(--primary-dark);
     color: #94a3b8;
     font-size: 0.9rem;
 }

 .responsible-bar {
     background-color: #05111a;

     padding: 25px 0;
     text-align: center;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .responsible-bar strong {
     color: #fff;
     display: block;
     font-size: 1.1rem;
     margin-bottom: 5px;
 }

 .resp-icons {
     margin: 20px 0;
     display: flex;
     justify-content: center;
     gap: 25px;
     font-size: 1.8rem;
     color: var(--accent);
     opacity: 0.9;
 }

 .footer-bottom {
     padding: 40px 0;
     text-align: center;
 }

 .footer-links {
     margin: 20px 0;
 }

 .footer-links a {
     color: #cbd5e1;
     margin: 0 10px;
     text-decoration: underline;
 }

 .footer-links a:hover {
     color: #fff;
 }

 .age-gate-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(10, 31, 46, 0.95);
     backdrop-filter: blur(5px);
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.4s ease;
 }

 .age-gate-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .age-gate-modal {
     background: var(--bg-surface);
     padding: 50px 30px;
     border-radius: 16px;
     text-align: center;
     max-width: 450px;
     width: 90%;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
     border-top: 5px solid var(--accent);
 }

 .age-gate-modal h2 {
     margin: 15px 0 10px 0;
 }

 .age-gate-buttons {
     display: flex;
     gap: 15px;
     justify-content: center;
     margin-top: 30px;
 }

 @media (max-width: 992px) {
     .section-title {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 768px) {


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

     .main-nav {
         display: block;
         position: absolute;
         top: 80px;
         left: 0;
         width: 100%;
         background: var(--bg-surface);
         box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
         padding: 20px;


         transform: translateY(-20px);
         opacity: 0;
         visibility: hidden;
         transition: all 0.3s ease;
     }

     .main-nav.active {
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
     }

     .main-nav ul {
         flex-direction: column;
         align-items: stretch;
         gap: 10px;
     }

     .main-nav li {
         border-bottom: 1px solid var(--bg-body);
         padding-bottom: 10px;
     }

     .main-nav li:last-child {
         border-bottom: none;
         padding-bottom: 0;
         margin-top: 10px;
     }

     .btn-login {
         display: block;
         text-align: center;
     }


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

     .hero-section {
         padding: 40px 0 60px 0;
     }

     .prize-amount {
         font-size: 2.2rem;
     }

     .hero-body {
         padding: 20px;
     }


     .resp-icons {
         gap: 15px;
         font-size: 1.5rem;
     }
 }

 .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;
     }
 }

 .text-block-container {
     max-width: 900px;
     margin: 0 auto;
     background: var(--bg-surface);
     padding: 50px;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow-sm);
 }


 .text-block-container h3 {
     font-size: 1.6rem;
     color: var(--primary-main);
     margin-top: 2.5rem;
     margin-bottom: 1.2rem;
     display: flex;
     align-items: center;
 }


 .text-block-container h3::before {
     content: '';
     display: inline-block;
     width: 6px;
     height: 24px;
     background-color: var(--accent);
     margin-right: 15px;
     border-radius: 4px;
 }


 .text-block-container h3:first-of-type {
     margin-top: 0;
 }

 .text-block-container h4 {
     font-size: 1.2rem;
     margin-top: 1.5rem;
     margin-bottom: 0.8rem;
     color: var(--primary-light);
 }


 .text-block-container p {
     margin-bottom: 1.2rem;
     font-size: 1.05rem;

     color: var(--text-main);
     line-height: 1.7;
 }


 .text-block-container hr {
     border: 0;
     height: 1px;
     background: linear-gradient(to right, transparent, var(--border-color), transparent);
     margin: 3rem 0;
 }


 .text-block-container ul:not(.check-list) {
     margin-bottom: 1.5rem;
     padding-left: 20px;
 }

 .text-block-container ul:not(.check-list) li {
     list-style-type: disc;
     margin-bottom: 0.5rem;
     color: var(--text-main);
     padding-left: 5px;
 }


 .check-list {
     list-style: none;
     margin-top: 1.5rem;
     background: #f8fafc;

     padding: 30px !important;

     border-radius: var(--border-radius);
     border: 1px solid var(--border-color);
 }

 .check-list li {
     position: relative;
     padding-left: 35px;
     margin-bottom: 15px;
     font-weight: 500;
     color: var(--primary-dark);
 }

 .check-list li:last-child {
     margin-bottom: 0;
 }


 .check-list i {
     position: absolute;
     left: 0;
     top: 4px;
     color: var(--accent);
     font-size: 1.1rem;
     background: #fff;
     border-radius: 50%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 }


 .text-block-container .card {
     padding: 25px;
     background: #fff;
     border: 1px solid var(--border-color);
     box-shadow: none;

 }

 .text-block-container .card:hover {
     border-color: var(--accent);
     transform: translateY(-3px);
 }

 .text-block-container .card h4 {
     margin-top: 0;
     color: var(--primary-main);
 }

 .text-block-container .card p {
     font-size: 0.95rem;
     margin-bottom: 0;
 }


 @media (max-width: 768px) {
     .text-block-container {
         padding: 25px;
     }

     .text-block-container h3 {
         font-size: 1.3rem;
     }

     .check-list {
         padding: 20px !important;
     }
 }