@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   GSLMUN'26 — FRAMER EDITORIAL DARK THEME
   Design Language: Minimalist, Premium, Sophisticated Dark Mode
   Typography: Inter Bold (-100 Tracking)
   Logos & Navbar Animations: Original Colors & Full Interactive Animations
   ========================================================================== */

:root {
    --bg-pure: #000000;
    --bg-surface: #070709;
    --bg-elevated: #0e0e12;
    --bg-glass: rgba(16, 16, 22, 0.72);
    --bg-glass-hover: rgba(24, 24, 32, 0.82);
    
    --primary-accent: #fdb912;
    --legacy-crimson: #a6144e;
    --legacy-pink: #c41551;
    --legacy-gold: #fdb912;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-tertiary: #73737D;
    
    --border-whisper: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.14);
    --border-highlight: rgba(253, 185, 18, 0.35);
    
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --tracking-100: -0.055em; /* Ultra-tight Poster Display tracking */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-pure);
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    position: relative;
}

/* Atmospheric Legacy Glow Mesh Gradients (#bringingthelegacyback Crimson & Gold) */
body::before {
    content: '';
    position: fixed;
    top: -15%;
    left: 15%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(166, 20, 78, 0.14) 0%, rgba(196, 21, 81, 0.06) 40%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -15%;
    right: 10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(253, 185, 18, 0.11) 0%, rgba(230, 81, 0, 0.05) 45%, transparent 75%);
    filter: blur(160px);
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   GLASSMORPHISM NAVBAR & RESTORED ANIMATIONS
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    background: rgba(10, 10, 12, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-whisper);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

/* Restored Glow / Glitter Animation around Logo */
.logo::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 160%; height: 160%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(253, 185, 18, 0.15) 0%, transparent 65%);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    filter: blur(12px);
}

.logo:hover::before {
    opacity: 1;
}

.logo img {
    height: 80px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Restored Logo Hover Rotation & Drop Shadow */
.logo:hover img {
    transform: rotate(-3deg) scale(1.05);
    filter: drop-shadow(0 0 12px rgba(253, 185, 18, 0.35));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Restored Smooth Hover Line Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--text-primary);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Restored Instagram Glow & Animation */
.insta-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.insta-logo::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 250%; height: 250%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(225, 48, 108, 0.55) 0%, rgba(253, 29, 29, 0.35) 40%, transparent 70%);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    filter: blur(10px);
}

.insta-logo:hover::before {
    opacity: 1;
}

.insta-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.insta-logo:hover img {
    transform: rotate(15deg) scale(1.15);
    filter: drop-shadow(0 0 12px rgba(225, 48, 108, 0.85));
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--text-primary);
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
    color: #fff;
}

/* =========================================
   INTER BOLD -100 TRACKING HEADINGS
   ========================================= */
h1, h2, h3, h4,
.hero-title,
.section-title,
.page-title,
.f-page-title,
.letter-main-title,
.faq-title,
.f-name,
.dept-title,
.app-title,
.transport-title,
.f-conf-btn-title {
    font-family: var(--font-sans) !important;
    font-weight: 800 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: calc(100vh - 110px);
    height: auto;
    padding: 4rem 0 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #111115 0%, var(--bg-pure) 85%);
    overflow: hidden;
}

.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0) 95%),
                linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.88) 65%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0) 95%),
                        linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.88) 65%, rgba(0, 0, 0, 0) 100%);
}

.hero-3d-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.08);
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    filter: drop-shadow(0 0 25px rgba(253, 185, 18, 0.18));
    opacity: 0.95 !important;
    mix-blend-mode: screen;
    pointer-events: none;
}

#hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
    pointer-events: none;
    display: block;
}

.hero-glitter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fdb912, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40% 70%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 60% 20%, #fdb912, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 80% 50%, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 30% 80%, #fdb912, rgba(0,0,0,0)),
        radial-gradient(2.5px 2.5px at 70% 85%, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 350px 350px;
    opacity: 0.18;
    animation: glitterTwinkle 6s ease-in-out infinite alternate;
}

@keyframes glitterTwinkle {
    0% { opacity: 0.08; transform: scale(1) translateY(0); }
    50% { opacity: 0.22; transform: scale(1.02) translateY(-5px); }
    100% { opacity: 0.12; transform: scale(0.98) translateY(5px); }
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.5) 65%, rgba(0, 0, 0, 0.98) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: editorialFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    width: 90%;
    max-width: 1100px;
}

.hero-title {
    font-size: clamp(3.8rem, 8.5vw, 7.2rem);
    font-weight: 800 !important;
    letter-spacing: var(--tracking-100) !important;
    line-height: 0.98;
    margin: 0 !important;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}

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

/* Compact Glassmorphism Countdown */
.countdown-container.compact {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.time-box.compact-time-box {
    background: #000000;
    border-radius: 24px;
    padding: 0;
    width: 105px;
    height: 110px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255,255,255,0.25), inset 0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-box.compact-time-box:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255,255,255,0.3), inset 0 0 0 1px rgba(255,255,255,0.15);
}

.time-box.compact-time-box span {
    color: #e5e5ea;
    background: linear-gradient(180deg, #ffffff 0%, #c7c7cc 45%, #d1d1d6 55%, #8e8e93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.2rem;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.05em;
    line-height: 1;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.8));
    margin-top: 18px;
}

.time-box.compact-time-box p {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    color: #ff453a;
    font-size: 1.05rem;
    text-transform: capitalize;
    letter-spacing: 0;
    margin: 0;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Editorial Pill Buttons */
.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    background-color: var(--text-primary);
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.18);
    border: 1px solid transparent;
}

.apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.28);
    background-color: #E2E8F0;
}

/* =========================================
   SECTION STRUCTURE & TYPOGRAPHY
   ========================================= */
.section {
    padding: 7rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 4rem;
}

.page-header {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.page-title,
.f-page-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* =========================================
   SECRETARY GENERAL LETTER SECTION
   ========================================= */
.letter-section {
    position: relative;
    z-index: 5;
    margin-top: -3.5rem;
}

.letter-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.letter-main-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin: 0 0 1.2rem 0;
}

.title-underline {
    width: 85px;
    height: 3px;
    background: linear-gradient(90deg, var(--legacy-crimson), var(--legacy-gold));
    margin: 0 auto;
    border-radius: 99px;
    box-shadow: 0 0 15px rgba(253, 185, 18, 0.45);
}

.letter-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.28), inset 0 0 45px rgba(253, 185, 18, 0.06), 0 0 55px rgba(166, 20, 78, 0.14) !important;
    width: 100%;
    margin: 0 auto;
    padding: 75px 60px 65px 60px;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    position: relative;
}

.letter-container::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
    opacity: 0.85;
}

.letter-content {
    width: 90%;
    margin: 30px auto 45px auto;
    font-size: 1.14rem;
    line-height: 1.85;
    color: var(--text-secondary);
    font-weight: 400;
}

.letter-content p {
    margin-bottom: 1.8rem;
}

.letter-author-zone {
    width: 100%;
    margin-top: 50px;
    padding-top: 45px;
    border-top: 1px solid var(--border-whisper);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.sg-profile-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

/* Restored & Enlarged SG Photo Frame & Signature */
.sg-photo-frame {
    display: flex;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 3px solid var(--legacy-gold);
    background: rgba(253, 185, 18, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(253, 185, 18, 0.35);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sg-photo-frame:hover {
    transform: scale(1.08);
    border-color: #ffffff;
    box-shadow: 0 0 45px rgba(253, 185, 18, 0.6), 0 0 65px rgba(166, 20, 78, 0.3);
}

.sg-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform 0.4s ease;
}

.sg-photo-frame:hover .sg-photo {
    transform: scale(1.12);
}

.sg-signature {
    width: 360px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.sg-signature:hover {
    transform: scale(1.08);
}

.sg-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sg-name {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
}

.sg-title {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--primary-accent);
    text-transform: uppercase;
    font-weight: 600;
}

/* =========================================
   SPONSORS SECTION (FULL ORIGINAL COLORS IN LUXURY FRAMER CARDS)
   ========================================= */
.SponsorInfScrollBox {
    position: relative; 
    margin-inline: auto;
    width: 100%;
    height: 200px;
    max-width: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.SponsorBox {
    background: var(--bg-glass);
    border: 1px solid var(--border-whisper);
    width: 200px;
    height: 130px;
    border-radius: var(--radius-md);
    position: absolute;
    left: calc(204px * 6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    animation: scrollleft 25s linear infinite;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.SponsorBox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollleft {
    to { left: -204px; }
}

.SponsorBox:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--bg-glass-hover);
    border-color: rgba(253, 185, 18, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(253, 185, 18, 0.2);
    z-index: 10;
}

#Sponsor1 { animation-delay: calc(25s / 6 * (6 - 1) * -1); }
#Sponsor2 { animation-delay: calc(25s / 6 * (6 - 2) * -1); }
#Sponsor3 { animation-delay: calc(25s / 6 * (6 - 3) * -1); }
#Sponsor4 { animation-delay: calc(25s / 6 * (6 - 4) * -1); }
#Sponsor5 { animation-delay: calc(25s / 6 * (6 - 5) * -1); }
#Sponsor6 { animation-delay: calc(25s / 6 * (6 - 6) * -1); }

/* =========================================
   FAQ ASSISTANCE REDIRECT BANNER
   ========================================= */
.faq-redirect-section {
    padding: 5rem 2rem;
    overflow: visible;
}

.faq-redirect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 24, 0.85) 0%, rgba(10, 10, 12, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 4.5rem 5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-whisper);
    position: relative;
    overflow: visible; /* CRITICAL for sticking out question mark */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.faq-redirect:hover {
    border-color: rgba(253, 185, 18, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(253, 185, 18, 0.15);
}

.faq-redirect-left {
    text-align: left;
    max-width: 65%;
    z-index: 10;
}

.faq-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-redirect-left p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.faq-redirect-right {
    position: static;
}

.faq-q-mark {
    font-family: var(--font-sans);
    font-size: 42rem; /* Gigantic 672px tall - hangs way below and above the box */
    font-weight: 800;
    color: rgba(253, 185, 18, 0.85);
    position: absolute;
    right: -2rem;
    top: -11rem;
    transform: rotate(15deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, color 0.5s ease;
    user-select: none;
    cursor: pointer;
    line-height: 1;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
    z-index: 5;
}

.faq-q-mark:hover {
    transform: rotate(25deg) scale(1.08);
    color: #fdb912;
    filter: drop-shadow(0 0 30px rgba(253, 185, 18, 0.9)) drop-shadow(0 0 60px rgba(253, 185, 18, 0.5));
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    background-color: transparent;
    border: 2px solid var(--text-primary);
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-btn:hover {
    background-color: var(--primary-accent);
    color: #000000;
    border-color: var(--primary-accent);
    box-shadow: 0 8px 30px rgba(253, 185, 18, 0.4);
}

/* =========================================
   COMMITTEES PAGE
   ========================================= */
.f-committees-section {
    padding: 6rem 2rem;
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.f-committees-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.f-committee-card {
    width: 290px;
    height: 400px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: var(--bg-glass);
    border: 1px solid var(--border-whisper);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    cursor: pointer;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.f-committee-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--legacy-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(253, 185, 18, 0.22), 0 0 55px rgba(166, 20, 78, 0.16);
}

.f-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-glass);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.f-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(253, 185, 18, 0.08), transparent 60%),
                linear-gradient(180deg, rgba(14, 14, 18, 0.4) 0%, rgba(6, 6, 8, 0.95) 100%);
    z-index: 2;
}

.f-committee-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
}

.f-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem;
}

.f-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.f-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--legacy-gold);
    font-weight: 700;
}

.f-name {
    font-size: 2.2rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin-top: 6px;
}

.f-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.f-agenda-title {
    font-size: 0.72rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.star {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-left: 4px;
}

.f-agenda-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
}

.f-bottom-name {
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    text-align: right;
    margin: 0;
}

/* =========================================
   CONFERENCE PAGE
   ========================================= */
.f-conference-section {
    padding: 6rem 2rem;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.f-conference-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 680px;
}

.f-conf-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2.2rem 2.8rem;
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-whisper);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-conf-btn-title {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
}

.f-conf-btn-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    font-family: var(--font-sans);
    color: var(--text-secondary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.f-conf-btn:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--legacy-gold);
    background: var(--bg-glass-hover);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(253, 185, 18, 0.22), 0 0 55px rgba(166, 20, 78, 0.16);
}

.f-conf-btn:hover .f-conf-btn-arrow {
    transform: translateX(8px);
    color: var(--legacy-gold);
}

/* =========================================
   SCHEDULE PAGE
   ========================================= */
.f-schedule-section {
    padding: 6rem 2rem;
    max-width: 960px;
    margin: 0 auto;
    min-height: calc(100vh - 120px);
}

.schedule-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.28), inset 0 0 45px rgba(253, 185, 18, 0.06), 0 0 55px rgba(166, 20, 78, 0.14) !important;
    margin-top: 3rem;
    position: relative;
}

.schedule-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-whisper);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.6rem 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.tab-btn.active {
    background: rgba(253, 185, 18, 0.08);
    color: var(--legacy-gold);
    border-bottom: 3px solid var(--legacy-gold);
}

.tab-date {
    font-size: 1.45rem;
    font-weight: 800 !important;
    font-style: italic !important;
    letter-spacing: var(--tracking-100);
}

.tab-day {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-secondary);
    font-weight: 600;
}

.schedule-content {
    display: none;
    padding: 1.5rem 2.5rem;
    animation: fadeInTab 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.schedule-content.active {
    display: block;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 1.6rem 1.2rem;
    border-bottom: 1px solid var(--border-whisper);
    opacity: 0.9;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transform: translateX(8px);
}

.schedule-item .time {
    flex: 0 0 170px;
    font-size: 1.15rem;
    color: var(--legacy-gold);
    font-weight: 800 !important;
    font-style: italic !important;
    font-family: var(--font-sans);
    letter-spacing: -0.03em;
}

.schedule-item .event {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 800 !important;
    font-style: italic !important;
    letter-spacing: -0.03em;
}

.schedule-item.highlight-break,
.schedule-item.highlight-meal {
    opacity: 0.65;
}

.schedule-item.highlight-break .event,
.schedule-item.highlight-meal .event {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600 !important;
}

.schedule-item.highlight-social {
    opacity: 1;
    background: rgba(253, 185, 18, 0.04);
    border-radius: var(--radius-sm);
}

/* =========================================
   FAQ & ASSISTANCE PAGE
   ========================================= */
.f-faq-section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    margin-bottom: 2rem;
    text-align: center;
}

.inquiry-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: var(--radius-lg);
    padding: 4.5rem 3.5rem 3.5rem 3.5rem;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.28), inset 0 0 45px rgba(253, 185, 18, 0.06), 0 0 55px rgba(166, 20, 78, 0.14) !important;
    position: relative;
}

.inquiry-container::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 26px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
    opacity: 0.85;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid var(--border-whisper);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(12, 12, 16, 0.4);
    transition: border-color 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: -0.015em;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.accordion-header.active {
    background: rgba(255, 255, 255, 0.06);
}

.accordion-header .icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(8, 8, 10, 0.5);
}

.faq-list {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

#faq-overlay {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    transform: none !important;
    border-radius: var(--radius-lg) !important;
    overflow: visible !important;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 4.5rem;
    width: 100%;
}

.contact-top-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: stretch;
    width: 100%;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    min-width: 0;
}

.contact-section .inquiry-container {
    width: 100%;
    min-width: 0;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-item h3 {
    font-size: 1.35rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 400;
}

.map-container {
    width: 100%;
    flex: 1;
    min-height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-whisper);
    display: flex;
}

.dark-map {
    filter: grayscale(100%) invert(92%) contrast(110%) brightness(90%);
}

.form-title {
    font-size: 2.4rem;
    font-weight: 800 !important;
    letter-spacing: var(--tracking-100) !important;
    margin-bottom: 2.4rem;
    color: var(--text-primary);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group input,
.form-group textarea,
.custom-select {
    width: 100%;
    padding: 1.35rem 1.6rem;
    background: rgba(14, 14, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.custom-select:focus {
    outline: none;
    border-color: var(--legacy-gold);
    background: rgba(22, 22, 30, 0.95);
    box-shadow: 0 0 0 4px rgba(253, 185, 18, 0.15);
}

.submit-btn {
    padding: 1.4rem 2.8rem;
    background: var(--text-primary);
    color: #000000;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    background: var(--legacy-gold);
    color: #000000;
    box-shadow: 0 12px 30px rgba(253, 185, 18, 0.45);
}

/* =========================================
   VENUE PAGE
   ========================================= */
.f-venue-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.venue-image-box,
.venue-map-box {
    flex: 1;
    min-width: 300px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-whisper);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    background: var(--bg-glass);
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.venue-image-box:hover .venue-img {
    transform: scale(1.04);
}

.venue-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    pointer-events: none;
}

.venue-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto;
    padding: 3.5rem 2.8rem 2.8rem 2.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.28), inset 0 0 45px rgba(253, 185, 18, 0.06), 0 0 55px rgba(166, 20, 78, 0.14) !important;
    font-weight: 400;
    position: relative;
}

.venue-description::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
    opacity: 0.85;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.transport-card {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-whisper);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.transport-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--legacy-gold);
    background: var(--bg-glass-hover);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.85), 0 0 35px rgba(253, 185, 18, 0.22), 0 0 50px rgba(166, 20, 78, 0.14);
}

.transport-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
}

.transport-title {
    font-size: 1.3rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.transport-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

/* =========================================
   TEAM PAGE
   ========================================= */
.f-team-section {
    padding: 6rem 2rem;
    max-width: 1340px;
    margin: 0 auto;
}

.team-department {
    margin-bottom: 5.5rem;
}

.dept-title {
    font-size: 2rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.team-card {
    width: 310px;
    height: 460px;
}

/* =========================================
   APPLICATIONS PAGE
   ========================================= */
.f-applications-section {
    padding: 6rem 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

.app-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.app-card {
    width: 480px;
    height: 480px;
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-whisper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--legacy-gold);
    background: var(--bg-glass-hover);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.9), 0 0 35px rgba(253, 185, 18, 0.22), 0 0 55px rgba(166, 20, 78, 0.16);
}

.app-card-img {
    height: 58%;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-whisper);
    transition: transform 0.5s ease;
}

.app-card:hover .app-card-img {
    transform: scale(1.03);
}

.app-card-text {
    height: 42%;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700 !important;
    letter-spacing: var(--tracking-100) !important;
    color: var(--text-primary);
    margin-top: 0.3rem;
}

.app-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.apply-btn-small {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.apply-btn-small:hover {
    color: #000000;
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.18);
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
    width: 100%;
    margin: 6rem auto 0 auto;
    padding: 5rem 4rem 2.5rem 4rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-whisper);
    background: var(--bg-pure);
}

.footer .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.left {
    text-align: left;
}

.footer-col.right {
    text-align: right;
}

.footer-col.center-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1.2;
}

.footer-col h4 {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    font-weight: 700 !important;
    letter-spacing: 0.15em;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-primary);
}

/* Restored Original Galatasaray & Footer Logo Colors */
.footer-logo img {
    width: 100px;
    height: auto;
    margin-bottom: 1.8rem;
    display: block;
    transition: all 0.35s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(253, 185, 18, 0.4));
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 1.05rem;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: 1px solid var(--border-whisper);
}

.social-links a:hover {
    color: #000000;
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-whisper);
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.82rem;
    font-weight: 400;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media(max-width: 900px) {
    .navbar {
        padding: 0 1.5rem;
        height: 90px;
    }
    
    .logo img {
        height: 72px;
    }
    
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        color: var(--text-primary);
        z-index: 1005;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .hamburger:hover {
        color: var(--legacy-gold);
    }
    
    .nav-right {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(6, 6, 8, 0.98);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        border-top: 1px solid var(--border-whisper);
        padding: 2rem 0;
        overflow-y: auto;
    }
    
    .nav-right.mobile-active {
        right: 0 !important;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-links li a {
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--text-primary);
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--legacy-gold);
    }
    
    .hero-section {
        min-height: 580px;
        height: calc(100vh - 98px);
    }

    .hero-3d-video {
        top: 48% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.15) !important;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
    }
    
    .letter-container {
        padding: 40px 25px;
    }
    
    .faq-redirect {
        flex-direction: column;
        padding: 3rem 1.8rem;
        text-align: center;
        gap: 1.5rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .faq-redirect-left {
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 10;
    }
    
    .faq-q-mark {
        font-size: clamp(13rem, 45vw, 20rem) !important;
        right: -1rem !important;
        top: auto !important;
        bottom: -3.5rem !important;
        opacity: 0.75 !important;
        color: rgba(253, 185, 18, 0.7) !important;
        transform: rotate(18deg) !important;
        pointer-events: auto !important;
        z-index: 2 !important;
        animation: float-q-mark 4s ease-in-out infinite alternate !important;
    }

    .faq-q-mark:hover,
    .faq-q-mark:active {
        transform: rotate(26deg) scale(1.08) !important;
        color: #fdb912 !important;
        opacity: 0.95 !important;
        filter: drop-shadow(0 0 25px rgba(253, 185, 18, 0.85)) drop-shadow(0 0 50px rgba(253, 185, 18, 0.4)) !important;
    }
    
    .f-faq-section {
        padding: 3rem 1rem !important;
    }

    .contact-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.8rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .contact-top-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .contact-info-text {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 10px !important;
        min-width: 0 !important;
    }

    .info-item {
        margin: 0 !important;
    }

    .info-item h3 {
        font-size: clamp(0.95rem, 3.2vw, 1.2rem) !important;
        margin-bottom: 4px !important;
        letter-spacing: 0.02em !important;
        font-weight: 700 !important;
        color: var(--text-primary) !important;
    }

    .info-item p {
        font-size: clamp(0.8rem, 2.7vw, 0.95rem) !important;
        line-height: 1.45 !important;
        color: var(--text-secondary) !important;
    }

    .map-container {
        min-height: 140px !important;
        height: 100% !important;
        max-height: 180px !important;
        border-radius: 12px !important;
        flex: 1 !important;
    }

    .inquiry-container {
        width: 100% !important;
        padding: 2.8rem 1.4rem 1.6rem 1.4rem !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
    }

    .inquiry-container::before {
        top: 12px !important;
        left: 14px !important;
        width: 8px !important;
        height: 8px !important;
        box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #27c93f !important;
    }

    .form-title {
        font-size: clamp(1.4rem, 4.8vw, 1.8rem) !important;
        margin-bottom: 1.2rem !important;
        text-align: center !important;
    }

    .form-row-2col {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .inquiry-form {
        gap: 1rem !important;
    }

    .form-group input,
    .form-group textarea,
    .custom-select {
        padding: 0.9rem 1.1rem !important;
        font-size: 0.92rem !important;
        border-radius: 10px !important;
    }

    .form-group textarea {
        min-height: 80px !important;
        height: 90px !important;
    }

    .submit-btn {
        padding: 1rem 2rem !important;
        font-size: 0.95rem !important;
        border-radius: var(--radius-pill) !important;
        margin-top: 0.4rem !important;
    }
    
    .faq-list {
        margin-top: 2rem;
    }
    
    .venue-showcase {
        flex-direction: column;
    }
    
    .app-card {
        width: 100%;
        max-width: 440px;
        height: auto;
        min-height: 460px;
    }
    
    .team-card {
        width: 100%;
        max-width: 340px;
    }

    .f-committees-section {
        padding: 3rem 0.6rem !important;
        max-width: 100% !important;
    }

    .f-committees-container {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .f-committee-card {
        width: calc((100% - 16px) / 3) !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 250px !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
    }

    .f-committee-card::before {
        top: 6px !important;
        left: 6px !important;
        right: 6px !important;
        bottom: 6px !important;
        border-radius: 10px !important;
    }

    .f-card-content {
        padding: 0.8rem 0.6rem !important;
        justify-content: space-between !important;
    }

    .f-cat {
        font-size: 0.62rem !important;
        letter-spacing: 0.08em !important;
    }

    .f-name {
        font-size: clamp(0.85rem, 3.2vw, 1.2rem) !important;
        line-height: 1.15 !important;
        margin-top: 3px !important;
        word-break: break-word !important;
    }

    .f-card-bottom {
        gap: 0.4rem !important;
    }

    .f-agenda-title {
        font-size: 0.58rem !important;
        letter-spacing: 0.06em !important;
    }

    .f-agenda-text {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        margin-top: 0.15rem !important;
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .f-bottom-name {
        font-size: clamp(0.68rem, 2.2vw, 0.82rem) !important;
    }
    
    .footer {
        padding: 3.5rem 1.2rem 2rem 1.2rem;
    }
    
    .footer .row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 2rem 0.8rem !important;
    }
    
    .footer-col.center-col {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        order: -1 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1.2rem !important;
    }

    .footer-logo img {
        width: 90px !important;
        margin: 0 auto !important;
    }

    .social-links {
        display: flex !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        margin-top: 1rem !important;
    }
    
    .footer-col.left {
        flex: 0 0 calc(50% - 0.4rem) !important;
        width: calc(50% - 0.4rem) !important;
        max-width: calc(50% - 0.4rem) !important;
        min-width: 0 !important;
        text-align: center !important;
        order: 1 !important;
    }
    
    .footer-col.right {
        flex: 0 0 calc(50% - 0.4rem) !important;
        width: calc(50% - 0.4rem) !important;
        max-width: calc(50% - 0.4rem) !important;
        min-width: 0 !important;
        text-align: center !important;
        order: 2 !important;
    }

    .footer-col h4 {
        margin-bottom: 1.1rem !important;
        font-size: 0.92rem !important;
    }

    .footer-col ul li:not(:last-child) {
        margin-bottom: 0.65rem !important;
    }

    .footer-col ul li a {
        font-size: 0.86rem !important;
    }
}

@media(max-width: 600px) {
    .navbar {
        padding: 0 1rem;
        height: 90px;
    }
    
    .logo img {
        height: 72px;
    }
    
    .nav-right {
        top: 90px;
        height: calc(100vh - 90px);
    }
    
    .hero-section {
        height: calc(100vh - 90px);
        min-height: 520px;
        padding: 0 15px;
    }

    .hero-3d-video {
        top: 45% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(2.05) !important;
    }
    
    .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
        margin-bottom: 1.2rem;
    }

    .countdown-container.compact {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto 1.5rem auto !important;
        padding: 0 4px !important;
        box-sizing: border-box !important;
    }
    
    .time-box.compact-time-box {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 80px !important;
        height: 88px !important;
        border-radius: 16px !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
    }
    
    .time-box.compact-time-box p {
        position: absolute !important;
        top: 10px !important;
        left: 0 !important;
        width: 100% !important;
        color: #ff453a !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        margin: 0 !important;
        letter-spacing: 0.02em !important;
        text-align: center !important;
    }

    .time-box.compact-time-box span {
        font-size: clamp(2rem, 6.5vw, 2.5rem) !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        margin-top: 18px !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.9)) !important;
    }
    
    .letter-container {
        padding: 35px 20px 25px 20px !important;
        border-radius: 18px !important;
    }

    .letter-content {
        width: 100% !important;
        margin: 18px auto 25px auto !important;
        font-size: clamp(0.85rem, 2.7vw, 0.96rem) !important;
        line-height: 1.65 !important;
    }

    .letter-content p {
        margin-bottom: 1.1rem !important;
    }

    .letter-author-zone {
        margin-top: 30px !important;
        padding-top: 25px !important;
        gap: 2rem !important;
    }

    .page-title,
    .f-page-title {
        font-size: 2.3rem;
    }
    
    .app-card {
        max-width: 100%;
    }
}

.sponsors-section {
    position: relative;
    overflow: visible;
}

.sponsors-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.28), inset 0 0 45px rgba(253, 185, 18, 0.06), 0 0 55px rgba(166, 20, 78, 0.14);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-sizing: border-box;
    overflow: visible;
}

.sponsors-text-frame {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 45px;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 90%;
    box-sizing: border-box;
}

.apple-notification-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF4B4B 0%, #DF0000 100%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 24px rgba(223, 0, 0, 0.6), inset 0 3px 6px rgba(255, 255, 255, 0.5);
    transform: rotate(14deg);
    z-index: 50;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.apple-notification-badge:hover {
    transform: rotate(0deg) scale(1.15);
    box-shadow: 0 14px 30px rgba(223, 0, 0, 0.8), inset 0 4px 8px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #FF6B6B 0%, #FF0000 100%);
}

.sponsors-overlay::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27c93f;
    opacity: 0.85;
}

.typing-container-sponsors {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    letter-spacing: -0.05em;
    color: #ffffff;
    border-right: 0.05em solid rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    line-height: 1.1;
    padding-right: 5px;
    animation: blink-caret-sponsors .8s step-end infinite;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    min-height: 1em;
}

@media (max-width: 768px) {
    .sponsors-overlay {
        padding: 1.5rem 1rem;
        width: 90% !important;
        height: 90% !important;
        border-radius: 18px;
        overflow: visible !important;
    }
    
    .sponsors-text-frame {
        padding: 1rem 1.4rem;
        max-width: 92%;
        border-radius: 12px;
    }
    
    .typing-container-sponsors {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        letter-spacing: -0.02em;
    }
    
    .apple-notification-badge {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        top: -12px !important;
        right: -12px !important;
        border-width: 2px !important;
        z-index: 50 !important;
    }
    
    .sponsors-overlay::before {
        top: 12px;
        left: 14px;
        width: 7px;
        height: 7px;
        box-shadow: 12px 0 0 #ffbd2e, 24px 0 0 #27c93f;
    }

    .faq-redirect-section {
        padding: 3rem 1rem;
    }
}

@keyframes float-q-mark {
    0% {
        transform: rotate(16deg) translateY(0px);
    }
    100% {
        transform: rotate(23deg) translateY(-8px) scale(1.04);
    }
}

@keyframes blink-caret-sponsors {
    from, to { border-color: transparent }
    50% { border-color: rgba(255, 255, 255, 0.9); }
}

/* =========================================================
   COMMITTEE SUBPAGE STYLES
   ========================================================= */

.committee-subpage-main {
    background-color: var(--bg-pure);
    min-height: 100vh;
    padding-bottom: 60px;
}

.committee-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.committee-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, var(--bg-pure) 0%, rgba(6, 6, 8, 0) 100%);
    z-index: 1;
}

.committee-title {
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.5);
    margin-top: 30px; /* Reduced gap */
    opacity: 0;
    animation: fadeUpAnim 0.8s ease-out forwards;
}

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

.committee-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: -100px auto 0; /* Pull content up over the fade */
    padding: 0 20px;
    opacity: 0;
    animation: fadeUpAnim 0.8s ease-out 0.3s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Agenda Mac Window */
.agenda-mac-window {
    width: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-whisper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mac-window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-whisper);
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.mac-btn.close { background: #ff5f56; }
.mac-btn.min { background: #ffbd2e; }
.mac-btn.max { background: #27c93f; }

.agenda-content {
    padding: 40px;
    text-align: left;
}

.agenda-label {
    display: inline-block;
    color: var(--legacy-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-left: 2px solid var(--legacy-gold);
    padding-left: 10px;
}

.agenda-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.agenda-item-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-whisper);
}

.agenda-topic {
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 600;
    margin-top: 10px;
}

/* Chairs Section */
.chairs-section {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.chairs-title {
    color: var(--legacy-gold);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(253, 185, 18, 0.3);
}

.chairs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.chair-card {
    background: rgba(14, 14, 18, 0.6);
    border: 1px solid var(--legacy-gold);
    border-radius: 40px; /* Pill shape */
    padding: 20px 40px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(253, 185, 18, 0.15);
}

.chair-role {
    color: var(--legacy-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.chair-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Action Buttons (macOS Glass Style) */
.committee-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-glow {
    background: rgba(255, 255, 255, 0.85);
    color: #000000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-glow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-outline {
    background: var(--bg-glass);
    color: #ffffff;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.05rem;
    border: 1px solid var(--border-whisper);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Other Committees Nav */
.other-committees-nav {
    margin-top: 60px;
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--border-whisper);
    padding-top: 40px;
}

.other-committees-title {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.other-committees-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.other-committee-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-whisper);
    border-radius: var(--radius-sm);
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.other-committee-btn:hover {
    background: rgba(253, 185, 18, 0.1);
    border-color: var(--legacy-gold);
    color: var(--legacy-gold);
}
