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

 :root {

     --primary-dark: #0f172a;
     --primary-light: #1e293b;
     --accent-color: #06b6d4;
     --accent-hover: #0891b2;


     --text-main: #334155;
     --text-muted: #64748b;
     --text-light: #94a3b8;


     --bg-body: #f8fafc;
     --white: #ffffff;


     --success: #10b981;
     --danger: #ef4444;


     --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
     --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
     --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
     --radius-md: 0.75rem;
     --radius-lg: 1rem;
 }

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

 body {
     font-family: 'Inter', sans-serif;
     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: 'Poppins', sans-serif;
     color: var(--primary-dark);
     line-height: 1.2;
     font-weight: 600;
 }

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

 ul {
     list-style: none;
 }

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

 header {
     background-color: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid #e2e8f0;
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 1rem 1.5rem;
 }

 .logo {
     font-family: 'Poppins', sans-serif;
     font-size: 1.75rem;
     font-weight: 700;
     color: var(--primary-dark);
     letter-spacing: -0.5px;
 }

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

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

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

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


 .btn-play {
     background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
     color: var(--white) !important;
     padding: 0.6rem 1.5rem;
     border-radius: 50px;
     font-weight: 600;
     box-shadow: 0 4px 6px rgba(6, 182, 212, 0.2);
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .btn-play:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 15px rgba(6, 182, 212, 0.3);
 }

 .hamburger {
     display: none;
     font-size: 1.5rem;
     color: var(--primary-dark);
     cursor: pointer;
 }

 .hero {
     background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 100%),
         url('../img/hero.png') center center/cover no-repeat;
     color: var(--white);
     padding: 5rem 1.5rem;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
     border-radius: 50%;
     z-index: 1;
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     gap: 3rem;
 }



 .hero-text {
     flex: 1;
     min-width: 300px;
 }

 .hero-text h1 {
     font-size: 2.75rem;
     margin-bottom: 1.5rem;
     color: var(--white);
     line-height: 1.1;
 }

 .hero-text p {
     font-size: 1.1rem;
     color: #cbd5e1;
     margin: 0 auto;
     margin-bottom: 2rem;
     max-width: 600px;
 }


 .timer-box {
     display: inline-block;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(5px);
     padding: 1rem 1.5rem;
     border-radius: var(--radius-md);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .timer-box p:first-child {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 0.5rem;
     color: #94a3b8;
 }

 .timer-box p:last-child {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--accent-color);
     margin: 0;
 }

 .ticket-card {
     background: var(--white);
     padding: 2rem;
     border-radius: var(--radius-lg);
     width: 100%;
     max-width: 380px;
     box-shadow: var(--shadow-lg);
     border: 1px solid #f1f5f9;
 }

 .ticket-card h3 {
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
     color: var(--primary-dark);
 }

 .ticket-card p {
     color: var(--text-muted);
 }

 .ticket-controls {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #f1f5f9;
     padding: 0.5rem;
     border-radius: var(--radius-md);
     margin: 1.5rem 0;
 }

 .qty-btn {
     width: 36px;
     height: 36px;
     background: var(--white);
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     cursor: pointer;
     font-weight: 600;
     color: var(--primary-dark);
     transition: all 0.2s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .qty-btn:hover {
     background: var(--accent-color);
     color: var(--white);
     border-color: var(--accent-color);
 }

 .ticket-controls input {
     background: transparent;
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--primary-dark);
     text-align: center;
     border: none;
     width: 50px;
 }

 .ticket-controls input:focus {
     outline: none;
 }

 .price-display {
     font-size: 2rem;
     font-weight: 800;
     color: var(--primary-dark);
     text-align: center;
     margin-bottom: 1.5rem;
 }

 .btn-cart {
     width: 100%;
     background: var(--primary-dark);
     color: var(--white);
     padding: 1rem;
     border: none;
     border-radius: var(--radius-md);
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 0.75rem;
     transition: all 0.3s;
 }

 .btn-cart:hover {
     background: #1e293b;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
 }

 .legal-note {
     font-size: 0.75rem;
     color: #94a3b8;
     text-align: center;
     margin-top: 1rem;
 }

 section {
     padding: 4rem 1.5rem;
     max-width: 1100px;
     width: 100%;
     margin: 0 auto;
 }

 section h2 {
     font-size: 2.25rem;
     text-align: center;
     margin-bottom: 3rem;
     position: relative;
     padding-bottom: 1rem;
 }

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

 section h3 {
     margin-top: 2rem;
     margin-bottom: 1rem;
     font-size: 1.25rem;
 }


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

 .info-item {
     background: var(--white);
     padding: 2rem;
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border: 1px solid #f1f5f9;
 }

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

 .info-item h3 {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-top: 0;
     color: var(--primary-dark);
 }

 .info-item h3 i {
     color: var(--accent-color);
 }


 table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0;
     background: var(--white);
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     margin-top: 1rem;
 }

 th {
     background-color: var(--primary-dark);
     color: var(--white);
     padding: 1.25rem;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 0.5px;
     font-weight: 600;
     text-align: left;
 }

 td {
     padding: 1.25rem;
     border-bottom: 1px solid #e2e8f0;
     color: var(--text-main);
 }

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

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

 .results-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 2rem;
 }

 .result-card {
     background: var(--white);
     border-radius: var(--radius-lg);
     padding: 2rem;
     box-shadow: var(--shadow-md);
     border: 1px solid #e2e8f0;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s ease;
 }

 .result-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 6px;
     height: 100%;
     background: var(--accent-color);
 }

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


 .ball {
     display: inline-flex;
     justify-content: center;
     align-items: center;
     width: 40px;
     height: 40px;
     background: radial-gradient(circle at 35% 35%, #475569, #0f172a);
     color: var(--white);
     border-radius: 50%;
     margin-right: 6px;
     margin-bottom: 6px;
     font-weight: 700;
     font-size: 1rem;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
 }

 .ball.bonus {
     background: radial-gradient(circle at 35% 35%, #22d3ee, #0891b2);
 }

 .accordion-item {
     margin-bottom: 1rem;
     border: 1px solid #e2e8f0;
     border-radius: var(--radius-md);
     background: var(--white);
     overflow: hidden;
 }

 .accordion-header {
     padding: 1.5rem;
     background: var(--white);
     cursor: pointer;
     font-weight: 600;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background 0.2s;
 }

 .accordion-header:hover {
     background: #f8fafc;
 }

 .accordion-header.active {
     color: var(--accent-color);
     background: #f0f9ff;
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
 }

 .accordion-content p {
     padding: 1.5rem;
     border-top: 1px solid #e2e8f0;
     color: var(--text-muted);
 }

 .login-container {
     max-width: 420px;
     margin: 4rem auto;
     background: var(--white);
     padding: 3rem;
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-lg);
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

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

 .form-group input {
     width: 100%;
     padding: 0.85rem;
     border: 1px solid #cbd5e1;
     border-radius: 8px;
     font-family: inherit;
     transition: all 0.2s;
     background: #f8fafc;
 }

 .form-group input:focus {
     outline: none;
     border-color: var(--accent-color);
     background: var(--white);
     box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
 }

 .btn-block {
     width: 100%;
     padding: 0.85rem;
     background: var(--primary-dark);
     color: var(--white);
     border: none;
     border-radius: 8px;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 600;
     transition: background 0.3s;
 }

 .btn-block:hover {
     background: #1e293b;
 }


 .age-gate {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.98);
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     padding: 2rem;
     text-align: center;
     backdrop-filter: blur(5px);
 }

 .age-gate.hidden {
     display: none;
 }

 .age-gate h2 {
     color: var(--white);
     font-size: 2rem;
     margin-bottom: 1.5rem;
 }

 .age-gate p {
     color: #cbd5e1;
     max-width: 500px;
     margin-bottom: 2rem;
     font-size: 1.1rem;
 }

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

 .btn-yes {
     background-color: var(--accent-color);
     border: none;
     padding: 1rem 2.5rem;
     color: var(--white);
     font-size: 1rem;
     font-weight: 600;
     border-radius: var(--radius-md);
     cursor: pointer;
     transition: background 0.3s;
 }

 .btn-yes:hover {
     background-color: var(--accent-hover);
 }

 .btn-no {
     background-color: transparent;
     border: 2px solid #475569;
     padding: 1rem 2.5rem;
     color: #cbd5e1;
     font-size: 1rem;
     font-weight: 600;
     border-radius: var(--radius-md);
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-no:hover {
     border-color: var(--white);
     color: var(--white);
 }

 @media (max-width: 768px) {

     .nav-links {
         display: none;
         flex-direction: column;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: var(--white);
         padding: 1.5rem;
         box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
         border-bottom: 1px solid #e2e8f0;
     }

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

     .hamburger {
         display: block;
     }


     .hero {
         padding: 3rem 1.5rem;
         text-align: center;
     }

     .hero-content {
         justify-content: center;
     }

     .hero-text h1 {
         font-size: 2.25rem;
     }

     .hero-text p {
         margin-left: auto;
         margin-right: auto;
     }


     .age-buttons {
         flex-direction: column;
         width: 100%;
     }
 }

 .ln-footer {
     background-color: #083625;
     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 {
     background: var(--white);
     padding: 3rem;
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-sm);
     max-width: 900px; 
     margin: -3rem auto 3rem; 
     position: relative;
     z-index: 10;
 }

 .legal-content h3 {
     margin-top: 2rem;
     margin-bottom: 1rem;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid #e2e8f0;
     color: var(--primary-dark);
 }

 .legal-content p,
 .legal-content li {
     color: var(--text-main);
     margin-bottom: 1rem;
     font-size: 1rem;
     line-height: 1.7;
 }

 .legal-content ul {
     list-style: disc;
     margin-left: 2rem;
     margin-bottom: 1.5rem;
 }

 .legal-content strong {
     color: var(--primary-dark);
 }