:root {
    --bg-dark: #020617;
    --brand-orange: #f97316;
}

body {
    background-color: var(--bg-dark);
    color: #f8fafc;
    overflow-x: hidden;
}

/* Achtergrond Accenten */
.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-dark {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Countdown Upgrade */
.cd-number {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    overflow: hidden;
}

.cd-number::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Price Table Styles */
.price-table-container {
    width: 100%;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: fixed;
}

.price-table td,
.price-table th {
    padding: 1.25rem 1rem;
}

.price-table tbody tr {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.price-table tbody tr:hover {
    transform: scale(1.01);
    background: rgba(30, 41, 59, 0.6);
}

.price-table td:first-child {
    border-radius: 12px 0 0 12px;
}

.price-table td:last-child {
    border-radius: 0 12px 12px 0;
}

.jackpot-row {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1) 0%, rgba(15, 23, 42, 0.4) 100%) !important;
    border: 1px solid rgba(249, 115, 22, 0.3) !important;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 99px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: #f97316;
    border-radius: 50%;
    margin-top: -7px;
    border: 3px solid #020617;
    cursor: pointer;
}

/* Improved Spinner for GPU acceleration */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #f97316;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
    transform: translateZ(0);
    will-change: transform;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* FAQ Accordion Transitions */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
}

.faq-item.active .faq-content {
    padding-top: 0;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Consistent Card Heights */
.hero-card {
    min-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-card {
        min-height: 380px;
    }
}

#reservation-container {
    min-height: 480px;
    height: auto;
}

/* Desktop specific heights */
@media (min-width: 768px) {
    #reservation-container {
        height: 480px;
    }
}

/* Bingo Ball Decoration */
.bingo-ball {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #e2e8f0);
    box-shadow:
        inset -5px -5px 15px rgba(0, 0, 0, 0.3),
        10px 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #020617;
    z-index: -1 !important;
}

.bingo-ball.orange {
    background: radial-gradient(circle at 30% 30%, #fb923c, #c2410c);
    color: white;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition:
        opacity 0.3s ease-in-out,
        visibility 0.3s ease-in-out;
}

#mobile-menu.hidden-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#mobile-menu.visible-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-content {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hidden-menu .menu-content {
    transform: translateY(-20px) scale(0.95);
}

.visible-menu .menu-content {
    transform: translateY(0) scale(1);
}

/* Scan animation */
@keyframes scan {
    0%,
    100% {
        top: 0%;
        opacity: 0;
    }

    5%,
    95% {
        opacity: 1;
    }

    50% {
        top: 100%;
    }
}

.animate-scan {
    animation: scan 3s ease-in-out infinite;
}

/* Shipping animation */
@keyframes shipping {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

.animate-shipping {
    animation: shipping 1.5s ease-in-out infinite;
}


/* Speedline animation */
@keyframes speedLine {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        width: 30px;
        opacity: 0.5;
    }

    100% {
        width: 0;
        opacity: 0;
        transform: translateX(40px);
    }
}

.animate-speed {
    animation: speedLine 0.8s linear infinite;
}

.drop-shadow-neon {
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.4));
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}