* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d1625;
    color: #ffffff;
}

/* Header & Navigation Styles */
.main-header {
    /* #003057 in RGBA format with 0.5 (half) opacity */
    background-color: rgba(0, 48, 87, 0.5); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;   
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header .logo img {
    height: 40px;
    width: auto;
}

.main-header .logo h1 {
    font-size: 1.5rem;
    color: #ffffff;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #ffffff; /* Removed !important so hover works cleanly */
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #30CDD7 !important; 
    text-decoration: underline;
}

/* Home Hero Section Layout */
.home-hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

.hero-center {
    width: 100%;
    height: 190vh;
    position: relative;
}

.hero-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(55%);  

    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

.hero-text {
    position: absolute;
    top: 55%;
    left: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; 
    gap: 15px;
    width: 100% !important;
    max-width: 1200px;
    padding-left: 40px; 
    box-sizing: border-box; 
    text-align: left; 
}

.hero-text p {
    font-size: 1.3rem;
    font-weight:bold;
    padding: 0.01px 0.01px;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 1px;
    text-align: left;
    margin-left: 23px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-family: 'Montserrat', sans-serif;  
    margin-top: 80px;
    font-weight: 800;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
}

.home-hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 520px; 
    overflow: hidden;
}

/* Home Hero Section Layout */
.home-hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 85vh; /* Gives plenty of room for both text and countdown */
    overflow: hidden;
}

.hero-center {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(55%); /* Darkens the image slightly so your white text/boxes pop */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Even spacing between title, location, and countdown */
}

.hero-location {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 6px 12px;
    align-self: flex-start;
    border-radius: 4px;
}

.hero-text h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    padding: 10px 20px;
    align-self: flex-start;
    border-radius: 4px;
}

/* Countdown Over Image Alignment */
.countdown-section {
    width: 100%;             /* Spans across the entire text block wrapper */
    display: flex;
    justify-content: center; /* Centers everything inside this wrapper horizontally */
    margin-top: 25px;        /* Adds comfortable breathing room below your text */
}

#countdown {
    display: flex;
    gap: 15px;
    justify-content: center; /* Ensures the individual boxes stay tight and centered */
}

.countdown-box {
    background-color: #ffffffdd;
    color: #1E96A5;
    width: 110px;
    height: 110px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.countdown-box .number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.3rem;
    font-weight: bold;
}

.countdown-box .label {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.75rem;
    color: #555555;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* Helper class to hide things */
.hidden {
    display: none !important;
}

/* Style for your announcement message when it shows up */
#countdown-message h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #30CDD7; /* Beautiful teal color */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
    animation: pulse 2s infinite; /* Adds a clean, professional slow-glow effect */
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Footer & Active Email Block Styles */
.footer-section {
    background-color: #090e17;
    padding: 50px 40px;
    border-top: 4px solid #30CDD7;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer-logo {
    height: 150px;
    width: auto;
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-details p {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #cccccc;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
}

.contact-details a:hover {
    color: #30CDD7;
    text-decoration: underline;
}

/* Container for any new homepage content below the hero banner */
.home-content-area {
    display: block;
    width: 100%;
    max-width: 1100px;
    /* CHANGED: -50px pulls it up into the fade slightly, 80px keeps room above footer */
    margin: 25px auto 80px auto; 
    padding: 0 40px;
    box-sizing: border-box;
    position: relative; /* Forces it to sit nicely over the faded edge */
    z-index: 3;
    text-align: center;
}
 
.home-content-area h2 {
    margin-bottom: 25px;  
    font-family: 'Montserrat', sans-serif;  
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
}

.home-content-area p {
    line-height: 1.8;
    color: #dddddd;
}

/* Optional styling helper for whatever element you are dropping inside */
.your-new-element-class {
    background-color: rgba(255, 255, 255, 0.05); /* Optional dark transparency card style */
    padding: 40px;
    border-radius: 8px;
}

/* about page _________________________________________________________________
_______________________________________________________________________________*/ 

/* About Page Specific Styles */
.about-page-container {

    margin-top: 100px; /* Pushes content down so it doesn't hide behind fixed header */
    padding: 40px 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    min-height: 80vh; /* Keeps footer pushed to the bottom of screen */
}

.about-hero {
    text-align: center;
    margin-bottom: 50px;
}


.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #30CDD7; /* Match your signature teal */
}

.about-hero .subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    font-style: italic;
    margin-top: 10px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent dark cards */
    border-left: 4px solid #30CDD7; /* Clean accent border on the left */  
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-card h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-card h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-card p {
    line-height: 1.8;
    color: #dddddd;
}

.about-card p2 {
    line-height: 1.8;
    color: #dddddd;
    text-align: center;
    font-size: large;
}

/* Instagram Vibe - Theme Split Card */
.theme-split {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 !important; /* Allows the image wrapper to sit flush */
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05) !important; /* Matches the 3rd box background */
    border-left: 4px solid #30CDD7 !important; /* Accent teal border matching the others */
    border-right: none;
    border-top: none;
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.theme-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    padding: 20px 20px 20px 40px;  
}

.theme-poster {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps the entire image visible without cropping or zooming! */
    opacity: 1;          /* Restores 100% of the vibrant colors and contrast */
    transition: transform 0.5s ease;
    margin-left: 55px;
}
/* Hover effect works perfectly without zooming out of bounds */
.theme-split:hover .theme-poster {
    transform: scale(1.03);
}

.poster-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.theme-text-side {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.category-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #30CDD7; /* Signature teal */
    letter-spacing: 2px;
}

.emphasized-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #e2e8f0;
    border-left: 3px solid #30CDD7;
    padding-left: 15px;
    margin: 10px 0;
    line-height: 1.6;
}

/* Responsive adjust for smaller screens / tablets */

@media (max-width: 768px) {
    .theme-split {
        flex-direction: column;
    }
    .theme-image-wrapper {
        min-height: 250px;
    }
    .theme-text-side {
        padding: 25px;
    }
}

/* Intro Card Styling */
.intro-card {
    background-color: rgba(255, 255, 255, 0.05); /* Matches the 3rd box background */
    border-left: 4px solid #30CDD7; /* Accent teal border */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Centers only this card's title */
.intro-card h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px; /* Adds space below the centered title */
}

/* Committee List Styling */
.committee-list {
    list-style-type: none;      /* Removes default generic bullet points */
    padding-left: 60px;         /* Pushes the entire list inwards! Increase this number to push it even more */
    margin-top: 15px;           /* Adds clean breathing room below the intro sentence */
    display: flex;
    flex-direction: column;
    gap: 10px;                  /* Even spacing between each committee */
}

.committee-list li {
    font-size: 1.05rem;
    color: #dddddd;
    position: relative;
}

/* Custom bullet indicator (clean custom dash) */

.committee-list li::before {
    content: "—";               /* Uses a clean, long dash as a custom bullet */
    color: #30CDD7;             /* Accent teal color for the bullets */
    position: absolute;
    left: -25px;                /* Sits perfectly in front of each item */
    font-weight: bold;
} 

/* ================= MOBILE NAV BAR & HAMBURGER ================= */ 
/* RESPONSIVE BREAKPOINT: For tablets and mobile devices ______________________________________________________________*/
 
.hamburger-toggle {
    display: none; /* Hidden on full desktop screens */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000 !important; /* Forces the button to stay on the absolute top layer */
}
 
.hamburger-toggle span {
    width: 100%;
    height: 3px;
    background-color: #30CDD7; /* Signature AAMUN Teal */
    border-radius: 2px;
    transition: all 0.3s ease;
}
 
/* ================= DESKTOP DROPDOWN STYLES ================= */

/* Position wrapper for the dropdown item */
.nav-links .dropdown {
    position: relative;
}

/* Style the Committees trigger text to match your other links */
.dropdown-trigger {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger:hover {
    color: #30CDD7;
}

/* Small dropdown indicator arrow helper */
.dropdown-trigger .arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

/* Hide the dropdown menu completely by default */
.dropdown-menu {
    position: absolute;
    top: 100%; /* Sits perfectly beneath the header link bar */
    left: 0;
    background-color: #ffffff; /* Clean white background */
    min-width: 220px; /* Bumped slightly so longer committee names fit nicely */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 10px 0 !important;
    margin: 10px 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none;
    
    /* ================= NEW SCROLLBAR CONTROLS ================= */
    max-height: 300px;    /* Caps the dropdown height so it doesn't leave the screen */
    overflow-y: auto;     /* Adds a vertical scrollbar ONLY if the items overflow */
    
    /* Animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Individual dropdown link layout */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    color: #333333 !important; /* Dark text on white background */
    padding: 12px 20px !important;
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover effect on dropdown links */
.dropdown-menu li a:hover {
    background-color: #f4f6f9;
    color: #30CDD7 !important;
    text-decoration: none !important;
}

/* THE MAGIC: Reveal the menu smoothly when hovering over the main list item */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate the arrow slightly on hover */
.dropdown:hover .dropdown-trigger .arrow {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    /* Reveal the hamburger toggle button */
    .hamburger-toggle {
        display: flex !important;
    }
 
    .main-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 20px !important;
        box-sizing: border-box;
    }

    /* Updated sliding panel bounds */
    .nav-links {
        position: fixed !important;
        right: -100% !important; 
        top: 0 !important;
        width: 260px !important; /* Slightly wider so long committee words fit perfectly */
        height: 100vh !important;
        background-color: #003057 !important; 
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5) !important;
        padding-top: 80px !important; 
        padding-bottom: 40px !important; /* Ensures the last item doesn't touch the very bottom */
        transition: right 0.4s ease !important;
        z-index: 99999 !important; 

        /* NATIVE TRACK CONTROLS: Works hand-in-hand with our JS touch engine */
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
 
    .nav-links ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-links ul li {
        border-bottom: 1px solid #30ccd74e; 
        width: 100% !important;
    }
 
    .nav-links ul li a {
        display: block !important;
        padding: 16px 20px !important; 
        font-size: 1.1rem !important;
        text-align: left !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* The Committees trigger is a span, so give it the same row styling as links. */
    .nav-links .dropdown-trigger {
        padding: 16px 20px;
        font-size: 1.1rem;
        font-weight: bold;
        width: 100%;
        box-sizing: border-box;
    }

    body[data-menu-open="true"] .nav-links {
        right: 0 !important; 
    }
 
    .hamburger-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* Keep the mobile accordion visually identical to the desktop dropdown. */
    .nav-links .dropdown-menu {
        position: static !important;
        background-color: #ffffff !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
        border-radius: 4px;
        padding: 10px 0 !important;
        margin: 0 !important;
        display: none !important; /* CHANGED: Hide it by default on mobile */
        flex-direction: column !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Do not inherit the larger, dark mobile navigation-link style. */
    .nav-links .dropdown-menu li {
        border-bottom: none;
    }

    .nav-links .dropdown-menu li a {
        color: #333333 !important;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600;
    }

    .nav-links .dropdown-menu li a:hover {
        background-color: #f4f6f9;
        color: #30CDD7 !important;
    }

    /* NEW: Display the dropdown menu when the 'active' class is toggled */
    .nav-links .dropdown.active .dropdown-menu {
        display: flex !important;
    }
    
    /* CHANGED: Keep the arrow visible on mobile so users know it opens */
    .dropdown-trigger .arrow {
        display: inline-block !important; 
        transition: transform 0.3s ease;
    }

    /* NEW: Rotate the arrow when the menu is active on mobile */
    .dropdown.active .dropdown-trigger .arrow {
        transform: rotate(180deg);
    }
}

/*_____________________________________________________________________________________________appear on scroll*/
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= COMMITTEE PAGE ================= */
.committee-page { 
    min-height: 100vh; 
    overflow: hidden; 
}
.committee-hero {
     min-height: 520px; 
     margin-top: 70px; 
     padding: 70px 40px 70px; 
     position: relative; 
     display: flex; 
     align-items: flex-start; 
     isolation: isolate; 
     background: linear-gradient(125deg, #081220 0%, #0e2940 53%, #062a36 100%); 
    }
.committee-hero-content, .committee-content {
     width: min(1120px, 100%);
      margin: 0 auto; 
    }
.committee-hero-content { 
    display: flex; 
    align-items: center; 
    gap: clamp(42px, 8vw, 110px); 
}
.committee-logo-frame {
    flex: 0 0 250px; 
    width: 250px; 
    height: 250px; 
    padding: 20px; 
    display: grid; 
    place-items: center; 
    border: 1px solid rgba(48, 205, 215, .8); 
    border-radius: 50%; 
    background: rgba(255, 255, 255, .08); 
    box-shadow: 0 0 0 13px rgba(48, 205, 215, .08), 0 24px 60px rgba(0, 0, 0, .35); 
}
.committee-logo-frame img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain;
 }
.unodc-committee-logo {
    transform: translateY(-8px);
}
.committee-eyebrow { 
    color: #30CDD7; 
    font-family: 'Montserrat', sans-serif; 
    font-size: .72rem; 
    font-weight: 800; 
    letter-spacing: 2.3px; 
    text-transform: uppercase; 
}
.committee-hero h1, .committee-section-heading h2, .president-letter h2 {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800;
 }
.committee-hero h1 { 
    margin-top: 15px; 
    font-size: clamp(2.35rem, 4.7vw, 4.3rem); 
    line-height: 1.08; letter-spacing: -.04em; 
}
.committee-acronym { 
    margin-top: 17px; 
    color: #c5f6f8; 
    font-size: 2.05rem; 
    font-weight: 700; 
    letter-spacing: 5px; 
}
.committee-title-rule { 
    width: 74px; 
    height: 3px; 
    margin: 25px 0 20px; 
    background: #30CDD7; 
}
.committee-intro { 
    max-width: 640px; 
    color: #d6e3e8; 
    font-size: 1.1rem; 
    line-height: 1.8; 
}
.committee-content { 
    padding: 90px 40px 115px; 
}
.committee-section-heading { 
    max-width: 660px; 
    margin-bottom: 36px; 
}
.committee-section-heading h2 {
    margin-top: 13px; 
    font-size: clamp(2rem, 3.6vw, 3.05rem); 
    line-height: 1.15; 
}
.committee-overview { 
    display: grid; 
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, .75fr); 
    gap: 58px; 
    padding-bottom: 90px; 
    border-bottom: 1px solid rgba(197, 246, 248, .16); 
}
.committee-overview-main p { 
    color: #d0d9df; 
    font-size: 1.03rem; 
    line-height: 1.9; 
    text-align: justify;
}
.committee-overview-main p + p { 
    margin-top: 20px; 
}
.president-letter { 
    position: relative; 
    max-width: 900px; 
    margin: 90px auto 0; 
    padding: 55px 65px 58px 145px; 
    background: linear-gradient(135deg, rgba(18, 53, 72, .92), rgba(10, 27, 43, .96)); 
    border: 1px solid rgba(48, 205, 215, .32); 
    box-shadow: 18px 18px 0 rgba(48, 205, 215, .11); 
}
.letter-mark { 
    position: absolute; 
    left: 43px; 
    top: 24px; 
    color: #30CDD7; 
    font-family: Georgia, serif; 
    font-size: 9rem; 
    line-height: 1; 
    opacity: .82; 
}
.president-letter h2 { 
    margin: 11px 0 28px; 
    font-size: 2.15rem; 
}
.letter-content > p:not(.committee-eyebrow) { 
    color: #d8e2e7; 
    line-height: 1.85; 
}.letter-content > p + p { 
    margin-top: 17px; 
}
.letter-signoff { margin-top: 27px;
    display: flex; 
    flex-direction: column; 
    gap: 4px;
    color: #aebfc8; 
    font-size: .94rem; 
}
.letter-signoff strong { 
    color: #30CDD7; 
    font-family: 'Montserrat', sans-serif; 
    font-size: .95rem; 
}
@media (max-width: 768px) { 
    .committee-hero { 
        min-height: auto; 
        padding: 65px 25px 62px; 
    }
    .committee-hero-content { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 43px; 
    }
    .committee-logo-frame { 
        flex-basis: 175px; 
        width: 175px; 
        height: 175px; 
        padding: 14px; 
    }
    .committee-content { 
        padding: 65px 25px 85px; 
    }
    .committee-overview { 
        grid-template-columns: 1fr; 
        gap: 35px; 
        padding-bottom: 64px; 
    }
    .president-letter { 
        margin-top: 64px; 
        padding: 45px 28px 45px 72px; 
        box-shadow: 10px 10px 0 rgba(48, 205, 215, .11); 
    }
    .letter-mark { 
        left: 20px; 
        top: 20px; 
        font-size: 5rem; 
    } 
}

/* Simplified UNODC layout */
.committee-overview { display: block; max-width: 760px; }

/* ================= REGISTRATION PAGE ================= */
.registration-page {
    min-height: 100vh;
    padding: 155px 24px 110px;
    background: linear-gradient(135deg, #081220 0%, #0e2940 53%, #062a36 100%);
}

.registration-hero,
.registration-card {
    width: min(820px, 100%);
    margin-inline: auto;
}

.registration-hero { text-align: center; margin-bottom: 44px; }
.registration-eyebrow {
    color: #30CDD7;
    font-family: 'Montserrat', sans-serif;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.registration-hero h1 {
    margin: 12px 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
}
.registration-hero > p:last-child { color: #d6e3e8; font-size: 1.1rem; }
.registration-card {
    padding: clamp(32px, 6vw, 58px);
    text-align: center;
    border: 1px solid rgba(48, 205, 215, .35);
    border-left: 4px solid #30CDD7;
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
    box-shadow: 18px 18px 0 rgba(48, 205, 215, .09), 0 22px 50px rgba(0, 0, 0, .26);
}
.registration-card h2 {
    margin: 13px 0 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3.6vw, 2.45rem);
}
.delegate-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
    text-align: left;
}
.delegate-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid rgba(197, 246, 248, .2);
    border-radius: 6px;
    background: rgba(8, 18, 32, .35);
}
.delegate-option h3 {
    color: #30CDD7;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
}
.delegate-option p { margin-top: 13px; color: #d6e3e8; line-height: 1.7; }
.delegate-option .registration-button { margin-top: 24px; font-size: .9rem; }
.registration-copy { max-width: 570px; margin: 0 auto; color: #d6e3e8; line-height: 1.8; }
.registration-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
    padding: 15px 25px;
    border: 2px solid #30CDD7;
    border-radius: 4px;
    background: #30CDD7;
    color: #081220;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.registration-button:hover { background: transparent; color: #30CDD7; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(48, 205, 215, .18); }
.application-deadline { margin-top: 28px; color: #c5f6f8; font-size: .98rem; }
.active-nav-link { color: #30CDD7 !important; }

@media (max-width: 768px) {
    .committee-hero { padding-top: 55px; }
    .committee-overview { padding-bottom: 64px; }
    .registration-page { padding-top: 120px; padding-bottom: 80px; }
    .delegate-options { grid-template-columns: 1fr; }
}

/* ================= RESPONSIVE LAYOUT POLISH =================
   These rules keep the shared layout balanced from smaller laptops through
   large desktop displays, while allowing the homepage to reflow on phones. */
.main-header {
    padding-inline: clamp(24px, 3vw, 64px);
}

.nav-links ul {
    gap: clamp(16px, 1.4vw, 26px);
}

.home-hero {
    min-height: 520px;
    height: clamp(520px, 85vh, 760px);
}

.hero-text {
    left: 0 !important;
    width: 100% !important;
    max-width: none;
    padding-inline: clamp(24px, 3vw, 64px);
    gap: clamp(14px, 1.5vw, 22px);
}

.hero-text h1 {
    max-width: 22ch;
    margin-top: 0;
    padding: 0;
    font-size: clamp(2.5rem, 3.75vw, 3.6rem);
    line-height: 1.12;
}

.hero-text p,
.hero-location {
    margin: 0;
    padding: 0;
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
    line-height: 1.45;
}

.countdown-section {
    margin-top: clamp(18px, 2vw, 28px);
}

#countdown {
    gap: clamp(10px, 1.2vw, 18px);
}

.countdown-box {
    width: clamp(92px, 8.6vw, 120px);
    height: clamp(92px, 8.6vw, 120px);
}

.countdown-box .number {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
}

.footer-container {
    width: min(1100px, 100%);
}

@media (max-width: 700px) {
    .home-hero {
        margin-top: 60px;
        min-height: 520px;
        height: min(720px, max(520px, calc(100svh - 60px)));
    }

    .hero-text {
        align-items: center;
        padding-inline: 18px;
        text-align: center;
    }

    .hero-text h1 {
        max-width: 16ch;
        font-size: clamp(2.15rem, 9vw, 2.75rem);
    }

    .hero-text p,
    .hero-location {
        max-width: 32ch;
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }

    .countdown-section {
        margin-top: 24px;
    }

    #countdown {
        width: 100%;
        gap: clamp(7px, 2.4vw, 12px);
    }

    .countdown-box {
        width: min(21vw, 88px);
        height: min(21vw, 88px);
        min-width: 64px;
        min-height: 64px;
        border-radius: 10px;
    }

    .countdown-box .number {
        font-size: clamp(1.55rem, 7.5vw, 2rem);
    }

    .countdown-box .label {
        margin-top: 2px;
        font-size: clamp(.52rem, 2.4vw, .68rem);
        letter-spacing: .7px;
    }

    .footer-section {
        padding: 42px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-logo {
        height: 115px;
    }
}
