:root {
    --osvs-green: #004d2e;
    --osvs-light-green: #006d42;
    --osvs-gold: #ffc107;
    --osvs-dark: #111;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--osvs-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    background: rgba(0, 77, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('odvss2.jpg') no-repeat center center/cover;
    position: relative;
    margin-top: 0;
}
.hero-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,77,46,0.8), rgba(0,30,10,0.9));
    z-index: 1;
}
/* Hero Badge Design */
.hero-badge {
    display: inline-block;
    background-color: var(--osvs-gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1rem; 
    letter-spacing: 1px;
    line-height: 1.4;
    border: 2px solid #fff;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
    margin-bottom: 25px;
    white-space: normal;
}
@media (min-width: 768px) {
    .hero-badge {
        font-size: 1.3rem;
        padding: 15px 40px;
        letter-spacing: 3px;
    }
}

/* Countdown */
.time-box {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
}
.time-box span {
    display: block; font-size: 2.5rem; font-weight: 800; color: var(--osvs-gold); line-height: 1;
}
.time-box small {
    text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px;
}

/* Layout */
.section-padding { padding: 100px 0; }
.divider { width: 80px; height: 4px; border-radius: 2px; margin-top: 20px; margin-bottom: 50px; }

/* Personalities */
.personality-card {
    height: 600px;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.personality-img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(20%);
}
.personality-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; transition: all 0.3s;
}
.personality-card:hover .personality-img { transform: scale(1.1); filter: grayscale(0%); }
.personality-card:hover .personality-overlay { padding-bottom: 50px; }

/* Registration Area */
.bg-dark-green {
    background-color: #002a19;
    background-image: radial-gradient(#004d2e 1px, transparent 1px);
    background-size: 20px 20px;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.fade-in { animation: fadeIn 0.5s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Access Card Design */
#accessCardPreview {
    width: 400px;
    height: 620px;
    background: #1a1a1a;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
}
.card-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--osvs-green) 0%, #000 100%);
    opacity: 0.8; z-index: 1;
}
.card-content {
    position: relative; z-index: 2; padding: 40px; height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
}
.logo-area {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 10px;
}
#cardLogo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.seat-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 25px; border-top: 1px dashed rgba(255,255,255,0.2); padding-top: 25px;
}
.seat-box span { display: block; font-size: 0.7rem; color: #aaa; letter-spacing: 2px; }
.seat-box h3 { font-family: 'Courier New', monospace; color: var(--osvs-gold); margin: 0; font-size: 2.5rem; }
.card-footer-stripe { text-align: center; font-size: 0.6rem; color: #666; text-transform: uppercase; letter-spacing: 2px; }

/* --- MOBILE SPECIFIC FIXES --- */
@media (max-width: 991px) {
    .hero-section {
        /* Force content to start from top instead of centering */
        align-items: flex-start !important;
        /* Add extra padding to clear the navbar */
        padding-top: 160px !important;
        /* Allow height to grow naturally if content is tall */
        height: auto;
        padding-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem; /* Slightly smaller text on mobile to save space */
    }
}