/* --- 1. Variables & Global Reset --- */
:root {
    --primary-red: #b30000;    /* Classy Crimson */
    --accent-red: #ff3333;
    --dark-slate: #1a1a1a;
    --off-white: #fdfdfd;
    --pure-white: #ffffff;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--off-white);
    color: var(--dark-slate);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
}

.nav-logo {
    height: 80px; /* Adjusted to be large but not overwhelming */
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary-red); }

/* --- 3. Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), 
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
}
.hero-date-badge {
    display: inline-block;
    background: rgba(179, 0, 0, 0.2); /* Low opacity primary red */
    border: 1px solid var(--primary-red);
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.calendar-icon {
    margin-right: 8px;
}
---------------------------------------------------------
/* Adjust the h4 margin so it doesn't crowd the badge */
.hero-content h4 {
    margin-top: 10px;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.white-text { color: var(--pure-white); }
.accent-text { color: var(--primary-red); }

.hero-content p { color: var(--pure-white); max-width: 600px; }

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-gold { background: var(--primary-red); color: var(--pure-white); }
.btn-outline { border: 2px solid var(--primary-red); color: var(--primary-red); }

.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* --- 4. About Section --- */
.about-section { padding: 100px 10%; background: var(--pure-white); }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.sub-title { color: var(--primary-red); letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 10px; }
.about-text h2 { font-size: 2.8rem; color: var(--dark-slate); margin-bottom: 20px; }
.highlight { color: var(--primary-red); }
.underline-left { width: 50px; height: 4px; background: var(--primary-red); margin-bottom: 30px; }
.about-text p { color: #555; margin-bottom: 20px; text-align: justify; }

.event-info-box {
    padding: 20px;
    background: var(--off-white);
    border-left: 5px solid var(--primary-red);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0px var(--primary-red);
}

/* --- 5. Countdown Section --- */
.countdown-section { padding: 80px 10%; text-align: center; }
.countdown-container { display: flex; justify-content: center; gap: 20px; margin: 40px 0; }

.time-box {
    background: var(--pure-white);
    border: 1px solid var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    min-width: 110px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.time-box span { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary-red); }

/* --- 6. Responsive Adjustments --- */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image { order: -1; margin-bottom: 40px; }
    .nav-links { display: none; }
}

/* --- Competition Page Extensions --- */
/* Prize Hero */
.prize-hero {
    background: linear-gradient(135deg, #b30000, #660000);
    padding: 80px 10%;
    text-align: center;
}

.prize-display {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin: 40px 0;
}

.prize-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.prize-box.first {
    background: white;
    color: #b30000;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Timeline Flow */
.flow-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    padding-left: 50px;
}

.flow-step {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
    border-left: 2px solid #b30000;
}

.day-circle {
    position: absolute;
    left: -76px;
    top: 0;
    width: 50px;
    height: 50px;
    background: #b30000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.flow-content ul {
    list-style: none;
    margin-top: 10px;
}

.flow-content li {
    background: #f8f9fa;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.content-card, .logistics-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.content-card h3, .logistics-card h4 {
    color: #b30000;
    margin-bottom: 15px;
}

/* Divider */
.section-divider {
    display: flex;
    align-items: center;
    padding: 60px 10%;
    gap: 20px;
}

.divider-line { flex: 1; height: 1px; background: #ddd; }
.divider-text { color: #b30000; font-weight: 800; letter-spacing: 3px; }

/* Mobile */
@media (max-width: 768px) {
    .grid-2, .grid-3, .prize-display { grid-template-columns: 1fr; }
    .prize-box { width: 100%; }
}
/* Rules Section Styling */
.rules-grid-container {
    padding: 60px 10%;
    background-color: #fdfdfd;
}

.rules-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.rule-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border-bottom: 5px solid var(--primary-red);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.rule-card:hover { transform: translateY(-10px); }

.rule-icon { font-size: 2.5rem; margin-bottom: 20px; }

/* Visualizing the 50/50 Split */
.judging-split {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.split-item strong { display: block; font-size: 1.5rem; color: var(--primary-red); }
.split-item span { font-size: 0.8rem; font-weight: 700; }

/* Bottom Row Styling */
.rules-row-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.logistics-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
}

.log-icon {
    font-size: 1.5rem;
    padding: 15px;
    background: rgba(179, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--primary-red);
}

.log-text h4 { margin-bottom: 5px; color: var(--primary-red); }
.log-text p { font-size: 0.85rem; line-height: 1.4; color: #666; }

@media (max-width: 992px) {
    .rules-row-top, .rules-row-bottom { grid-template-columns: 1fr; }
}
/* Timeline Slider Styling */
.slider-wrapper {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    min-height: 500px;
}

.timeline-slide {
    display: none; /* Hide all slides by default */
    animation: fadeEffect 0.6s ease-in-out;
}

.timeline-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-header {
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.day-tag {
    background: var(--primary-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
}

.agenda-list { list-style: none; }
.agenda-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agenda-list li .time {
    font-weight: 800;
    color: var(--primary-red);
    font-size: 0.9rem;
    min-width: 180px;
}

/* Navigation Buttons */
.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.nav-btn {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.nav-btn:hover { opacity: 0.8; transform: scale(1.05); }

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active { background-color: var(--primary-red); }

/* Centered Timeline Header */
.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title-center {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title-center {
    font-size: 3rem;
    color: var(--dark-slate);
    margin-bottom: 15px;
}

.underline-center {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
}

/* Lively Slider Card */
.slider-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.slide-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(179, 0, 0, 0.1); /* Subtle red glow shadow */
    border: 1px solid var(--light-gray);
}

.slide-header-box {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--light-gray);
    margin-bottom: 30px;
}

.day-label {
    background: linear-gradient(135deg, var(--primary-red), #660000);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(179, 0, 0, 0.3);
}

/* Agenda Items */
.agenda-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px solid #f4f4f4;
    transition: 0.3s;
}

.agenda-list li:hover {
    background: rgba(179, 0, 0, 0.03);
    padding-left: 20px;
}

.time {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 0.95rem;
}

/* Lively Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.dots-container {
    display: flex;
    gap: 15px;
}

.dot {
    cursor: pointer;
    padding: 8px 20px;
    background: #eee;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.arrow {
    background: none;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.arrow:hover {
    background: var(--primary-red);
    color: white;
}
.dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between the day buttons */
}

.dot {
    cursor: pointer;
    padding: 12px 24px; /* Increased padding for better text fit */
    background: #f0f0f0; /* Light gray for inactive days */
    color: var(--dark-slate);
    border-radius: 8px; /* Rounded corners like your image */
    font-size: 0.85rem;
    font-weight: 800;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 90px; /* Ensures buttons stay consistent size */
    border: none;
    display: flex;
    flex-direction: column; /* Stack 'DAY' and '1' if they wrap */
    line-height: 1.2;
}

.dot.active {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.2);
}

.dot:hover:not(.active) {
    background: #e0e0e0;
}
.dot {
    white-space: nowrap;
}
.dot {
    cursor: pointer;
    /* Use flexbox to center text perfectly */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Dimensions */
    padding: 10px 25px;
    min-width: 100px;
    height: 45px; /* Fixed height helps with vertical centering */
    
    /* Styling */
    background: #f0f0f0;
    color: #000;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    border: none;
    transition: all 0.3s ease;
    
    /* Fix for the 'sinking' text */
    line-height: 1; 
}

.dot.active {
    background: #b30000; /* Your primary red */
    color: #fff;
    box-shadow: 0 8px 20px rgba(179, 0, 0, 0.3);
}
.prize-podium-section {
    background: linear-gradient(135deg, #800000 0%, #b30000 100%);
    padding: 100px 10%;
    text-align: center;
    overflow: hidden;
}

.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Aligns them like a real podium */
    gap: 20px;
    margin: 60px 0;
}

.podium-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    width: 250px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    color: white;
}

/* Height variation for podium effect */
.silver { height: 300px; }
.gold { 
    height: 380px; 
    background: white; 
    color: #b30000; 
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.bronze { height: 260px; }

/* Interactive Hover */
.podium-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.gold:hover {
    background: white;
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.2);
}

.podium-rank {
    font-size: 1.2rem;
    font-weight: 800;
    opacity: 0.7;
    margin-bottom: 10px;
}

.podium-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 10px;
}

.crown-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cert-footer {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .podium-container {
        flex-direction: column;
        align-items: center;
    }
    .podium-card {
        height: auto !important;
        width: 100%;
        max-width: 300px;
    }
}
.prize-footer-container {
    margin-top: 50px;
    padding-bottom: 20px;
}

.cert-footer-large {
    font-size: 1.5rem; /* Significantly bigger */
    font-weight: 800;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 4px; /* Classy, spaced-out look */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* Subtle glow to make it lively */
    opacity: 0.9;
    transition: var(--transition);
}

.cert-footer-large:hover {
    opacity: 1;
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .cert-footer-large {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}
.divider-text {
    font-weight: 800;
    font-size: 2.0rem; /* Increased from 0.9rem to 1.5rem */
    letter-spacing: 8px; /* Increased spacing to maintain the classy look */
    color: var(--primary-red);
    text-transform: uppercase;
    padding: 0 20px; /* Adds space between the text and the lines */
}

/* Ensure the lines align properly with the larger text */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%; /* Increased padding for better section separation */
    gap: 10px;
}
@media (max-width: 768px) {
    .divider-text {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
}

/* Registration Page Styles */
.registration-hero {
    padding-top: 150px;
    background: var(--off-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.iris-form .form-group {
    margin-bottom: 20px;
}

.iris-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-slate);
}

.iris-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
}

.iris-form input:focus {
    border-color: var(--primary-red);
    outline: none;
}

/* Briefing Section Styles */
.briefing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.briefing-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.briefing-card h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.briefing-card ul {
    list-style: disc;
    padding-left: 20px;
}

.briefing-card li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

.payment-highlight {
    border: 2px solid var(--primary-red);
    background: #fffafa;
}
/* Briefing Top Section */
.briefing-top {
    padding-top: 140px; /* Space for fixed nav */
    background: #fff;
}

.briefing-content-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.briefing-box h4 {
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.briefing-box ul li {
    font-size: 1.15rem; /* Larger text as requested */
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--dark-slate);
}

.payment-card {
    border: 2px solid var(--primary-red);
    padding: 35px;
    border-radius: 15px;
    background: #fffcfc;
}

.big-payment-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Success Message Styling */
.success-msg {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .briefing-content-large {
        grid-template-columns: 1fr;
    }
}
/* Centering Container */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

/* Lively Form Card */
.form-card {
    background: #ffffff;
    width: 100%;
    max-width: 600px; /* Pulls form into the middle */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--primary-red);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-slate);
    margin-bottom: 10px;
}

/* Input Fields */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--primary-red);
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-group input:focus {
    border-color: var(--primary-red);
    background: #fff;
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.1);
    outline: none;
}

/* Lively Submit Button */
.form-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-submit-lively {
    width: 100%;
    padding: 18px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(179, 0, 0, 0.2);
}

.btn-submit-lively:hover {
    background: #800000;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(179, 0, 0, 0.4);
}
.payment-methods {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.method-box {
    flex: 1;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.method-box.active {
    border-color: var(--primary-red);
    background: rgba(179, 0, 0, 0.05);
    color: var(--primary-red);
}

.payment-details-box {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 15px;
    border: 1px dashed #ddd;
    text-align: center;
}

.qr-image {
    width: 200px;
    height: 200px;
    margin: 15px auto;
    display: block;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-note {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
}
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 100px;
    border: 2px dashed #ddd;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fafafa;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-red);
    background: rgba(179, 0, 0, 0.02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hides the ugly default button */
    cursor: pointer;
}

.file-custom-design {
    text-align: center;
    pointer-events: none;
}

.upload-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

#fileName {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.warning-text {
    font-size: 0.8rem;
    color: var(--primary-red);
    margin-top: 10px;
    font-weight: 700;
    font-style: italic;
}
/* Premium Briefing Section */
.briefing-premium {
    background: #fdfdfd;
    padding: 100px 10%;
}

.briefing-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Procedures Panel */
.panel-tag {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: block;
}

.procedure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.procedure-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(179, 0, 0, 0.08);
}

.proc-icon {
    font-size: 1.5rem;
    background: rgba(179, 0, 0, 0.05);
    padding: 10px;
    border-radius: 10px;
}

.proc-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Glassmorphism Payment Card */
.payment-glass-card {
    background: linear-gradient(135deg, #b30000, #800000);
    padding: 50px 40px;
    border-radius: 25px;
    color: white;
    position: relative;
    box-shadow: 0 20px 40px rgba(179, 0, 0, 0.3);
    text-align: center;
}

.card-status {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ffc107; /* Gold status badge */
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.amount-tag {
    font-size: 4rem;
    font-weight: 800;
    margin-top: 10px;
}

.per-team {
    opacity: 0.8;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 30px;
}

.payment-rules {
    text-align: left;
}

.rule-line {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bullet {
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .briefing-container { grid-template-columns: 1fr; }
    .payment-glass-card { order: -1; } /* Payment shows first on mobile */
}

/* Contact Page Specifics */
.contact-header {
    padding: 160px 10% 60px;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-panel {
    background: linear-gradient(135deg, #b30000, #800000);
    padding: 50px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(179, 0, 0, 0.2);
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-text p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-circle {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
}

.social-circle:hover {
    background: #fff;
    color: var(--primary-red);
}

/* Contact Form Side */
.contact-form-panel {
    background: #fff;
    padding: 20px;
}

.lively-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lively-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    resize: none;
    background: #fdfdfd;
}

.lively-form textarea:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info-panel { order: 2; }
}
.contact-grid-lively {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card-wa {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid #25D366; /* WhatsApp Green */
    transition: 0.3s;
}

.contact-card-wa:hover {
    transform: translateY(-10px);
}

.wa-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card-wa h3 {
    margin-bottom: 15px;
    color: var(--dark-slate);
}

.contact-card-wa p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
    min-height: 50px;
}

/* Lively WhatsApp Button */
.wa-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.wa-btn:hover {
    background: #128C7E;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.email-btn {
    background: var(--primary-red);
    box-shadow: 0 10px 20px rgba(179, 0, 0, 0.2);
}

.email-btn:hover {
    background: #800000;
    box-shadow: 0 15px 30px rgba(179, 0, 0, 0.4);
}

.form-card-wide {
    background: #fff;
    max-width: 1000px; /* Wider to accommodate two columns */
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top: 6px solid var(--primary-red);
}

.form-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split 50/50 */
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.column-title {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--primary-red);
    padding-left: 10px;
}

.form-row-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-upload-area {
    margin-top: 40px;
    padding: 30px;
    background: #fffafa;
    border-radius: 15px;
    border: 1px dashed var(--primary-red);
}

/* Responsive: Stack columns on mobile */
@media (max-width: 850px) {
    .form-grid-split, .form-row-top {
        grid-template-columns: 1fr;
    }
    .form-card-wide { padding: 25px; }
}
.bank-transfer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.bank-card p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #333;
}

.account-num {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.reference-instruction {
    border-left: 2px solid #ffc107; /* Warning yellow */
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reference-instruction p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.upload-field-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-slate);
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .bank-transfer-details {
        grid-template-columns: 1fr;
    }
}
/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide them for now, or use a vertical stack */
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    /* Quick fix: Make them stack and show */
    nav { padding: 10px 5%; }
    .nav-links.active { display: flex; } 
}
/* Stack the About Grid and Competition Cards */
@media (max-width: 768px) {
    .about-grid, .contact-wrapper, .form-grid-split {
        grid-template-columns: 1fr !important; /* Forces 1 column instead of 2 */
        text-align: center;
        gap: 30px;
    }

    .about-img-col {
        order: -1; /* Puts the photo ABOVE the text on mobile */
    }

    .section-title {
        font-size: 1.8rem; /* Shrink titles so they don't wrap weirdly */
    }
}
@media (max-width: 600px) {
    .form-card-wide {
        padding: 20px; /* Reduce padding so it doesn't look squeezed */
        margin: 10px;
    }

    .form-row-top, .form-row-small {
        grid-template-columns: 1fr; /* Everything becomes a single vertical list */
    }

    .btn-submit-lively {
        width: 100%; /* Make the button easy to tap with a thumb */
        padding: 15px 20px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; /* We hide it until we add a 'hamburger' button later */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* Temporary Fix: Make it visible so you can at least see it now */
    .nav-links {
        display: flex; 
        position: relative;
    }

    .nav-links li {
        margin: 10px 0;
    }
}
@media (max-width: 768px) {
    .countdown-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two boxes per row instead of four */
        gap: 10px;
        padding: 0 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 1.5rem !important; /* Smaller numbers */
    }

    .countdown-label {
        font-size: 0.7rem !important;
    }
}
@media (max-width: 768px) {
    .timeline::after {
        left: 31px; /* Moves the center line to the left */
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left-container, .right-container {
        left: 0;
    }

    .right-container::after, .left-container::after {
        left: 15px; /* Aligns the dots */
    }
}
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
* --- Desktop: Hide Menu Icon --- */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-red);
    transition: 0.3s;
}

/* --- Mobile View (768px and below) --- */
@media (max-width: 768px) {
    .menu-icon { display: flex; }

    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* This class will be toggled by JS */
    .nav-links.active {
        display: flex;
    }

    /* Countdown Fix */
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .countdown-item {
        width: 40%; /* 2 items per row */
        margin: 5px;
    }
}
/* Mobile Nav Fix */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }
    .nav-links {
        display: none; /* Hide by default on mobile */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex; /* Show when clicked */
    }
}
/* Timeline Mobile Overhaul */
@media (max-width: 768px) {
    .timeline-item {
        display: flex;
        flex-direction: column; /* Stacks Time above Title */
        align-items: flex-start;
        padding: 15px;
        border-left: 3px solid #b30000; /* Classy red line on the left */
        margin-left: 10px;
    }

    .timeline-time {
        font-size: 1rem;
        font-weight: 800;
        color: #b30000;
        margin-bottom: 5px;
    }

    .timeline-content {
        font-size: 0.9rem;
        line-height: 1.4;
        width: 100%; /* Ensures text has room to breathe */
    }

    /* Fix that header 'Day 1' badge */
    .day-badge {
        width: fit-content;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* Fix the Giant Logo & Missing Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    width: 100%;
    position: relative; /* Ensures nav-links stay relative to header */
}

.logo img {
    max-width: 60px; /* Force the logo to stay small on mobile */
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 50px; /* Even smaller for very small phones */
    }
    
    /* Ensure the header doesn't hide behind the logo */
    .navbar {
        height: 70px; 
        display: flex;
        align-items: center;
    }
}
@media (max-width: 768px) {
    /* Stack the content vertically */
    .timeline-item {
        flex-direction: column !important; 
        align-items: flex-start !important;
        padding: 20px !important;
        text-align: left !important;
        border-left: 3px solid var(--primary-red);
        margin-bottom: 20px;
    }

    .timeline-time {
        font-size: 1.1rem !important;
        color: var(--primary-red);
        margin-bottom: 8px;
        font-weight: 800;
        display: block;
    }

    .timeline-content {
        font-size: 1rem !important;
        width: 100% !important; /* Forces text to use full width */
        margin: 0 !important;
    }
    
    /* Fix the Day 1 badge overflow */
    .day-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        max-width: 100%;
        display: inline-block;
    }
}
nav {
    position: fixed;    /* This freezes the bar */
    top: 0;             /* Sticks it to the very top */
    left: 0;
    width: 100%;        /* Ensures it spans the full width */
    z-index: 1000;      /* Keeps it on top of all other elements */
    background: #fff;   /* Ensure it has a background so it's not transparent */
    box-shadow: 0 2px 15px rgba(0,0,0,0.1); /* Adds a subtle shadow for depth */
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    nav {
        height: 70px; /* Fixed height for consistency */
    }
    
    .nav-links {
        /* When the menu pops out, make it fixed too */
        position: fixed; 
        top: 70px;
        height: calc(100vh - 70px); /* Makes the menu fill the screen */
        overflow-y: auto;
    }
}
/* Add this to your first section on every page */
.hero, .contact-header, .form-section {
    margin-top: 80px; /* Adjust this number to match the height of your nav bar */
}
/* --- 1. VARIABLES & GLOBAL RESET --- */
:root {
    --primary-red: #b30000;
    --accent-red: #ff3333;
    --dark-slate: #1a1a1a;
    --off-white: #fdfdfd;
    --pure-white: #ffffff;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease-in-out;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--off-white);
    color: var(--dark-slate);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* --- 2. FROZEN NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    position: fixed;
    width: 100%;
    height: var(--nav-height);
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo img, .nav-logo {
    height: 60px; /* Locked size to prevent giant logo glitch */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary-red); }

/* --- 3. HERO & SECTIONS (Fixed Overlap) --- */
.hero, .registration-hero, .contact-header, .briefing-top {
    margin-top: var(--nav-height); /* Prevents content from hiding under nav */
}

.hero {
    height: calc(100vh - var(--nav-height));
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), 
                url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

/* --- 4. COMPONENTS (Timeline, Countdown, Podium) --- */
.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.countdown-container { display: flex; justify-content: center; gap: 20px; margin: 40px 0; }

.time-box {
    background: var(--pure-white);
    padding: 25px;
    border-radius: 10px;
    min-width: 110px;
    text-align: center;
    border: 1px solid var(--light-gray);
}

/* --- 5. REGISTRATION FORM --- */
.form-card-wide {
    background: #fff;
    max-width: 1000px;
    margin: 40px auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top: 6px solid var(--primary-red);
}

.form-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* --- 6. MOBILE RESPONSIVENESS (The Fixer) --- */
@media (max-width: 768px) {
    /* Header/Nav Fixes */
    nav { padding: 0 5%; height: 70px; }
    .logo img { height: 45px; }
    
    .menu-icon {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        z-index: 1001;
    }

    .nav-links.active { display: flex; }

    /* Timeline Fix (Stacked/No more trash) */
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        border-left: 4px solid var(--primary-red);
        gap: 10px;
    }

    .time { width: 100%; font-size: 1.1rem; }

    /* Layout Grids */
    .about-grid, .form-grid-split, .briefing-container, .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Countdown Fix */
    .countdown-container {
        flex-wrap: wrap;
    }
    .time-box {
        min-width: 45%;
        padding: 15px;
    }
}
/* --- 1. Global Reset & Variables --- */
:root {
    --primary-red: #b30000;
    --dark-slate: #1a1a1a;
    --pure-white: #ffffff;
    --nav-height: 80px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* --- 2. Frozen Navigation Bar --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 60px; /* Keeps logo small and classy */
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 700;
    transition: var(--transition);
}

/* --- 3. Hamburger Menu Icon (Hidden on Desktop) --- */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* --- 4. Mobile Responsiveness (768px) --- */
@media (max-width: 768px) {
    nav { padding: 0 5%; height: 70px; }
    
    .menu-icon { display: flex; } /* Show hamburger on mobile */

    .nav-links {
        display: none; /* Hidden by default */
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        z-index: 1999;
    }

    /* This is what the JavaScript will toggle */
    .nav-links.active {
        display: flex !important;
    }

    /* Fix the "Trash" Timeline for Mobile */
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        border-left: 4px solid var(--primary-red);
        margin: 10px;
        padding: 20px !important;
    }

    .time {
        font-weight: 800;
        color: var(--primary-red);
        margin-bottom: 5px;
    }
}
@media (max-width: 768px) {
    /* 1. Force the timeline container to stay inside the screen */
    .slider-wrapper, .slide-card {
        padding: 20px !important;
        margin: 10px !important;
        width: calc(100% - 20px) !important;
    }

    /* 2. Stack Time and Event vertically so they don't squash */
    .agenda-list li {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 15px 0 !important;
        gap: 5px;
    }

    /* 3. Give the Time its own row with breathing room */
    .agenda-list li .time {
        display: block !important;
        width: 100% !important;
        font-size: 1rem !important;
        margin-bottom: 5px;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }

    /* 4. Let the Event Title use the full width */
    .agenda-list li span:not(.time) {
        font-size: 0.95rem !important;
        font-weight: 600;
        line-height: 1.4;
        display: block;
        width: 100%;
    }

    /* 5. Fix the Day 1 Badge so it doesn't overlap */
    .day-label {
        font-size: 0.9rem !important;
        padding: 8px 20px !important;
    }
}
.registration-cta {
    padding: 100px 5%;
    text-align: center;
    background: #fdfdfd;
}

.cta-card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 8px solid var(--primary-red);
    max-width: 800px;
    margin: 0 auto;
}

.btn-register-now {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    margin-top: 30px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 20px rgba(179, 0, 0, 0.3);
}

.btn-register-now:hover {
    background: #800000;
    transform: translateY(-5px);
}