/* WCRP Website - Inspired by PRC Design */

:root {
    --gold: #d4a133;
    --navy: #1e2053;
    --white: #ffffff;
    --bg: #fafafa;
    --text: #1a1a1a;
    --text-light: #666;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 180px;
    height: 63px;
    object-fit: contain;
}

.nav-title {
    display: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-play {
    background: linear-gradient(135deg, var(--navy) 0%, #3d4a8f 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(30, 32, 83, 0.3);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(30, 32, 83, 0.4);
}

.btn-discord {
    background: #5865F2;
    color: var(--white);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1e2053 50%, #2d3561 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Animated Siren Lights - Realistic UK Police Car Lights */
.siren-lights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.siren-light {
    position: absolute;
    width: 500px;
    height: 500px;
    opacity: 0;
}

.blue-left {
    left: -10%;
    top: 10%;
    animation: policeFlashLeft 1.6s ease-in-out infinite;
}

.blue-right {
    right: -10%;
    top: 30%;
    animation: policeFlashRight 1.6s ease-in-out infinite;
}

/* Realistic UK police light flash - double flash on each side */
@keyframes policeFlashLeft {
    /* First flash */
    0%, 8% { 
        opacity: 0;
        filter: blur(0px);
        box-shadow: none;
    }
    9%, 16% { 
        opacity: 1;
        filter: blur(100px);
        box-shadow: 
            0 0 200px 100px rgba(0, 100, 255, 0.8),
            0 0 400px 150px rgba(0, 100, 255, 0.4),
            0 0 600px 200px rgba(0, 100, 255, 0.2);
        background: radial-gradient(ellipse 150% 100%, #0066ff 0%, #0099ff 30%, transparent 70%);
    }
    /* Second flash */
    17%, 24% { 
        opacity: 0;
        filter: blur(0px);
        box-shadow: none;
    }
    25%, 32% { 
        opacity: 1;
        filter: blur(100px);
        box-shadow: 
            0 0 200px 100px rgba(0, 100, 255, 0.8),
            0 0 400px 150px rgba(0, 100, 255, 0.4),
            0 0 600px 200px rgba(0, 100, 255, 0.2);
        background: radial-gradient(ellipse 150% 100%, #0066ff 0%, #0099ff 30%, transparent 70%);
    }
    33%, 100% { 
        opacity: 0;
        filter: blur(0px);
        box-shadow: none;
    }
}

@keyframes policeFlashRight {
    /* Wait for left to finish */
    0%, 49% { 
        opacity: 0;
        filter: blur(0px);
        box-shadow: none;
    }
    /* First flash */
    50%, 57% { 
        opacity: 1;
        filter: blur(100px);
        box-shadow: 
            0 0 200px 100px rgba(0, 120, 255, 0.8),
            0 0 400px 150px rgba(0, 120, 255, 0.4),
            0 0 600px 200px rgba(0, 120, 255, 0.2);
        background: radial-gradient(ellipse 150% 100%, #0088ff 0%, #00bbff 30%, transparent 70%);
    }
    /* Second flash */
    58%, 65% { 
        opacity: 0;
        filter: blur(0px);
        box-shadow: none;
    }
    66%, 74% { 
        opacity: 1;
        filter: blur(100px);
        box-shadow: 
            0 0 200px 100px rgba(0, 120, 255, 0.8),
            0 0 400px 150px rgba(0, 120, 255, 0.4),
            0 0 600px 200px rgba(0, 120, 255, 0.2);
        background: radial-gradient(ellipse 150% 100%, #0088ff 0%, #00bbff 30%, transparent 70%);
    }
    75%, 100% { 
        opacity: 0;
        filter: blur(0px);
        box-shadow: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.wcrp-badge {
    margin: 0 auto 30px;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 
        0 8px 32px rgba(212, 161, 51, 0.5),
        0 0 60px rgba(212, 161, 51, 0.3);
    background: var(--white);
    padding: 16px;
    transition: all 0.4s ease;
}

.wcrp-badge:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 12px 48px rgba(212, 161, 51, 0.6),
        0 0 80px rgba(212, 161, 51, 0.4);
}

.wcrp-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #ffd700 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--navy);
    padding: 16px 48px;
    font-size: 18px;
}

.btn-hero-primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 161, 51, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 48px;
    font-size: 18px;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* Server Code Section - Redesigned */
.server-code-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.server-code-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 161, 51, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.code-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    padding: 40px 60px;
    border-radius: 24px;
    display: inline-block;
    border: 3px solid var(--gold);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(212, 161, 51, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.code-box:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 120px rgba(212, 161, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #ffd700;
}

.code-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.code-value {
    color: var(--white);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 8px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(212, 161, 51, 0.3);
    font-family: 'Courier New', monospace;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 32, 83, 0.15);
    border-color: var(--gold);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--bg);
}

.image-scroller {
    margin-top: 40px;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, var(--white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.scroller-placeholder {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--white);
    padding: 8px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 18px;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Sessions & Stats Section */
.sessions-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 16px 0 12px;
}

.icon-badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.icon-badge svg {
    width: 32px;
    height: 32px;
}

.highlight-card .icon-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #e0b84d 100%);
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin: 12px 0;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 8px;
}

/* Status Card */
.status-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator.offline {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.status-indicator.online {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-message {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 12px;
}

.server-code-live {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    border-radius: 12px;
    border: 2px solid var(--gold);
}

.code-label-small {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.code-value-small {
    display: block;
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    color: var(--white);
    border-color: var(--gold);
}

.highlight-card h3 {
    color: var(--white);
}

.session-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin: 12px 0;
}

.highlight-card .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Sessions Schedule */
.sessions-schedule {
    margin-top: 60px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.schedule-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    transition: all 0.3s;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 32, 83, 0.15);
    border-color: var(--gold);
}

.schedule-date {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    border-right: 3px solid var(--gold);
}

.date-day {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin: 8px 0;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
}

.schedule-details {
    padding: 24px;
    flex: 1;
}

.schedule-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.schedule-time,
.schedule-host {
    font-size: 14px;
    color: var(--text-light);
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.schedule-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    padding: 6px 14px;
    background: rgba(30, 32, 83, 0.08);
    color: var(--navy);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.tag-special {
    background: linear-gradient(135deg, var(--gold) 0%, #e0b84d 100%);
    color: var(--white);
}

/* Departments Section */
.departments {
    padding: 100px 0;
    background: var(--white);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.dept-card {
    background: var(--white);
    padding: 40px 32px 32px;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(30, 32, 83, 0.2);
    border-color: var(--gold);
}

.dept-logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    padding: 12px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 161, 51, 0.2);
}

.dept-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dept-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.dept-acronym {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.dept-card p:not(.dept-acronym) {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.dept-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-dept {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid;
}

.btn-dept svg {
    width: 18px;
    height: 18px;
}

.btn-dept-discord {
    background: #5865F2;
    color: var(--white);
    border-color: #5865F2;
}

.btn-dept-discord:hover {
    background: #4752C4;
    border-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.btn-dept-apply {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-dept-apply:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 32, 83, 0.3);
}

/* Community Stats Section */
.community-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2d3561 100%);
    position: relative;
    overflow: hidden;
}

.community-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 161, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-showcase-item {
    text-align: center;
}

.stat-showcase-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-showcase-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Join CTA Section */
.join-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--navy) 0%, #3d4a8f 100%);
    color: var(--white);
    padding: 18px 48px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(30, 32, 83, 0.3);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(30, 32, 83, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 16px 48px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-secondary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
}

.cta-info-item svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}

/* ===========================
   BAN APPEALS PAGE STYLES
   =========================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a2f6b 100%);
    text-align: center;
    overflow: hidden;
}

.page-header .siren-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Appeals Navigation */
.appeals-nav {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.appeals-nav-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.appeals-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.appeals-nav-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.appeals-nav-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 161, 51, 0.15);
}

.appeals-nav-btn:hover svg {
    transform: scale(1.1);
}

.appeals-nav-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(212, 161, 51, 0.3);
}

/* Appeals Forms Section */
.appeals-forms {
    background: var(--bg);
    padding: 64px 0;
}

.appeal-form-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

.appeal-form-container.active {
    display: block;
}

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

/* Form Card */
.form-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #gold 0%, #e6b84f 100%);
}

.form-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.form-icon.discord {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
}

.form-icon.ingame {
    background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
}

.form-icon.report {
    background: linear-gradient(135deg, #ff5252 0%, #ff6e6e 100%);
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

/* Form Styles */
.appeal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 161, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* Checkbox Group */
.form-group label[for*="acknowledge"],
.form-group label[for*="report-acknowledge"],
.form-group label[for*="ingame-acknowledge"],
.form-group label[for*="discord-acknowledge"] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold);
}

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6b84f 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 161, 51, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Warning Box (for report form) */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 82, 82, 0.1);
    border: 2px solid #ff5252;
    border-radius: 12px;
    margin-bottom: 24px;
}

.warning-box svg {
    width: 24px;
    height: 24px;
    color: #ff5252;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.warning-box strong {
    color: #ff5252;
}

/* Responsive Design for Ban Appeals */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 1.5rem 60px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .appeals-nav-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .appeals-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .form-icon {
        width: 64px;
        height: 64px;
    }
    
    .form-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .btn-submit {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* ===================================
   LIVERIES PAGE STYLES
   =================================== */

/* Livery Filter Section */
.livery-filter {
    padding: 40px 2rem;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-btn svg {
    width: 20px;
    height: 20px;
}

.filter-btn .filter-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.filter-btn:hover {
    border-color: var(--gold);
    background: #fff9f0;
    transform: translateY(-2px);
}

.filter-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

/* Liveries Section */
.liveries-section {
    padding: 80px 2rem;
    background: var(--white);
}

.liveries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* Livery Card */
.livery-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.livery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.livery-card.hidden {
    display: none;
}

/* Livery Image Container */
.livery-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    background: #f5f5f5;
    overflow: hidden;
}

.livery-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
}

.livery-image-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.livery-image-placeholder p {
    font-size: 14px;
    font-weight: 600;
}

.livery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Department Badge */
.livery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.livery-badge.wpd-badge {
    background: rgba(30, 32, 83, 0.9);
}

.livery-badge.was-badge {
    background: rgba(212, 161, 51, 0.9);
}

.livery-badge.wfb-badge {
    background: rgba(211, 47, 47, 0.9);
}

.livery-badge.wh-badge {
    background: rgba(46, 125, 50, 0.9);
}

/* Livery Details */
.livery-details {
    padding: 24px;
}

.livery-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.livery-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.livery-vehicle,
.livery-access {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.livery-vehicle svg,
.livery-access svg {
    width: 16px;
    height: 16px;
}

.livery-access.whitelisted {
    color: #ff5722;
}

.livery-access.public {
    color: #4caf50;
}

.livery-team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: 8px;
}

.livery-team svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.livery-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Empty State */
.liveries-empty {
    text-align: center;
    padding: 80px 2rem;
}

.liveries-empty svg {
    width: 80px;
    height: 80px;
    color: #ccc;
    margin-bottom: 24px;
}

.liveries-empty h3 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 12px;
}

.liveries-empty p {
    font-size: 16px;
    color: var(--text-light);
}

/* Responsive Design for Liveries */
@media (max-width: 1200px) {
    .liveries-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .livery-filter {
        padding: 32px 1.5rem;
    }
    
    .filter-buttons {
        gap: 12px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .filter-btn .filter-icon {
        width: 20px;
        height: 20px;
    }
    
    .liveries-section {
        padding: 60px 1.5rem;
    }
    
    .liveries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .livery-image-container {
        height: 200px;
    }
    
    .livery-details {
        padding: 20px;
    }
    
    .livery-name {
        font-size: 18px;
    }
    
    .liveries-empty {
        padding: 60px 1.5rem;
    }
    
    .liveries-empty svg {
        width: 64px;
        height: 64px;
    }
    
    .liveries-empty h3 {
        font-size: 20px;
    }
    
    .liveries-empty p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   DEPARTMENTS PAGE STYLES
   =================================== */

/* Departments Overview */
.departments-overview {
    padding: 80px 2rem 120px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.overview-grid {
    display: grid;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Department Card */
.dept-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dept-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* Department Card Header */
.dept-card-header {
    padding: 56px 48px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.dept-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.dept-card.wpd .dept-card-header {
    background: linear-gradient(135deg, #1e2053 0%, #2d3575 100%);
}

.dept-card.was .dept-card-header {
    background: linear-gradient(135deg, #d4a133 0%, #e0b147 100%);
}

.dept-card.wfb .dept-card-header {
    background: linear-gradient(135deg, #d32f2f 0%, #e53935 100%);
}

.dept-card.wh .dept-card-header {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
}

.dept-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.dept-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dept-header-text {
    position: relative;
    z-index: 1;
}

.dept-header-text h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dept-header-text .dept-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

/* Department Card Content */
.dept-card-content {
    padding: 48px;
}

.dept-description {
    margin-bottom: 36px;
}

.dept-description p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

/* Department Stats */
.dept-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 28px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dept-stat {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dept-stat svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    flex-shrink: 0;
    stroke-width: 2.5px;
}

.dept-card.wpd .dept-stat svg {
    color: var(--navy);
}

.dept-card.was .dept-stat svg {
    color: var(--gold);
}

.dept-card.wfb .dept-stat svg {
    color: #d32f2f;
}

.dept-card.wh .dept-stat svg {
    color: #2e7d32;
}

.dept-stat div strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.dept-stat div span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

/* Divisions */
.dept-divisions {
    margin-bottom: 40px;
}

.dept-divisions h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.divisions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.division-tag {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.division-tag:hover {
    border-color: var(--gold);
    background: #fff9f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 161, 51, 0.15);
}

.dept-card.wpd .division-tag:hover {
    border-color: var(--navy);
    background: #f0f1ff;
    box-shadow: 0 4px 12px rgba(30, 32, 83, 0.15);
}

.dept-card.wfb .division-tag:hover {
    border-color: #d32f2f;
    background: #ffebee;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
}

.dept-card.wh .division-tag:hover {
    border-color: #2e7d32;
    background: #e8f5e9;
}

/* Requirements */
.dept-requirements {
    margin-bottom: 40px;
}

.dept-requirements h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.dept-requirements ul {
    list-style: none;
    padding: 0;
}

.dept-requirements li {
    padding: 14px 0 14px 40px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.dept-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(212, 161, 51, 0.3);
}

.dept-card.wpd .dept-requirements li:before {
    background: var(--navy);
    box-shadow: 0 2px 8px rgba(30, 32, 83, 0.3);
}

.dept-card.wfb .dept-requirements li:before {
    background: #d32f2f;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.dept-card.wh .dept-requirements li:before {
    background: #2e7d32;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

/* Department Actions */
.dept-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dept-primary,
.btn-dept-secondary {
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-dept-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(212, 161, 51, 0.35);
    flex: 1;
    min-width: 200px;
}

.btn-dept-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212, 161, 51, 0.45);
}

.wpd-btn {
    background: var(--navy);
    box-shadow: 0 6px 20px rgba(30, 32, 83, 0.35);
}

.wpd-btn:hover {
    box-shadow: 0 10px 32px rgba(30, 32, 83, 0.45);
}

.wfb-btn {
    background: #d32f2f;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
}

.wfb-btn:hover {
    box-shadow: 0 10px 32px rgba(211, 47, 47, 0.45);
}

.wh-btn {
    background: #2e7d32;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.wh-btn:hover {
    box-shadow: 0 10px 32px rgba(46, 125, 50, 0.45);
}

.btn-dept-secondary {
    background: var(--white);
    color: var(--text);
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 180px;
}

.btn-dept-secondary:hover {
    border-color: var(--text);
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Executive Leadership Cards - Special Styling */
.team-card.president,
.team-card.vice-president {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-card.president .team-avatar,
.team-card.vice-president .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Team Avatar Image (for Discord avatars) */
.team-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 32, 83, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar-img {
    box-shadow: 0 6px 16px rgba(30, 32, 83, 0.2);
}

.discord-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Details (Discord, Roblox, Date info) */
.team-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #666;
}

.detail-item svg {
    width: 18px;
    height: 18px;
    color: #888;
    flex-shrink: 0;
}

.discord-username,
.roblox-username {
    font-weight: 600;
    color: var(--navy);
}

/* Alternative: Inline details layout */
.team-card-header .team-info .detail-item {
    margin-top: 0.5rem;
}

/* Vacant Avatar Styling */
.vacant-avatar {
    background: #e9ecef;
}

.vacant-avatar svg {
    color: #adb5bd;
}

/* Join Team CTA - Clean Design */
.join-team-cta {
    background: var(--navy);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 32, 83, 0.15);
    margin-top: 2rem;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESPONSIVE STYLES - CAREERS & TEAM PAGES
   ============================================ */

/* Tablet & Mobile Responsive */
@media (max-width: 968px) {
    /* Careers Page */
    .position-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .auth-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .user-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Team Page */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .category-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    /* Careers Page */
    .login-prompt {
        padding: 2.5rem 2rem;
    }
    
    .login-prompt h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .position-card {
        padding: 2rem;
    }
    
    .position-icon {
        width: 60px;
        height: 60px;
    }
    
    .position-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    /* Team Page */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .join-team-cta {
        padding: 2.5rem 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Careers Page */
    .login-prompt {
        padding: 2rem 1.5rem;
    }
    
    .login-icon {
        width: 70px;
        height: 70px;
    }
    
    .login-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .login-prompt h2 {
        font-size: 1.5rem;
    }
    
    .login-prompt p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .position-cards {
        gap: 1.5rem;
    }
    
    .position-card {
        padding: 1.75rem;
        border-radius: 16px;
    }
    
    .position-header h3 {
        font-size: 1.4rem;
    }
    
    .position-icon {
        width: 55px;
        height: 55px;
    }
    
    .position-requirements {
        padding: 1.5rem;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.25rem;
    }
    
    .modal-header h2 {
        font-size: 1.65rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    /* Team Page */
    .team-section {
        padding: 3rem 0;
    }
    
    .team-category {
        margin-bottom: 3rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 56px;
        height: 56px;
    }
    
    .team-avatar svg {
        width: 28px;
    }
}

/* ===================================
   CAREERS PAGE STYLES
   =================================== */

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

/* ============================================
   CAREERS PAGE - ENHANCED STYLES
   ============================================ */

/* Careers Login Section */
.careers-login {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.login-prompt {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.login-prompt::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.login-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.login-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.login-prompt h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.login-prompt p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-discord-large {
    background: white;
    color: #5865F2;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-discord-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-discord-large svg {
    width: 28px;
    height: 28px;
}

/* User Info Box */
.user-info {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #43B581 0%, #3BA376 100%);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(67, 181, 129, 0.3);
}

.user-avatar-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar-box svg {
    width: 40px;
    height: 40px;
    color: white;
}

.user-details-box {
    flex: 1;
    color: white;
}

.user-details-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.user-details-box p {
    opacity: 0.95;
    font-size: 1.05rem;
}

/* Auth Buttons Grid (Dual Authentication) */
.auth-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.auth-status-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.auth-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.auth-status-card:hover::before {
    transform: scaleX(1);
}

.auth-status-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.auth-status-card.authenticated {
    background: linear-gradient(135deg, rgba(67, 181, 129, 0.25), rgba(52, 211, 153, 0.25));
    border-color: #43B581;
    box-shadow: 0 8px 32px rgba(67, 181, 129, 0.2);
}

.auth-status-card.authenticated::before {
    background: linear-gradient(90deg, #43B581, #34D399);
    transform: scaleX(1);
}

.auth-status-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.auth-icon {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.auth-status-header h3 {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.auth-status-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.auth-status-card.authenticated .auth-status-text {
    color: #D1FAE5;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-auth {
    width: 100%;
    padding: 1rem 1.75rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--navy);
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-auth::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-auth:hover::before {
    width: 300px;
    height: 300px;
}

.btn-auth:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-auth:active {
    transform: translateY(-1px);
}

/* User Info Grid (Dual Authentication Success) */
.user-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.user-info-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 3px solid #D1FAE5;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.user-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #43B581 0%, #34D399 100%);
}

.user-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(67, 181, 129, 0.2);
}

.user-info-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.user-info-header svg {
    width: 48px;
    height: 48px;
    color: var(--navy);
    filter: drop-shadow(0 2px 8px rgba(30, 32, 83, 0.15));
}

.user-info-header h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-info-header p {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.3px;
}

.verified-badge {
    color: #43B581;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #D1FAE5;
    border-radius: 8px;
}

/* Careers Positions Section */
.careers-positions {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    display: block;
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.position-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Discord Login Box */
.discord-login-box {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 16px;
    padding: 3rem;
    margin: 0 auto 4rem;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discord-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.discord-login-content {
    flex: 1;
    color: white;
}

.discord-login-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.discord-login-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-discord-login {
    background: white;
    color: #5865F2;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-discord-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-discord-login svg {
    width: 24px;
    height: 24px;
}

/* Logged In State */
.discord-login-box.logged-in {
    background: linear-gradient(135deg, #43B581 0%, #3BA376 100%);
}

.discord-user-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.user-avatar {
    width:  70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar svg {
    width: 40px;
    height: 40px;
    color: white;
}

.user-details {
    flex: 1;
    color: white;
}

.user-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.user-details p {
    opacity: 0.9;
}

/* Position Card - Enhanced Design */
.position-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.position-card:hover::before {
    transform: scaleX(1);
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.position-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f8f9fa;
    position: relative;
}

.position-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.position-header.moderator::after {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.position-header.discord-mod::after {
    background: linear-gradient(90deg, #5865F2 0%, #4752C4 100%);
}

.position-header.content::after {
    background: linear-gradient(90deg, #FF0050 0%, #C40040 100%);
}

.position-header.events::after {
    background: linear-gradient(90deg, #F093FB 0%, #F5576C 100%);
}

.position-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

.position-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.position-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.position-header.moderator .position-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.position-header.discord-mod .position-icon {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.position-header.content .position-icon {
    background: linear-gradient(135deg, #FF0050 0%, #C40040 100%);
}

.position-header.events .position-icon {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
}

.position-header h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.position-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.position-requirements {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    flex: 1;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.position-card:hover .position-requirements {
    border-color: rgba(102, 126, 234, 0.2);
}

.position-requirements h4 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #667eea;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.position-requirements h4::before {
    content: '●';
    font-size: 0.6rem;
}

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

.position-requirements li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 0.975rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.position-requirements li:hover {
    color: var(--navy);
    padding-left: 2.25rem;
}

.position-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #43B581;
    font-weight: 800;
    font-size: 1.2rem;
}

.btn-apply {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-apply::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-apply:hover::before {
    width: 400px;
    height: 400px;
}

.btn-apply:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.btn-apply:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-apply:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #999;
    box-shadow: none;
}

.btn-apply svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.btn-apply span {
    position: relative;
    z-index: 1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Application Modal - Management & Internal Affairs Enhanced */
.application-modal {
    margin: 2rem auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 300;
    line-height: 1;
}

.modal-close:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: rotate(90deg) scale(1.1);
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 3px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px 16px 0 0;
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 2.5rem;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.modal-header p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-body {
    padding: 2.5rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Application Form - Professional Management Style */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.form-section:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-section:hover::before {
    opacity: 1;
}

.form-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.3px;
}

.form-section h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #dee2e6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input[readonly] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    cursor: not-allowed;
    border-color: #dee2e6;
    color: #666;
    font-weight: 600;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-checkbox:hover {
    border-color: #667eea;
    background: #ffffff;
}

.form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #667eea;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.6;
    color: #555;
}

.form-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #333;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 2px solid #dee2e6;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
    border-color: #ced4da;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ============================================
   MEET THE TEAM PAGE - CLEAN & PROFESSIONAL
   ============================================ */

.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category:last-of-type {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    text-align: center;
}

.category-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Clean, Professional Team Cards */
.team-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.team-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 32, 83, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    box-shadow: 0 6px 16px rgba(30, 32, 83, 0.2);
}

.team-card.leadership .team-avatar {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.team-card.management .team-avatar {
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
}

.team-card.moderator .team-avatar {
    background: linear-gradient(135deg, #0984E3 0%, #74B9FF 100%);
}

.team-card.content .team-avatar {
    background: linear-gradient(135deg, #E84393 0%, #FD79A8 100%);
}

.team-card.president .team-avatar {
    background: linear-gradient(135deg, #1e2053 0%, #FFD700 100%);
}

.team-card.vice-president .team-avatar {
    background: linear-gradient(135deg, #2d3561 0%, #667eea 100%);
}

.team-card.vacant .team-avatar {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.team-avatar svg {
    width: 32px;
    height: 32px;
    color: white;
}

.vacant-avatar svg {
    color: #adb5bd;
}

.team-info {
    flex: 1;
    min-width: 0;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}

.team-role {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vacant-role {
    color: #DC2626;
    font-weight: 700;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.25rem;
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-founder {
    background: #FFF7ED;
    color: #C2410C;
    border: 1px solid #FED7AA;
}

.badge-leadership {
    background: #F5F3FF;
    color: #6D28D9;
    border: 1px solid #DDD6FE;
}

.badge-management {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #DBEAFE;
}

.badge-community {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.badge-technical {
    background: #F0F9FF;
    color: #075985;
    border: 1px solid #BAE6FD;
}

.badge-moderator {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #93C5FD;
}

.badge-senior {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.badge-team {
    background: #F3E8FF;
    color: #7C3AED;
    border: 1px solid #E9D5FF;
}

.badge-content {
    background: #FCE7F3;
    color: #BE185D;
    border: 1px solid #FBCFE8;
}

.badge-creative {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.badge-discord {
    background: #EEF2FF;
    color: #4338CA;
    border: 1px solid #C7D2FE;
}

.badge-support {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.badge-vacant {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.badge-hiring {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #93C5FD;
}

.badge-president {
    background: linear-gradient(135deg, #1e2053 0%, #FFD700 100%);
    color: white;
    border: none;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1.25rem;
}

.apply-btn:hover {
    background: #2d3561;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 32, 83, 0.2);
}

/* Executive Leadership Cards - Special Styling */
.team-card.president,
.team-card.vice-president {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-card.president .team-avatar,
.team-card.vice-president .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Team Avatar Image (for Discord avatars) */
.team-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 32, 83, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar-img {
    box-shadow: 0 6px 16px rgba(30, 32, 83, 0.2);
}

.discord-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Details (Discord, Roblox, Date info) */
.team-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #666;
}

.detail-item svg {
    width: 18px;
    height: 18px;
    color: #888;
    flex-shrink: 0;
}

.discord-username,
.roblox-username {
    font-weight: 600;
    color: var(--navy);
}

/* Vacant Avatar Styling */
.vacant-avatar {
    background: #e9ecef;
}

.vacant-avatar svg {
    color: #adb5bd;
}

/* Join Team CTA - Clean Design */
.join-team-cta {
    background: var(--navy);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 32, 83, 0.15);
    margin-top: 2rem;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--navy);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(212, 161, 51, 0.3);
}

.dept-card.wpd .dept-requirements li:before {
    background: var(--navy);
    box-shadow: 0 2px 8px rgba(30, 32, 83, 0.3);
}

.dept-card.wfb .dept-requirements li:before {
    background: #d32f2f;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.dept-card.wh .dept-requirements li:before {
    background: #2e7d32;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

/* Department Actions */
.dept-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dept-primary,
.btn-dept-secondary {
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-dept-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(212, 161, 51, 0.35);
    flex: 1;
    min-width: 200px;
}

.btn-dept-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212, 161, 51, 0.45);
}

.wpd-btn {
    background: var(--navy);
    box-shadow: 0 6px 20px rgba(30, 32, 83, 0.35);
}

.wpd-btn:hover {
    box-shadow: 0 10px 32px rgba(30, 32, 83, 0.45);
}

.wfb-btn {
    background: #d32f2f;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.35);
}

.wfb-btn:hover {
    box-shadow: 0 10px 32px rgba(211, 47, 47, 0.45);
}

.wh-btn {
    background: #2e7d32;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}

.wh-btn:hover {
    box-shadow: 0 10px 32px rgba(46, 125, 50, 0.45);
}

.btn-dept-secondary {
    background: var(--white);
    color: var(--text);
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 180px;
}

.btn-dept-secondary:hover {
    border-color: var(--text);
    background: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Executive Leadership Cards - Special Styling */
.team-card.executive-leadership {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(212, 161, 51, 0.15);
}

.team-card.executive-leadership:hover {
    transform: translateY(-6px);