/* style.css - Refined Premium Theme */
:root {
    /* Rich Refined Palette */
    --bg-dark: #070707;       /* Deep cinematic charcoal */
    --bg-light: #FBF9F6;      /* Subdued off-white/cream */
    --accent-rich: #C94C1F;   /* Burnt Umber / Premium Terracotta */
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-light: rgba(255, 255, 255, 0.15);
    
    /* Elegant Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Headings */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; }
.text-center { text-align: center; }

/* Utility Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
}

/* Premium Header styling - Adaptive Transparent Inversion */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: transparent !important; /* Forces total transparency */
    transition: padding 0.4s ease;
    
    /* The magic property that inverts colors based on background */
    mix-blend-mode: difference; 
    
    /* Prevents the invisible header box from blocking clicks on the page */
    pointer-events: none; 
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
    pointer-events: auto; /* Re-enables clicks for the actual menu items */
}

/* Ensure text is pure white (#FFFFFF) for the blend math to work perfectly */
.logo a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    font-weight: 600;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.main-nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-text { 
    color: #FFFFFF; 
    text-decoration: none; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

/* The button will also invert beautifully! */
.btn-primary { 
    background-color: #FFFFFF; 
    color: #000000; /* Pure black text */
    padding: 0.8rem 1.8rem; 
    text-decoration: none; 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-primary:hover { 
    background-color: transparent; 
    color: #FFFFFF; 
    border: 1px solid #FFFFFF;
}

/* Update Sticky state to just shrink padding instead of adding background */
.site-header.sticky { 
    padding: 0.8rem 0; 
    background: transparent; 
}

/* --- Sections --- */
section { padding: 8rem 0; min-height: 80vh; display: flex; flex-direction: column; justify-content: center; }

/* 1. Hero Section */
.hero-section {
    height: 100vh;
    background-color: var(--bg-dark); /* Fallback color */
    position: relative;
    overflow: hidden;
}

/* Bulletproof Background Image */
.hero-bg-blur {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    
    /* Separated properties for maximum browser compatibility */
    background-image: url('debateheader.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    z-index: 1; /* Forces the image to sit ABOVE the solid background color */
    opacity: 0.8; /* Bright base opacity */
    filter: blur(0px); /* Removed the blur to ensure crisp visibility */
}

/* Much lighter overlay */
.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    /* Soft gradient: 75% dark on the far left for text readability, fading to almost completely clear on the right */
    background: linear-gradient(to right, rgba(7, 7, 7, 0.75) 0%, rgba(7, 7, 7, 0.1) 80%);
    z-index: 2; /* Forces the overlay to sit directly on top of the image */
}

.hero-content {
    position: relative;
    z-index: 10; /* Forces the text and buttons to sit above the overlay */
    padding-top: 100px;
    text-align: left; 
}

/* Reduced font size for H1 */
.hero-content h1 { 
    font-size: clamp(2.5rem, 5vw, 5.5rem); 
    line-height: 1.1; 
    color: var(--text-light); 
    margin-bottom: 2rem; 
    margin-top: 1rem; 
}

.hero-content h1 span.accent-bold { color: var(--accent-rich); font-style: italic; }

.tagline { font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-rich); }

/* Adjusted subtext for left alignment */
.hero-subtext { 
    font-size: 1.1rem; 
    color: var(--text-muted); 
    max-width: 600px; 
    margin: 0 0 3rem 0; 
}

/* Smaller, left-aligned button */
.btn-accent {
    background-color: var(--accent-rich);
    color: var(--text-light);
    padding: 0.75rem 1.75rem; /* Reduced padding */
    text-decoration: none;
    font-size: 0.85rem; /* Reduced font size */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.4s ease;
}

.btn-accent:hover { background-color: var(--text-light); color: var(--bg-dark); }

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%; /* Moves the start of the element to the center */
    transform: translateX(-50%); /* Pulls it back by half its width to perfectly center it */
    text-align: center; /* Centers the text */
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    z-index: 10;
}

.arrow-down { 
    width: 1px; 
    height: 50px; 
    background: rgba(255, 255, 255, 0.4); 
    margin: 15px auto 0; /* Centers the vertical line under the text */
    position: relative; 
}

.arrow-down::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: -3px; 
    border: solid transparent; 
    border-width: 0 4px 6px 4px; 
    border-bottom-color: rgba(255, 255, 255, 0.4); 
    transform: rotate(180deg); 
}

/* 2. Stats Section */
.stats-section {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 0; /* Reduced from 6rem */
    min-height: auto; /* Overrides the global 80vh minimum height */
}

.stats-container { display: flex; justify-content: space-around; gap: 2rem; }
.stat-item { text-align: center; max-width: 250px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); height: 50px; width: 1px; background: rgba(201, 76, 31, 0.15); }

.stat-number { font-family: var(--font-heading); font-size: clamp(3rem, 5vw, 4.5rem); color: var(--accent-rich); line-height: 1; margin-bottom: 0.5rem; display: block; }
.stat-label { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 2px; }

/* 3. About Section (Scaling Culture) */
.about-section { 
    background-color: var(--bg-light); 
    padding: 4rem 0 10rem 0; /* Reduced top padding from 10rem to 4rem, kept bottom padding at 10rem */
}
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }

.section-tagline { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-rich); margin-bottom: 1rem; }
.about-text-content h2 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1.2; margin-bottom: 3rem; }
.vision-subtext { font-size: 1.15rem; color: #444; margin-bottom: 1.5rem; max-width: 600px; }

.link-reveal {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    padding-bottom: 6px;
    display: inline-block;
}
.link-reveal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: currentColor;
    transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.link-reveal:hover::after { width: 100%; }

.about-image-content { position: relative; }
.about-image { width: 100%; height: auto; border-radius: 4px; }

.date-badge {
    position: absolute;
    bottom: -2rem;
    left: 4rem;
    background-color: var(--accent-rich);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 40px rgba(201, 76, 31, 0.15);
}
.badge-tag, .badge-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.badge-date { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1.1; margin: 3px 0; }

/* 4. Features Section (Everything You Need) */
.features-section { background-color: var(--bg-light); padding: 10rem 0; border-top: 1px solid rgba(0, 0, 0, 0.05); }
.features-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem 8rem; }

.features-header h2 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1.2; }
.header-divider { width: 100px; height: 1px; background: rgba(0, 0, 0, 0.1); margin-top: 2rem; }
.features-intro { align-self: end; }
.intro-subtext { font-size: 1.15rem; color: #444; max-width: 500px; }

/* Feature List (Program List) - Interactive Redesign */
.program-list {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.program-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.program-num { font-size: 1.1rem; color: rgba(0, 0, 0, 0.2); margin-right: 3rem; font-weight: 300; }
.program-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s ease;
    flex: 1;
}

.program-desc {
    max-width: 400px;
    font-size: 0.95rem;
    color: #666;
    text-align: right;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.program-item:hover { border-bottom-color: var(--accent-rich); }
.program-item:hover .program-title { color: var(--accent-rich); transform: translateX(20px); }
.program-item:hover .program-num { color: rgba(0, 0, 0, 0.6); }
.program-item:hover .program-desc { opacity: 1; transform: translateX(0); }

.features-cta { grid-column: 1 / -1; text-align: center; margin-top: 6rem; }
.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease;
}
.btn-dark:hover { background-color: var(--accent-rich); }

/* 5. CTA Section (Join Arena) */
.cta-section {
    min-height: 60vh;
    background-color: var(--accent-rich);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    padding: 10rem 0;
}

.arena-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%), radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
    filter: blur(100px);
}

.cta-container { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; }
.cta-heading { font-size: clamp(3rem, 6vw, 6rem); line-height: 1.1; margin-bottom: 2rem; color: var(--text-light); }
.cta-subheading { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 4rem; line-height: 1.5; }

.cta-actions { display: flex; gap: 2rem; justify-content: center; }
.btn-white {
    background-color: var(--text-light);
    color: var(--accent-rich);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s ease;
}
.btn-white:hover { background-color: var(--bg-dark); color: var(--text-light); }

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}
.btn-outline:hover { background-color: var(--text-light); color: var(--accent-rich); border-color: var(--text-light); }

/* --- ABOUT PAGE STYLES --- */

/* Utility Classes */
.bg-light { background-color: var(--bg-light); color: var(--text-dark); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.text-light { color: var(--text-light) !important; }
.mt-2 { margin-top: 2rem; } .mt-4 { margin-top: 4rem; } .mb-4 { margin-bottom: 4rem; } .mb-5 { margin-bottom: 6rem; }

/* About Hero */
.about-hero {
    height: 80vh; /* Slightly shorter than homepage hero */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-bg {
    position: absolute;
    top: -10%; left: 0; width: 100%; height: 120%; /* Extra height for parallax travel */
    background: url('aboutcover.jpg') no-repeat center center/cover;
    z-index: 1;
}
.hero-overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(7, 7, 7, 0.6);
    z-index: 2;
}
.about-hero-content {
    position: relative;
    z-index: 10;
    margin-top: 50px;
}
.about-hero-content h1 { font-size: clamp(3rem, 6vw, 6rem); color: var(--text-light); margin-top: 1rem; }

/* Story Section */
.story-section { padding: 12rem 0; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}
.story-sticky-col {
    position: sticky;
    top: 150px; /* Sticks to the screen as you scroll past */
}
.story-sticky-col h2 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-top: 1rem; }
.lead-text { font-size: 1.5rem; font-family: var(--font-heading); color: var(--accent-rich); line-height: 1.4; }
.story-text-col p { font-size: 1.1rem; color: #444; }

.story-image-wrapper { overflow: hidden; border-radius: 4px; }
.story-img { width: 100%; height: auto; display: block; transform: scale(1.1); }

/* Pillars Interactive Section */
.pillars-section {
    background-color: var(--bg-dark);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}
.pillars-list { position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.1); }

.pillar-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s ease;
    mix-blend-mode: difference; /* Ensures text is visible over the hover image */
}

.pillar-content { display: flex; align-items: center; gap: 3rem; }
.pillar-num { font-size: 1.2rem; color: var(--accent-rich); font-family: var(--font-heading); }
.pillar-title { font-size: clamp(2rem, 4vw, 4rem); color: var(--text-light); transition: transform 0.5s ease; }
.pillar-desc { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 400px; transition: color 0.4s ease; }

/* Interactive States */
.pillar-item:hover .pillar-title { transform: translateX(20px); color: #fff; }
.pillar-item:hover .pillar-desc { color: #fff; }

/* The dynamic background image container */
.pillar-hover-image-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-image 0.4s ease;
}
.pillars-section:hover .pillar-hover-image-container { opacity: 0.4; } /* Shows image dimly when section is hovered */

/* --- KEY MILESTONES SECTION --- */
.key-milestones {
    background-color: var(--bg-dark); 
    padding: 4rem 0 10rem 0; /* 4rem top, 0 right, 10rem bottom, 0 left */
    color: var(--text-light);
}

.milestones-container { position: relative; max-width: 1400px; }

/* Large Premium Serif Headings */
.milestones-heading-wrapper h2 { 
    font-size: clamp(3rem, 6vw, 6rem); 
    line-height: 1.1; 
    margin-top: 3.5rem; /* Increased from 1rem to 3.5rem */
}

/* Timeline Wrapper (Simple linear column stack) */
.milestones-timeline-wrapper {
    position: relative;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 12rem; /* Substantial spacing between cards for modern deep look */
}

/* General Milestone Item Structure */
.milestone-item {
    display: grid;
    grid-template-columns: 1fr 1px 1.2fr; /* Col 1: Text, Col 2: Dot/Connector, Col 3: Image */
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Central Timeline Line (Purely Illustrative) */
.timeline-central-line {
    position: absolute;
    top: 0; left: 50%; width: 1px; height: 100%;
    background: rgba(255,255,255,0.08);
    transform: translateX(-50%);
    z-index: 1;
}

/* Staggered Event Styling (Adopted from reference but adapted for dark theme) */
.milestone-item.milestone-left { grid-template-columns: 1.2fr 1px 1fr; }
.milestone-item.milestone-right { grid-template-columns: 1fr 1px 1.2fr; }

/* Timeline Visual Elements */
.timeline-dot {
    grid-column: 2 / 3; /* Always centered */
    width: 12px; height: 12px;
    background: var(--accent-rich); /* Use Terracotta-red */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    position: absolute; top: 50%; left: 50%;
    z-index: 5;
    box-shadow: 0 0 15px rgba(201, 76, 31, 0.2);
}

.timeline-connector {
    position: absolute; top: 50%; height: 1px;
    background: rgba(201, 76, 31, 0.2);
    z-index: 2;
}
.milestone-left .timeline-connector { left: calc(50% + 6px); width: calc(50% - 100px); }
.milestone-right .timeline-connector { right: calc(50% + 6px); width: calc(50% - 100px); }

/* Milestone Card Structure */
.milestone-card {
    background-color: transparent;
    border-radius: 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 0 rgba(201, 76, 31, 0);
    overflow: hidden;
}

/* Interactive States: Lift and Highlight */
.milestone-card:hover {
    background-color: rgba(255,255,255,0.02);
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(201, 76, 31, 0.05);
}

.card-details {
    padding: 3rem 0 3rem 3rem; /* Leave room for image/layout adjustments */
}
.milestone-left .card-details { padding-right: 3rem; }
.milestone-right .card-details { padding-left: 3rem; }

/* Text Details: Match reference precisely */
.event-year {
    font-size: 0.9rem; color: var(--accent-rich); 
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 0.8rem; display: inline-block;
}
.event-title { 
    font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text-light); 
    margin-bottom: 2rem; 
}
.event-desc { 
    font-size: 1.05rem; color: var(--text-muted); 
    line-height: 1.6; max-width: 500px; 
}

/* Illustrative Image: Added for artistic, premium feel */
.event-image-wrapper {
    overflow: hidden; border-radius: 0 0 4px 4px; /* Pairs with transparent card details top */
}
.milestone-image { 
    width: 100%; height: auto; display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.milestone-card:hover .milestone-image { transform: scale(1.03); } /* Smooth zoom on hover */

/* Placement based on staggered flow */
.milestone-left .milestone-card { grid-column: 1 / 2; grid-row: 1 / 2; }
.milestone-right .milestone-card { grid-column: 3 / 4; grid-row: 1 / 2; }

.milestone-left .event-image-wrapper { grid-column: 3 / 4; }
.milestone-right .event-image-wrapper { grid-column: 1 / 2; }


/* --- Sequential Fade-and-Slide Animations (Cinematic entry on page load) --- */
@keyframes fadeInUpMilestone {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Apply staggered delays using predefined classes in HTML */
.reveal-sequence-item-0 { animation: fadeInUpMilestone 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; animation-delay: 0.2s; }
.reveal-sequence-item-1 { animation: fadeInUpMilestone 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; animation-delay: 0.5s; }
.reveal-sequence-item-2 { animation: fadeInUpMilestone 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; animation-delay: 0.8s; }
.reveal-sequence-item-3 { animation: fadeInUpMilestone 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; animation-delay: 1.1s; }
.reveal-sequence-item-4 { animation: fadeInUpMilestone 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; animation-delay: 1.4s; }

/* Ensure items are hidden until animation starts */
.milestone-item { opacity: 0; }

/* --- TEAM PAGE STYLES --- */
.team-hero {
    background-color: var(--bg-dark);
    padding-top: 12rem;
    padding-bottom: 4rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 4rem;
}

.team-header-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.team-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.team-roster {
    background-color: var(--bg-dark);
    padding-top: 4rem;
    padding-bottom: 10rem;
}

/* 4-Column Grid similar to the reference image */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Individual Team Card Setup */
.team-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s ease;
}

/* The Magic Class: Reverses the order of image and text for staggered feel */
.team-card.reverse {
    flex-direction: column-reverse;
}

/* Image Wrapper */
.card-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4; /* Ensures all portraits match in proportion */
    overflow: hidden;
    border-radius: 8px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Slight cinematic desaturation */
    transition: filter 0.5s ease, transform 0.6s ease;
}

/* Elevated Text Block */
.card-text-wrapper {
    background: rgba(255, 255, 255, 0.03); /* Subtle glassmorphism box */
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 180px; /* Keeps boxes relatively uniform */
}

.team-role {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.team-name {
    font-family: var(--font-body); /* Modern sans-serif like the image */
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Hover Interactions */
.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.team-card:hover .card-text-wrapper {
    border-color: rgba(201, 76, 31, 0.3); /* Subtle terracotta highlight */
}
.team-card:hover .team-role {
    color: var(--accent-rich);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    /* On 3 columns, we reset reverse to maintain visual balance */
    .team-card:nth-child(even) { flex-direction: column-reverse; }
    .team-card:nth-child(odd) { flex-direction: column; }
}

@media (max-width: 800px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    /* On 2 columns, reset staggered flow */
    .team-card { flex-direction: column !important; }
}

@media (max-width: 500px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* --- PARTNERS PAGE STYLES --- */
.partners-hero {
    background-color: var(--bg-dark);
    padding-top: 12rem;
    padding-bottom: 2rem;
}

.partners-hero h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 1.5rem; }

.partners-roster {
    background-color: var(--bg-dark);
    padding-top: 2rem;
    padding-bottom: 8rem;
}

/* 4-Column Grid for Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Premium Glassmorphism Card (Adjusted for 4 columns) */
.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 76, 31, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Logo Placeholder Circle */
.partner-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 76, 31, 0.1);
    color: var(--accent-rich);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 76, 31, 0.3);
}

/* Reduced font size slightly so long names don't break unexpectedly */
.partner-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1.2rem;
    line-height: 1.6;
}

/* Badges */
.partner-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.badge-strategic { background: rgba(201, 76, 31, 0.15); color: #E87A5D; }
.badge-media { background: rgba(220, 160, 50, 0.15); color: #E0B252; }
.badge-academic { background: rgba(80, 160, 140, 0.15); color: #6DB3A2; }

/* Partnership Types Section */
.partnership-types {
    background-color: #0A0A0A; /* Slightly darker than base bg for contrast */
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partnership-types h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.type-card { padding: 2rem; }
.type-desc { color: var(--text-muted); font-size: 1.05rem; }

/* CTA Banner (Overrides default dark for a punchy solid block) */
.cta-banner {
    background-color: var(--accent-rich);
    padding: 8rem 0;
    color: var(--text-light);
}

.cta-banner h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.cta-subtext {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Responsive Grid Adjustments for Partners */
@media (max-width: 1200px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
    .partners-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: 1fr; gap: 4rem; }
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 76, 31, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- PUBLIC RESOURCES PAGE --- */

/* Hero Section */
.library-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}
.library-hero-bg {
    position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
    /* A library/books background image */
    background: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
    z-index: 1; 
    opacity: 0.3;
}
.locked-section {
    background-color: var(--bg-dark);
    padding: 4rem 0 10rem 0;
    position: relative;
}

/* --- THE LOCK SCREEN OVERLAY --- */
.lock-screen-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
    display: flex;
    align-items: flex-start; /* Aligns box towards the top */
    justify-content: center;
    padding-top: 10rem;
}

.lock-cta-box {
    background: rgba(10, 10, 10, 0.85); /* Dark transparent box */
    backdrop-filter: blur(15px); /* Extra glassmorphism blur */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border-top: 2px solid var(--accent-rich); /* Terracotta highlight */
}

.lock-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.8; }
.lock-cta-box h2 { font-family: var(--font-heading); color: var(--text-light); font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.2; }
.lock-cta-box p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }


/* --- THE BLURRED MOCK CONTENT --- */
.blurred-content {
    /* This is the magic line that makes everything underneath unreadable */
    filter: blur(12px) grayscale(40%); 
    opacity: 0.4;
    pointer-events: none; /* Stops users from clicking the blurred buttons */
    user-select: none;
}

/* Mock Toolbar */
.mock-controls { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
.mock-dropdowns { display: flex; gap: 1rem; }
.mock-select { background: rgba(255,255,255,0.05); padding: 0.5rem 1rem; border-radius: 4px; color: var(--text-muted); font-size: 0.9rem;}

/* Mock Grid Cards */
.mock-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.mock-card { background: rgba(255,255,255,0.02); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); padding: 2rem; }
.mock-doc-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.5; }
.mock-text-line { height: 12px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 0.8rem; width: 100%; }
.mock-text-line.title-line { height: 20px; width: 70%; margin-bottom: 1.5rem; background: rgba(255,255,255,0.2); }
.mock-text-line.short-line { width: 40%; }

/* Mock Red & Green Programs */
.mock-programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem;}
.mock-program-card { background: rgba(255,255,255,0.02); padding: 3rem; border-radius: 4px; position: relative; overflow: hidden;}
.mock-program-card::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 8px; }

/* The specific accent colors requested */
.red-accent::before { background-color: #A32A2A; } /* Dark Red */
.green-accent::before { background-color: #2A5A4A; } /* Dark Green */
.red-bg { background-color: rgba(163, 42, 42, 0.4); }
.green-bg { background-color: rgba(42, 90, 74, 0.4); }

.mock-icon { width: 60px; height: 60px; border-radius: 8px; margin-bottom: 1.5rem; }
.mock-program-card h3 { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 1.5rem; }
.mock-list { list-style: none; margin-bottom: 2rem; }
.mock-list li { height: 12px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 0.8rem; width: 80%; }
.mock-list li:nth-child(2) { width: 60%; }
.mock-list li:nth-child(3) { width: 70%; }
.mock-btn { height: 45px; width: 100%; border-radius: 4px; }

/* Mock Tabs */
.mock-tabs-section { margin-top: 6rem; padding-top: 4rem; border-top: 1px solid rgba(255,255,255,0.05); }
.mock-tabs { display: flex; background: rgba(255,255,255,0.05); width: fit-content; border-radius: 4px; padding: 0.2rem; }
.mock-tab { padding: 0.8rem 2rem; color: var(--text-muted); font-size: 0.9rem; }
.mock-tab.active { background: rgba(255,255,255,0.1); color: #fff; border-radius: 4px; }
.mock-course-icon { font-size: 4rem; opacity: 0.5; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .mock-programs-grid { grid-template-columns: 1fr; }
    .lock-cta-box { margin: 0 1rem; padding: 3rem 2rem; }
}

/* --- EVENTS PAGE STYLES --- */

/* Hero Section */
.events-hero {
    height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}
.events-hero-bg {
    position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
    background: url('https://images.unsplash.com/photo-1515162816999-a0c47dc192f7?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
    z-index: 1; 
    opacity: 0.5; /* Very subtle background texture */
}

/* Filter Bar - TIGHTENED PADDING */
.filter-section {
    background-color: var(--bg-dark);
    /* Top: 1.5rem, Left/Right: 0, Bottom: 0.5rem */
    padding: 1.5rem 0 0.5rem 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.filter-icon {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}
.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-btn:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-light);
}
.filter-btn.active {
    background: var(--accent-rich);
    border-color: var(--accent-rich);
    color: var(--text-light);
}

/* Empty State / Coming Soon - TIGHTENED PADDING */
.upcoming-events {
    /* Force the deep charcoal background, overriding any old template styles */
    background-color: #070707 !important; 
    padding-top: 1rem;    
    padding-bottom: 3rem; 
}
.empty-state-box {
    background: rgba(255, 255, 255, 0.02) !important; /* Very subtle transparent dark box */
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.empty-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(201, 76, 31, 0.1);
    color: var(--accent-rich);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.empty-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.empty-desc {
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
}
.ml-3 { margin-left: 1rem; } 

/* Past Events Section - TIGHTENED PADDING */
.past-events-section {
    background-color: #0A0A0A; 
    padding: 4rem 0 6rem 0; /* Reduced top gap specifically to pull it closer to the box above */
    border-top: 1px solid rgba(255,255,255,0.05);
}
.past-events-grid {
    max-width: 900px;
    margin: 0 auto;
}
.past-event-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row; 
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.past-event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 76, 31, 0.3);
}

.event-image {
    width: 40%;
    position: relative;
}
.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}
.event-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(220, 160, 50, 0.15); 
    color: #E0B252;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(220, 160, 50, 0.3);
    backdrop-filter: blur(4px);
}

.event-details {
    padding: 3rem;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.event-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Event Metadata */
.event-meta {
    display: flex;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.meta-item svg {
    color: var(--accent-rich);
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .past-event-card { flex-direction: column; }
    .event-image { width: 100%; height: 250px; }
    .event-details { width: 100%; padding: 2rem; }
    .event-meta { flex-direction: column; gap: 1rem; }
}

/* --- CONTACT PAGE STYLES --- */

/* Hero Section */
.contact-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
}
.contact-hero-bg {
    position: absolute; top: -10%; left: 0; width: 100%; height: 120%;
    /* Subtle background texture: unreadable logic symbols or blurred gavel */
    background: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
    z-index: 1; 
    opacity: 0.3; /* Subtle transparency */
    filter: blur(4px) grayscale(40%); /* Blur and grayscale for premium feel */
}

/* Update Contact page hero heading to terracotta */
.contact-hero .reveal-text {
    color: var(--accent-rich) !important;
}

/* Connect Section */
.connect-section {
    background-color: var(--bg-dark);
    padding: 10rem 0 5rem 0; /* Massively reduced padding where it meets direct-email section */
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Details and Quick Enquiry Styling */
.connect-details {
    display: flex;
    flex-direction: column;
    color: var(--text-light);
}

.channel-list {
    margin-top: 3rem;
}

.quick-enquiries {
    margin-top: 5rem;
}

.quick-link {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.quick-link svg {
    color: rgba(255, 255, 255, 0); /* Subtle arrow hidden initially */
    transition: color 0.3s ease, transform 0.3s ease;
}

.quick-link:hover {
    color: var(--accent-rich);
    transform: translateX(5px); /* Smooth movement on hover */
}

.quick-link:hover svg {
    color: var(--accent-rich); /* Subtle arrow revealed on hover */
    transform: translate(3px, -3px);
}

/* Message Portal (Right Column Form) */
.message-portal {
    background: rgba(255, 255, 255, 0.02); /* Very subtle transparent box */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0; /* Box uses inner card for padding */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.message-portal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--accent-rich); /* Terracotta highlight across top */
    transition: transform 0.4s ease;
    transform: scaleX(0); /* Subtle reveal on section enter or hover */
    transform-origin: center;
}

.message-portal:hover::before {
    transform: scaleX(1);
}

.message-card {
    padding: 5rem 4rem; /* Generous padding inside card */
    display: flex;
    flex-direction: column;
}

/* Form inputs verbatim styling (like login.php) */
.message-form input,
.message-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    border-color: var(--accent-rich); /* Accent color on focus */
}

/* Direct Email Section ( text first ) */
.direct-email {
    background-color: var(--bg-dark);
    padding: 5rem 0 10rem 0; /* Keep generout bottom padding for footer connection */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive breakdowns */
@media (max-width: 900px) {
    .connect-grid { grid-template-columns: 1fr; gap: 4rem; }
    .channel-list { grid-template-columns: 1fr !important; gap: 1rem; }
    .message-card { padding: 4rem 2rem; }
    .form-grid { grid-template-columns: 1fr !important; }
}

/* --- 404 ERROR PAGE STYLES --- */
.error-404-section {
    min-height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Accounts for the transparent fixed header */
    padding-bottom: 50px;
}

/* Subtle glowing terracotta orb in the background */
.error-bg-shapes {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(201, 76, 31, 0.08) 0%, rgba(7, 7, 7, 0) 60%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

/* Glassmorphism Card Container */
.error-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--accent-rich); /* Signature terracotta highlight */
}

/* Massive 404 Typography */
.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    color: var(--accent-rich);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 30px rgba(201, 76, 31, 0.2);
}

/* Updated Heading Color */
.error-content h2.text-light {
    color: var(--accent-rich) !important;
}

.error-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 3rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Updated Browse Library Button */
.error-content .btn-outline {
    color: var(--accent-rich);
    border: 1px solid var(--accent-rich);
}

.error-content .btn-outline:hover {
    background-color: var(--accent-rich);
    color: var(--text-light);
}

/* Mobile Adjustments for 404 */
@media (max-width: 600px) {
    .error-content { padding: 4rem 2rem; border-left: none; border-right: none; border-radius: 0; }
    .error-actions { flex-direction: column; width: 100%; }
    .error-actions a { width: 100%; text-align: center; }
}