/* Critical CSS for above-the-fold content */
html {
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.bg-black { background-color: #000; }
.text-white { color: #fff; }
.relative { position: relative; }
.absolute { position: absolute; }
.min-h-screen { min-height: 100vh; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/30 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.3), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }

/* Custom styles for the countdown timer flip effect */
.timer-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ticket box styling */
.ticket-box {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(9, 39, 215, 0.3);
}

/* Agenda item styling */
.agenda-item {
    border-left: 3px solid #0927d7;
    background: rgba(255, 255, 255, 0.03);
}

.agenda-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* Better handling for browser zoom */
@media (min-resolution: 120dpi) {
    html {
        font-size: 14px;
    }
}

@media (min-resolution: 144dpi) {
    html {
        font-size: 12px;
    }
}

/* Prevent overflow at high zoom levels */
* {
    max-width: 100vw;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Dynamic hero height */
.hero-container {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
}
