/* ===== BASE CSS & VARIABLES ===== */
:root {
    --bg-color: #121212;
    --card-bg: #1c1c1c;
    --metal-dark: #1f1f1f;
    --metal-light: #333333;
    --ted-red: #E50914;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo, .btn {
    font-family: var(--font-heading);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--ted-red);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== BRANDING: LOGO ===== */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo .ted {
    color: var(--ted-red);
}

.logo .x {
    display: inline-block;
    color: var(--ted-red);
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 1.2;
}

.logo .ump {
    color: var(--text-primary);
    margin-left: 2px;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-metallic-grid {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

.red-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,9,20,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.top-left { top: -200px; left: -200px; }
.bottom-right { bottom: -200px; right: -200px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-nav {
    background-color: transparent;
    border: 2px solid var(--ted-red);
    color: var(--ted-red);
}

.btn-nav:hover {
    background-color: var(--ted-red);
    color: white;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--bg-color);
}

.btn-giant {
    background-color: var(--ted-red);
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.btn-giant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.6);
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--ted-red);
}

/* Mobile Menu Button - Hidden by default on desktop */
.mobile-menu-btn {
    display: none; /* hidden on PC */
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
}

.mobile-menu-btn .dot {
    width: 5px;
    height: 5px;
    background-color: var(--text-primary);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover .dot {
    background-color: var(--ted-red);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(30,30,30,0.5));
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
}

.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--ted-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.metal-panel {
    background: linear-gradient(135deg, var(--metal-light), var(--metal-dark));
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.inner-glow {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: sepia(0.2) saturate(1.5) contrast(1.1);
    transition: transform 0.5s ease;
}

.metal-panel:hover .image-placeholder {
    transform: scale(1.05);
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
    padding: 8rem 5%;
    background: rgba(18, 18, 18, 0.4);
    position: relative;
    overflow: hidden;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.schedule-phase {
    font-size: 1.5rem;
    color: var(--ted-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 3px solid var(--ted-red);
    padding-left: 1rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateX(10px);
}

.timeline-item.highlight {
    border-color: rgba(229, 9, 20, 0.2);
    background: linear-gradient(90deg, rgba(229, 9, 20, 0.05), transparent);
}

.time {
    font-weight: 800;
    color: var(--ted-red);
    font-size: 1.1rem;
    min-width: 70px;
}

.event-desc {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

/* ===== SPEAKERS SECTION ===== */
.speakers {
    padding: 8rem 0;
}

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

.speaker-card {
    background-color: var(--card-bg);
    border-radius: 0px; 
    overflow: hidden;
    /* Neo-brutalist style */
    border: 2px solid white;
    box-shadow: 8px 8px 0px var(--ted-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--ted-red);
}

.speaker-image {
    width: 100%;
    height: 350px;
    background: #000;
    position: relative;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.05); /* Enhance interaction since we removed the color transition */
}

.speaker-info {
    padding: 1.5rem;
}

.speaker-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.theme-tag {
    color: var(--ted-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 5%;
    display: flex;
    justify-content: center;
}

.metal-cta-box {
    background: linear-gradient(135deg, #2a2a2a, #111);
    border: 1px solid rgba(229,9,20, 0.3);
    border-radius: 12px;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(229,9,20,0.1);
}

.metal-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metal-cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ENHANCED FORM ===== */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--ted-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.radio-options {
    display: flex;
    gap: 1.5rem;
}

.radio-options label {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.1);
    border: 1px dashed var(--ted-red);
    border-radius: 8px;
}

.event-details p {
    margin: 0 !important;
    color: white !important;
    font-weight: 600;
}

/* Animation Pulse for Button */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(229, 9, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ===== EDITION TABS ===== */
.edition-btn {
    padding: 0.7rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edition-btn:hover {
    border-color: var(--ted-red);
    color: var(--text-primary);
    background: rgba(229, 9, 20, 0.1);
}

.edition-btn.active {
    border-color: var(--ted-red);
    background: var(--ted-red);
    color: white;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

.edition-content {
    animation: fadeInEdition 0.4s ease;
}

@keyframes fadeInEdition {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(30,30,30,0.3), transparent);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid .team-card {
    flex: 0 1 calc(20% - 1.6rem); /* 5 cards in a row maximum */
    min-width: 200px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.team-card.premium-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(229, 9, 20, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    padding: 2.5rem 1.5rem;
}

.team-card.premium-card::before {
    opacity: 0.8;
}

.team-card.premium-card .team-initial {
    width: 85px;
    height: 85px;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
    margin: 0 auto 1.5rem;
}

.team-card.premium-card h3 {
    font-size: 1.3rem;
}

/* Enclosed Team Group Containers */
.team-departments {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-group {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: inset 0 5px 30px rgba(0,0,0,0.3);
}

.team-group-title {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #111; /* matching the general dark bg visually */
    color: var(--ted-red);
    padding: 0.2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ted-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.team-card:hover::before {
    opacity: 1;
}

.team-initial {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ted-red), #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.team-initial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover .team-initial {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(229, 9, 20, 0.5);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--ted-red);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.independent {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: normal;
    margin-top: 0.5rem;
}

.copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Navbar tweaks */
    .navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 1rem 5%;
        gap: 0.5rem;
    }
    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 1; /* allow logo to shrink if needed */
    }
    .logo img {
        height: 25px !important; /* Make logos smaller on mobile to fit everything */
        margin-right: 5px !important;
    }
    .ted, .ump {
        font-size: 1.2rem; /* Make text smaller */
    }
    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        right: 5%;
        background: rgba(28, 28, 28, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 8px;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex; /* Show the 3 dots strictly on mobile */
    }
    .btn-nav {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Typography & Spacing */
    .hero-title { font-size: 3rem; margin-top: 4rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2.2rem; }
    .about, .speakers, .cta-section { padding: 4rem 5%; }
    
    /* Grids */
    .about-grid, .schedule-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .timeline-item {
        gap: 1rem;
        padding: 1rem;
    }
    .time {
        min-width: 60px;
        font-size: 0.9rem;
    }
    .event-desc {
        font-size: 0.95rem;
    }
    .stats-row { flex-direction: row; justify-content: space-around; gap: 1rem; }
    .stat-number { font-size: 2rem; }
    
    /* CTA Box & Form */
    .metal-cta-box {
        padding: 2.5rem 1.5rem;
    }
    .metal-cta-box h2 {
        font-size: 2rem;
    }
    .radio-options {
        flex-direction: column;
        gap: 0.8rem;
    }
    .event-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    .team-grid {
        justify-content: center;
        gap: 1rem;
        display: flex; /* Ensure it respects flex order perfectly if not already */
        flex-wrap: wrap;
    }
    .team-grid .team-card {
        flex: 0 1 100%;
        padding: 1.5rem 1rem;
    }
    
    /* Make Teacher Coordinator appear ABOVE Organizer on mobile only */
    .teacher-card {
        order: -1;
    }

    .team-section {
        padding: 4rem 5%;
    }
}

/* Initialization classes for GSAP */
.reveal-text, .reveal-bottom, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    visibility: hidden;
}
.reveal-text, .reveal-bottom, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    visibility: hidden;
}

/* ===== THEME ANIMATION ===== */
@keyframes theme-glow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(229, 9, 20, 0.3), 0 0 60px rgba(229, 9, 20, 0.1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(229, 9, 20, 0.6), 0 0 100px rgba(229, 9, 20, 0.3), 0 0 150px rgba(229, 9, 20, 0.1);
    }
}

@keyframes theme-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.theme-animated {
    background: linear-gradient(
        90deg, 
        var(--ted-red) 0%, 
        #ff4444 25%,
        #ffffff 50%, 
        #ff4444 75%,
        var(--ted-red) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: theme-shimmer 4s linear infinite, theme-glow 3s ease-in-out infinite;
}

/* ===== ADDITIONAL AUDIT STYLINGS ===== */
/* Hero Theme Subtitle */
.hero-theme {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Theme Explainer Paragraph */
.theme-explainer {
    max-width: 650px;
    margin: 1.5rem auto 2.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    font-family: var(--font-heading);
}

.countdown-timer .time-block {
    text-align: center;
    min-width: 75px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: border-color 0.3s, transform 0.3s;
}

.countdown-timer .time-block:hover {
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.countdown-timer .time-block span:first-child {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ted-red);
    display: block;
    line-height: 1;
}

.countdown-timer .time-block span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    display: block;
}

/* Registration Form Urgency */
.urgency-msg {
    color: var(--ted-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: center;
    padding: 0.8rem;
    border-radius: 6px;
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.15);
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-socials a {
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    color: var(--ted-red);
    transform: scale(1.1);
}

/* Responsive adjustment for Countdown Timer */
@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.8rem;
    }
    .countdown-timer .time-block {
        min-width: 60px;
        padding: 0.6rem 0.4rem;
    }
    .countdown-timer .time-block span:first-child {
        font-size: 1.5rem;
    }
    .countdown-timer .time-block span:last-child {
        font-size: 0.6rem;
    }
}

