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

 :root {

     --bg-main: #020617;
     --bg-gradient: radial-gradient(circle at 50% 0%, #1e293b 0%, #020617 70%);


     --glass-bg: rgba(30, 41, 59, 0.65);
     --glass-border: rgba(255, 255, 255, 0.08);
     --glass-blur: 16px;


     --primary: #38bdf8;
     --primary-dark: #0284c7;
     --primary-glow: rgba(56, 189, 248, 0.4);
     --accent: #2dd4bf;
     --danger: #fb7185;


     --text-main: #f8fafc;
     --text-muted: #94a3b8;


     --radius: 16px;
     --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
     --shadow-glow: 0 0 20px var(--primary-glow);
     --font-main: 'Inter', sans-serif;
 }


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

 body {
     font-family: var(--font-main);
     background-color: var(--bg-main);
     background-image: var(--bg-gradient);
     background-attachment: fixed;
     color: var(--text-main);
     line-height: 1.6;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

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

 ul {
     list-style: none;
 }

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

 button {
     font-family: inherit;
 }


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

 h1,
 h2,
 h3,
 h4 {
     color: #fff;
     font-weight: 700;
     letter-spacing: -0.02em;
     margin-bottom: 1rem;
     line-height: 1.2;
 }

 h1 {
     font-size: 2.5rem;
     background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 h2 {
     font-size: 2rem;
 }

 h3 {
     font-size: 1.5rem;
 }

 .text-primary {
     color: var(--primary) !important;
 }

 .text-accent {
     color: var(--accent) !important;
 }

 .text-danger {
     color: var(--danger) !important;
 }

 .text-muted {
     color: var(--text-muted) !important;
     font-size: 0.95rem;
 }

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


 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 12px 28px;
     border-radius: 50px;
     font-weight: 600;
     border: 1px solid transparent;
     cursor: pointer;
     font-size: 1rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     gap: 8px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-size: 0.9rem;
 }


 .btn-primary {
     background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
     color: white !important;
     box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
     background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
 }

 .btn-primary:active {
     transform: translateY(0);
 }


 .btn-secondary {
     background: rgba(255, 255, 255, 0.03);
     border-color: rgba(255, 255, 255, 0.2);
     color: var(--text-main);
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: var(--primary);
     color: var(--primary);
 }


 header {
     background: rgba(2, 6, 23, 0.85);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--glass-border);
     position: sticky;
     top: 0;
     z-index: 100;
     padding: 15px 0;
     transition: background 0.3s;
 }

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

 .logo {
     font-size: 1.5rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--text-main);
 }

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

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

 .nav-links li {
     position: relative;
 }

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

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


 .nav-links a.active::after {
     content: '';
     position: absolute;
     bottom: -24px;
     left: 0;
     width: 100%;
     height: 3px;
     background: var(--primary);
     border-radius: 10px 10px 0 0;
     box-shadow: 0 -2px 10px var(--primary-glow);
 }

 .burger {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: white;
 }


 section {
     padding: 60px 0;
 }

 .card {
     background: var(--glass-bg);
     backdrop-filter: blur(var(--glass-blur));
     -webkit-backdrop-filter: blur(var(--glass-blur));
     border: 1px solid var(--glass-border);
     padding: 35px;
     border-radius: var(--radius);
     box-shadow: var(--shadow-card);
     margin-bottom: 25px;
     position: relative;
     overflow: hidden;
     animation: fadeInUp 0.6s ease-out;
 }


 .card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
     transition: 0.5s;
 }

 .card:hover::before {
     left: 100%;
 }

 .card:hover {
     border-color: rgba(255, 255, 255, 0.15);
     transform: translateY(-3px);
     transition: transform 0.3s ease, border-color 0.3s ease;
 }


 input,
 select {
     background: rgba(15, 23, 42, 0.6);
     border: 1px solid #334155;
     color: white;
     padding: 12px 16px;
     border-radius: 8px;
     font-size: 1rem;
     width: 100%;
     transition: 0.3s;
 }

 input:focus,
 select:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
 }


 .ticket-input {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin: 20px 0;
     background: rgba(0, 0, 0, 0.2);
     padding: 5px;
     border-radius: 50px;
     border: 1px solid var(--glass-border);
 }

 .ticket-input input {
     width: 50px;
     text-align: center;
     background: transparent;
     border: none;
     font-weight: 700;
     font-size: 1.2rem;
     padding: 0;
 }

 .ticket-input input:focus {
     box-shadow: none;
 }




 .timer-box {
     font-family: 'Courier New', monospace;
     font-size: 2rem;
     font-weight: 700;
     color: var(--accent);
     text-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
     margin: 25px 0;
     letter-spacing: 2px;
 }


 .ball-row {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
     margin: 25px 0;
 }

 .ball {
     width: 50px;
     height: 50px;

     background: radial-gradient(circle at 35% 35%, #60a5fa, #1d4ed8);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 800;
     color: white;
     font-size: 1.3rem;

     box-shadow:
         inset -5px -5px 10px rgba(0, 0, 0, 0.4),
         inset 5px 5px 10px rgba(255, 255, 255, 0.2),
         0 8px 15px rgba(0, 0, 0, 0.4);
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
     animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
 }

 .ball:nth-child(1) {
     animation-delay: 0.1s;
 }

 .ball:nth-child(2) {
     animation-delay: 0.2s;
 }

 .ball:nth-child(3) {
     animation-delay: 0.3s;
 }

 .ball:nth-child(4) {
     animation-delay: 0.4s;
 }

 .ball:nth-child(5) {
     animation-delay: 0.5s;
 }

 .ball:nth-child(6) {
     animation-delay: 0.6s;
 }


 table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 0;
     margin-top: 20px;
 }

 th,
 td {
     padding: 15px;
     text-align: left;
     border-bottom: 1px solid #334155;
 }

 th {
     background: rgba(15, 23, 42, 0.8);
     color: var(--primary);
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 1px;
 }

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

 tr:hover td {
     background: rgba(255, 255, 255, 0.02);
 }


 footer {
     background: #020617;
     padding: 60px 0 30px;
     margin-top: auto;
     border-top: 1px solid #1e293b;
     font-size: 0.9rem;
 }

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

 .footer-logo-placeholders {
     display: flex;
     gap: 10px;
     margin-top: 20px;
 }

 .logo-placeholder {
     width: 50px;
     height: 32px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid #334155;
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.6rem;
     color: #64748b;
     font-weight: bold;
 }




 #age-gate {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(2, 6, 23, 0.96);
     backdrop-filter: blur(15px);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .age-gate-content {
     background: #1e293b;
     border: 1px solid var(--primary-dark);
     box-shadow: 0 0 60px rgba(14, 165, 233, 0.15);
     padding: 40px;
     border-radius: 24px;
     text-align: center;
     max-width: 500px;
     animation: fadeIn 0.4s ease-out;
 }


 #cookie-banner {
     position: fixed;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 900px;
     background: rgba(30, 41, 59, 0.95);
     backdrop-filter: blur(10px);
     padding: 20px 30px;
     border: 1px solid var(--glass-border);
     border-radius: 12px;
     z-index: 900;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
     display: none;
 }

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


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

 .grid-4 {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 25px;
 }


 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

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

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes bounceIn {
     0% {
         opacity: 0;
         transform: scale(0.3);
     }

     50% {
         opacity: 1;
         transform: scale(1.05);
     }

     70% {
         transform: scale(0.9);
     }

     100% {
         transform: scale(1);
     }
 }


 @media (max-width: 768px) {
     .burger {
         display: block;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background: rgba(15, 23, 42, 0.98);
         backdrop-filter: blur(15px);
         flex-direction: column;
         padding: 40px 20px;
         gap: 25px;
         text-align: center;
         border-bottom: 1px solid var(--glass-border);
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);


         transform: translateY(-150%);
         transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
         z-index: 90;
     }

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

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

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

     .nav-links a {
         display: block;
         padding: 10px;
         font-size: 1.1rem;
     }


     h1 {
         font-size: 2rem;
     }

     .card {
         padding: 25px;
     }

     .grid-3,
     .grid-4 {
         grid-template-columns: 1fr;
     }

     .ticket-input {
         margin-bottom: 20px;
     }

     .footer-grid {
         gap: 30px;
     }


     .card>div[style*="overflow-x"] {
         margin-left: -15px;
         margin-right: -15px;
         padding: 0 15px;
     }
 }

 .footer-logo-placeholders {
     display: flex;
     gap: 15px;
     margin-top: 25px;
     align-items: center;
     justify-content: start;
 }

 .footer-icon {
     height: 40px;
     width: auto;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .footer-icon:hover {
     transform: scale(1.1);
 }


 .footer-icon.bg-white {
     background-color: rgba(255, 255, 255, 0.9);
     padding: 5px;
     border-radius: 6px;
 }