 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800;900&display=swap');

 :root {

     --bg-dark: #05101a;
     --bg-darker: #02080e;
     --bg-card: #0b1e3b;
     --bg-card-grad: linear-gradient(145deg, #0e2a4d 0%, #0b1e3b 100%);


     --primary: #00d4ff;
     --primary-hover: #33e0ff;


     --text-main: #e0f7fa;
     --text-muted: #8ba6b8;
     --white: #ffffff;


     --border: #1c3a5e;
     --border-soft: rgba(0, 212, 255, 0.2);
     --overlay: rgba(5, 16, 26, 0.95);


     --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
     --glow-primary: 0 0 20px rgba(0, 212, 255, 0.3);
     --glow-text: 0 0 10px rgba(0, 212, 255, 0.2);
     --transition: all 0.3s ease;
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     background-color: var(--bg-dark);
     color: var(--text-main);
     line-height: 1.6;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
     overflow-x: hidden;
 }


 h1,
 h2,
 h3,
 h4,
 h5 {
     color: var(--white);
     font-weight: 700;
     letter-spacing: -0.5px;
     margin-bottom: 1rem;
 }

 h1 {
     font-size: 3.5rem;
     line-height: 1.1;
     font-weight: 900;
 }

 h2 {
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
     color: var(--primary);
 }

 h3 {
     font-size: 1.75rem;
 }

 p {
     margin-bottom: 1rem;
 }

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

 ul {
     list-style: none;
 }

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

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

 .btn {
     display: inline-block;
     padding: 14px 32px;
     background-color: var(--primary);
     color: var(--bg-darker);
     font-weight: 800;
     border-radius: 4px;
     border: none;
     cursor: pointer;
     text-align: center;
     font-size: 16px;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: var(--glow-primary);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
 }

 .btn:hover {
     background-color: var(--primary-hover);
     transform: translateY(-2px);
     box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
 }

 .btn-outline {
     background-color: transparent;
     border: 2px solid var(--primary);
     color: var(--primary);
     padding: 12px 30px;
     font-weight: 700;
     border-radius: 4px;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 14px;
     transition: var(--transition);
     display: inline-block;
 }

 .btn-outline:hover {
     background-color: var(--primary);
     color: var(--bg-darker);
     box-shadow: var(--glow-primary);
 }

 header {
     background: rgba(5, 16, 26, 0.85);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     position: sticky;
     top: 0;
     z-index: 1000;
     padding: 15px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

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

 .logo {
     font-size: 26px;
     font-weight: 800;
     color: var(--primary);
     text-transform: uppercase;
     letter-spacing: 2px;
     text-shadow: var(--glow-text);
 }

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

 .nav-link {
     font-size: 15px;
     font-weight: 500;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     position: relative;
 }

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

 .nav-link:hover,
 .nav-link.active {
     color: var(--primary);
 }

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

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

 .burger {
     display: none;
     font-size: 24px;
     cursor: pointer;
     color: var(--primary);
 }

 .hero {

     background: linear-gradient(rgba(5, 16, 26, 0.5), rgba(5, 16, 26, 0.95)), url('../img/hero.png');
     background-size: cover;
     background-position: center top;
     background-repeat: no-repeat;
     padding: 140px 0 100px;
     text-align: center;
     position: relative;
     box-shadow: inset 0 -50px 50px -20px var(--bg-dark);
 }

 .hero h1 {
     font-size: 4rem;
     font-weight: 800;
     margin-bottom: 15px;
     color: var(--white);
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: var(--text-muted);
     margin-bottom: 40px;
     font-weight: 300;
 }

 .timer-box {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 50px;
 }

 .time-unit {
     background: rgba(11, 30, 59, 0.6);
     backdrop-filter: blur(5px);
     padding: 20px 15px;
     border-radius: 8px;
     min-width: 90px;
     border: 1px solid var(--border-soft);
     box-shadow: var(--shadow-soft);
 }

 .time-val {
     display: block;
     font-size: 36px;
     font-weight: 700;
     color: var(--primary);
     line-height: 1;
     margin-bottom: 5px;
     text-shadow: var(--glow-text);
 }

 .time-label {
     font-size: 12px;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .jackpot-display {
     margin-bottom: 50px;
 }

 .jackpot-amount {
     font-size: 80px;
     font-weight: 900;
     color: var(--white);
     text-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.8);
     line-height: 1;
     display: block;
 }

 .jackpot-label {
     display: block;
     font-size: 16px;
     color: var(--text-muted);
     margin-top: 10px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .section {
     padding: 80px 0;
     background: var(--bg-dark);
 }

 .section:nth-child(even) {
     background: var(--bg-darker);
 }

 .page-header {
     background: linear-gradient(rgba(5, 16, 26, 0.8), rgba(5, 16, 26, 1)), url('../img/hero.png');
     background-size: cover;
     background-position: center;
     padding: 100px 0 60px;
     text-align: center;
     margin-bottom: 60px;
     border-bottom: 1px solid var(--border);
 }

 .page-header h1 {
     margin-bottom: 15px;
 }

 .page-header p {
     font-size: 18px;
     color: var(--text-muted);
     max-width: 600px;
     margin: 0 auto;
 }


 .ticket-card,
 .step-card,
 .content-block,
 .modal-box {
     background: var(--bg-card-grad);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 40px;
     margin: 10px auto;
     box-shadow: var(--shadow-soft);
     transition: var(--transition);
 }


 .ticket-card {
     max-width: 500px;
     margin: 0 auto;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .ticket-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--primary);
     box-shadow: var(--glow-primary);
 }

 .ticket-card:hover {
     border-color: var(--primary);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
 }

 .ticket-header h3 {
     font-size: 28px;
     margin-bottom: 10px;
     color: var(--white);
 }

 .price-tag {
     font-size: 24px;
     color: var(--primary);
     margin-bottom: 25px;
     display: block;
     font-weight: 700;
     text-shadow: var(--glow-text);
 }

 .ticket-controls {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     margin-bottom: 30px;
     background: rgba(0, 0, 0, 0.2);
     padding: 10px;
     border-radius: 50px;
     width: fit-content;
     margin: 0 auto 30px;
 }

 .qty-btn {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid var(--border-soft);
     color: var(--white);
     width: 44px;
     height: 44px;
     border-radius: 50%;
     font-size: 22px;
     cursor: pointer;
     transition: 0.2s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .qty-btn:hover {
     background: var(--primary);
     color: var(--bg-dark);
 }

 .qty-display {
     font-size: 28px;
     font-weight: 700;
     min-width: 40px;
     color: var(--white);
 }

 .ticket-summary {
     background: rgba(5, 16, 26, 0.5);
     padding: 20px;
     border-radius: 8px;
     margin-bottom: 25px;
     border: 1px solid var(--border-soft);
     font-size: 18px;
     font-weight: 600;
 }


 .steps-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 30px;
     text-align: center;
     margin-top: 40px;
 }

 .step-card:hover {
     transform: translateY(-5px);
     border-color: var(--primary);
 }

 .step-icon {
     font-size: 48px;
     color: var(--primary);
     margin-bottom: 25px;
     filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
 }


 .table-wrapper {
     overflow-x: auto;
 }

 .odds-table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0;
     margin-top: 30px;
     background: var(--bg-card);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow-soft);
     border: 1px solid var(--border);
 }

 .odds-table th,
 .odds-table td {
     padding: 18px 25px;
     text-align: left;
     border-bottom: 1px solid var(--border);
 }

 .odds-table th {
     background-color: rgba(0, 212, 255, 0.08);
     color: var(--primary);
     font-weight: 700;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
 }

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

 .odds-table tbody tr:hover {
     background: rgba(255, 255, 255, 0.02);
 }

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

 .form-group label {
     display: block;
     margin-bottom: 10px;
     color: var(--text-main);
     font-weight: 500;
 }

 .form-control {
     width: 100%;
     padding: 15px;
     background-color: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--border);
     border-radius: 6px;
     color: var(--white);
     font-size: 16px;
     transition: 0.3s;
     font-family: inherit;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
     background-color: rgba(255, 255, 255, 0.05);
 }

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

 .checkbox-group input {
     margin-top: 5px;
     accent-color: var(--primary);
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(2, 8, 14, 0.98);
     backdrop-filter: blur(10px);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
 }

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

 .modal-box {
     max-width: 550px;
     width: 90%;
     text-align: center;
     border: 1px solid var(--primary);
     box-shadow: var(--glow-primary);
 }

 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: rgba(11, 30, 59, 0.95);
     backdrop-filter: blur(10px);
     border-top: 1px solid var(--primary);
     padding: 25px;
     z-index: 5000;
     display: none;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
     box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
 }

 .cookie-actions {
     display: flex;
     gap: 15px;
 }

 @media (max-width: 992px) {
     .hero h1 {
         font-size: 3.5rem;
     }

     .jackpot-amount {
         font-size: 64px;
     }

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

 @media (max-width: 768px) {

     .nav-menu {
         position: fixed;
         top: 60px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 60px);
         background: var(--bg-darker);
         flex-direction: column;
         padding: 40px 20px;
         transition: 0.3s ease-in-out;
         border-top: 1px solid var(--border);
         overflow-y: auto;
     }

     .nav-menu.active {
         left: 0;
     }

     .auth-buttons {
         flex-direction: column;
         width: 100%;
         gap: 15px;
         margin-top: 20px;
     }

     .btn,
     .btn-outline {
         width: 100%;
     }

     .nav-item {
         width: 100%;
         text-align: center;
     }

     .nav-link {
         display: block;
         padding: 10px;
         font-size: 18px;
     }

     .burger {
         display: block;
     }


     .hero {
         padding: 100px 0 60px;
     }

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

     .hero-subtitle {
         font-size: 1rem;
     }

     .jackpot-amount {
         font-size: 48px;
     }

     .timer-box {
         gap: 10px;
     }

     .time-unit {
         min-width: 70px;
         padding: 15px 5px;
     }

     .time-val {
         font-size: 24px;
     }


     .section {
         padding: 60px 0;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .ticket-controls {
         width: 100%;
     }

     .modal-box {
         padding: 25px;
     }

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

     .cookie-actions {
         width: 100%;
         justify-content: center;
     }
 }

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

 .result-ball {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: var(--bg-dark);
     border: 2px solid var(--primary);
     color: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     font-size: 20px;
     box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
     cursor: default;
     transition: transform 0.3s;
 }

 .result-ball:hover {
     transform: scale(1.1);
     background: var(--primary);
     color: var(--bg-dark);
 }

 .results-header {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     margin-bottom: 30px;
 }

 .winning-numbers-container {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .breakdown-row {
     display: flex;
     justify-content: space-between;
     padding: 15px;
     border-bottom: 1px solid var(--border);
 }

 .breakdown-row:last-child {
     border-bottom: none;
 }

 .breakdown-header {
     background: rgba(0, 212, 255, 0.1);
     font-weight: 700;
     color: var(--primary);
 }

 .status-badge {
     display: inline-block;
     padding: 5px 10px;
     border-radius: 4px;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
 }

 .status-rollover {
     background: rgba(255, 204, 0, 0.2);
     color: #ffcc00;
     border: 1px solid #ffcc00;
 }

 .status-won {
     background: rgba(0, 212, 255, 0.2);
     color: var(--primary);
     border: 1px solid var(--primary);
 }