:root {
    --fbla-blue: #7c3aed;
    --fbla-dark-blue: #4c1d95;
    --fbla-purple: #7c3aed;
    --fbla-gold: #c4b5fd;
    --soft-bg: #faf7ff;
    --fh-white: #ffffff;
    --fh-text: #24143a;
    --fh-muted: #6f647a;
    --fh-line: #e8def2;
    --fh-surface: #faf7ff;
    --fh-purple: #7c3aed;
    --fh-purple-dark: #5b21b6;
    --fh-purple-deep: #4c1d95;
    --fh-purple-light: #c4b5fd;
    --fh-purple-soft: #ede9fe;
    --fh-purple-rgb: 124, 58, 237;
    --fh-deep-rgb: 76, 29, 149;
    --fh-radius-sm: 16px;
    --fh-radius-md: 24px;
    --fh-radius-lg: 34px;
    --fh-shadow: 0 24px 70px rgba(var(--fh-deep-rgb), 0.12);
    --fh-shadow-strong: 0 30px 85px rgba(var(--fh-deep-rgb), 0.2);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2937;
    background-color: #ffffff;
}

/* Navbar */
.navbar {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    backdrop-filter: blur(12px);
    z-index: 1050;
}

.navbar-brand {
    letter-spacing: -0.4px;
}

.nav-link {
    font-weight: 500;
    color: #374151;
    margin: 0 0.2rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--fbla-blue);
}

/* Hero Section */
.hero-section {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.25), transparent 30%),
        radial-gradient(circle at bottom right, rgba(111, 66, 193, 0.35), transparent 35%),
        linear-gradient(135deg, #092c63 0%, #0d6efd 55%, #6f42c1 100%);
    position: relative;
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-card {
    background: rgba(255, 255, 255, 0.96);
    color: #1f2937;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-mini-card {
    background-color: var(--soft-bg);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.text-purple {
    color: var(--fbla-purple);
}

/* Search Panel */
.search-panel {
    background-color: #ffffff;
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    margin-top: -4rem;
    position: relative;
    z-index: 5;
}

/* General Sections */
.section-description {
    max-width: 650px;
}

/* Feature Cards */
.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 1.75rem;
    background: #ffffff;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--soft-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

/* Category Cards */
.category-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    height: 100%;
}

.category-card span {
    font-size: 1.8rem;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 253, 0.35);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

/* CTA Box */
.cta-box {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.3), transparent 35%),
        linear-gradient(135deg, var(--fbla-dark-blue), var(--fbla-purple));
    border-radius: 28px;
    padding: 4rem 2rem;
}

/* Footer */
.footer {
    background-color: #4c1d95;
    color: rgba(255, 255, 255, 0.78);
}

.footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--fbla-blue), var(--fbla-gold));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .search-panel {
        margin-top: 0;
    }

    .hero-section {
        text-align: left;
    }
}

/* =========================
   New Homepage Design
========================= */

.home-hero {
    min-height: 90vh;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 45%, rgba(246,248,252,0.85) 45%, rgba(246,248,252,0.85) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.home-hero::after {
    content: "";
    position: absolute;
    right: -12rem;
    top: 8rem;
    width: 38rem;
    height: 38rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.16), rgba(13, 110, 253, 0.12));
    transform: rotate(45deg);
    z-index: 0;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.min-vh-90 {
    min-height: 82vh;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--fbla-purple);
    margin-bottom: 1rem;
}

.eyebrow.light {
    color: var(--fbla-gold);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    font-weight: 800;
    color: #17132f;
    max-width: 780px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5f6573;
    max-width: 520px;
    margin-top: 1.5rem;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.quick-links a {
    color: #32115f;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.quick-links a::before {
    content: "•";
    color: var(--fbla-gold);
    margin-right: 0.5rem;
}

.diamond-board {
    min-height: 560px;
    position: relative;
}

.diamond {
    position: absolute;
    width: 245px;
    height: 245px;
    transform: rotate(45deg) scale(1);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    cursor: default;
}

.diamond:hover {
    transform: rotate(45deg) scale(1.06);
    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.18),
        0 0 30px rgba(111, 66, 193, 0.18);
    filter: brightness(1.04);
    z-index: 5;
}

.diamond > div {
    transform: rotate(-45deg);
    width: 78%;
    text-align: center;
}

.diamond span {
    font-weight: 900;
    font-size: 0.8rem;
    opacity: 0.7;
}

.diamond h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0.25rem 0;
}

.diamond p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.diamond-main {
    background: linear-gradient(135deg, var(--fbla-purple), #3b1a78);
    color: white;
    top: 55px;
    left: 120px;
    width: 285px;
    height: 285px;
}

.diamond-blue {
    background: linear-gradient(135deg, var(--fbla-blue), #092c63);
    color: white;
    top: 245px;
    left: 345px;
}

.diamond-gold {
    background: linear-gradient(135deg, #fff3cd, var(--fbla-gold));
    color: #2b2142;
    top: 300px;
    left: 70px;
}

.diamond-light {
    background: white;
    color: #2b2142;
    top: 80px;
    left: 420px;
    border: 1px solid #e6e7ec;
}

.snap-section {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.bg-soft {
    background:
        linear-gradient(135deg, #ffffff 0%, #ffffff 38%, #f5f3fa 38%, #f5f3fa 100%);
}

.section-heading {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #241044;
}

.section-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #666b78;
}

.path-card {
    display: block;
    min-height: 380px;
    background: white;
    padding: 2rem;
    text-decoration: none;
    color: #241044;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e8e8ef;
    transition: 0.25s ease;
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}

.path-card.featured {
    background: linear-gradient(135deg, var(--fbla-purple), #35116f);
    color: white;
}

.path-number {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 900;
    opacity: 0.2;
    margin-bottom: 4rem;
}

.path-card h3 {
    font-weight: 800;
    font-size: 1.55rem;
}

.path-card p {
    color: inherit;
    opacity: 0.72;
    line-height: 1.7;
}

.path-card span {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 800;
    color: inherit;
}

.angled-panel {
    min-height: 500px;
    background:
        linear-gradient(135deg, rgba(111,66,193,0.88), rgba(13,110,253,0.82)),
        linear-gradient(135deg, #2b155d, #0d6efd);
    clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 4rem;
    color: white;
}

.angled-content {
    max-width: 470px;
}

.quote-mark {
    font-size: 6rem;
    line-height: 0.5;
    font-weight: 900;
    color: var(--fbla-gold);
}

.angled-content h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.angled-content p {
    font-size: 1.08rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stack-list {
    border-top: 1px solid #e6e7ec;
}

.stack-item {
    display: flex;
    gap: 1.4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e6e7ec;
}

.stack-item span {
    font-weight: 900;
    color: var(--fbla-purple);
}

.stack-item h5 {
    font-weight: 700;
    color: #241044;
    margin-bottom: 0.35rem;
}

.stack-item p {
    margin: 0;
    color: #6b7280;
}

.resource-band {
    background:
        linear-gradient(120deg, rgba(9, 44, 99, 0.95), rgba(111, 66, 193, 0.92)),
        linear-gradient(135deg, #092c63, #6f42c1);
}

.text-white-75 {
    color: rgba(255,255,255,0.75);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.resource-tile {
    min-height: 160px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.resource-tile i {
    font-size: 1.7rem;
    opacity: 0.75;
}

.resource-tile span {
    display: block;
}

.resource-tile:nth-child(even) {
    transform: translateY(2rem);
}

.resource-tile:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-0.4rem);
}

.resource-tile:nth-child(even):hover {
    transform: translateY(1.6rem);
}

.final-cta {
    padding: 7rem 0;
    background: white;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #241044;
}

/* Mobile */
@media (max-width: 991px) {
    .home-hero {
        padding: 4rem 0;
    }

    .diamond-board {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .diamond {
        position: static;
        width: auto !important;
        height: 180px !important;
        transform: none;
        border-radius: 22px;
    }

    .diamond > div {
        transform: none;
    }

    .snap-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .path-card {
        min-height: 280px;
    }

    .path-number {
        margin-bottom: 2rem;
    }

    .angled-panel {
        clip-path: none;
        border-radius: 28px;
    }

    .resource-grid {
        grid-template-columns: 1fr 1fr;
    }

    .resource-tile:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 575px) {
    .diamond-board,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .angled-panel {
        padding: 2rem;
    }
}

/* =========================
   Custom Buttons
========================= */

.btn-glow-primary {
    position: relative;
    isolation: isolate;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 0.95rem 1.6rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.22s ease;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 8px 22px rgba(109, 40, 217, 0.28);
}

.btn-glow-primary::before {
    content: "";
    position: absolute;
    width: 170%;
    height: 170%;
    z-index: -2;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 80deg,
        rgba(139, 92, 246, 0.15) 105deg,
        rgba(168, 85, 247, 0.95) 125deg,
        rgba(59, 130, 246, 0.85) 145deg,
        rgba(139, 92, 246, 0.15) 165deg,
        transparent 195deg,
        transparent 360deg
    );
    animation: glowOrbit 2.8s linear infinite;
    filter: blur(9px);
    opacity: 0.9;
}

.btn-glow-primary::after {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: -1;
    border-radius: 13px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.btn-glow-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 14px 28px rgba(109, 40, 217, 0.34),
        0 0 28px rgba(139, 92, 246, 0.38);
}

.btn-glow-primary:hover::before {
    animation-duration: 1.4s;
    filter: blur(11px);
    opacity: 1;
}

@keyframes glowOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-glow-primary:focus {
    color: #ffffff;
    box-shadow:
        0 0 0 0.2rem rgba(139, 92, 246, 0.22),
        0 14px 28px rgba(109, 40, 217, 0.30);
}

.btn-soft-secondary {
    background: #eef1f5;
    color: #23243a;
    border: 1px solid #d8deea;
    border-radius: 16px;
    padding: 0.95rem 1.6rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    transition: all 0.22s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-soft-secondary:hover {
    color: #1b1d31;
    background: #e6ebf2;
    border-color: #cfd6e3;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.btn-soft-secondary:focus {
    color: #1b1d31;
    box-shadow: 0 0 0 0.2rem rgba(148, 163, 184, 0.18);
}

.navbar-logo {
    height: 48px;
    width: auto;
    display: block;
}

@media (max-width: 575px) {
    .navbar-logo {
        height: 38px;
    }
}

.footer-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
}

/* =========================
   Professional Legal Pages
========================= */

.legal-hero {
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.legal-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.legal-hero-text {
    max-width: 640px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.legal-hero-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.legal-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.legal-hero-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.75rem;
}

.legal-hero-card p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.legal-content-section {
    padding: 5rem 0 2rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.legal-sidebar {
    top: 6.5rem;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.legal-sidebar h5 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.legal-sidebar a {
    display: block;
    color: #626977;
    text-decoration: none;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.legal-sidebar a:hover {
    color: var(--fbla-purple);
    background: #f5f3fa;
}

.legal-note {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 20px;
    padding: 1rem;
}

.legal-note i {
    color: var(--fbla-purple);
    font-size: 1.25rem;
}

.legal-note p {
    color: #626977;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.legal-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
}

.legal-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 2rem;
    border-bottom: 1px solid #eef0f5;
    scroll-margin-top: 7rem;
}

.legal-section:hover {
    background: #fcfcff;
}

.legal-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f5f3fa;
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.55rem;
}

.legal-section p {
    color: #626977;
    line-height: 1.8;
    margin-bottom: 0;
}

.legal-updated-box {
    margin: 2rem;
    padding: 1.2rem 1.35rem;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(111, 66, 193, 0.09), rgba(13, 110, 253, 0.07));
    color: #241044;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-updated-box i {
    color: var(--fbla-purple);
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .legal-hero {
        padding: 5rem 0 4rem;
    }

    .legal-sidebar {
        position: static !important;
    }
}

@media (max-width: 575px) {
    .legal-hero h1 {
        font-size: 3.2rem;
    }

    .legal-section {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .legal-card {
        border-radius: 24px;
    }

    .legal-updated-box {
        margin: 1.5rem;
    }
}

/* =========================
   Events Browse Page
========================= */

.events-hero {
    padding: 6rem 0 4.5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.16), transparent 28%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 48%, #f5f3fa 48%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    overflow: hidden;
}

.events-hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1rem;
}

.events-hero p {
    max-width: 720px;
    color: #626977;
    font-size: 1.1rem;
    line-height: 1.8;
}

.events-hero-search {
    display: flex;
    background: white;
    border: 1px solid #e8e8ef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.events-hero-search input {
    flex: 1;
    border: none;
    padding: 1.1rem 1.25rem;
    outline: none;
    font-weight: 600;
    color: #241044;
}

.events-hero-search button {
    width: 64px;
    border: none;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: white;
    font-size: 1.25rem;
}

.events-browser-section {
    padding: 2rem 0 3rem;
    background: #f5f6fa;
}

.events-wide-container {
    max-width: 1500px;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Filters */
.events-filter-panel {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 6.5rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
}

.filter-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-header h4 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.25rem;
}

.filter-header p {
    color: #7b8190;
    margin-bottom: 0;
    font-size: 0.92rem;
}

.clear-filters {
    color: var(--fbla-purple);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.filter-group {
    padding: 1.4rem 0;
    border-top: 1px solid #eef0f5;
}

.filter-group h5,
.mobile-search-filter label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #241044;
    margin-bottom: 1rem;
}

.filter-check {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.75rem;
    border-radius: 15px;
    color: #4f5563;
    cursor: pointer;
    transition: 0.18s ease;
    margin-bottom: 0.25rem;
}

.filter-check:hover,
.filter-check.active-filter {
    background: #f5f3fa;
    color: var(--fbla-purple);
}

.filter-check input {
    accent-color: var(--fbla-purple);
}

.filter-check span {
    font-weight: 650;
    font-size: 0.95rem;
}

.filter-check small {
    font-weight: 800;
    color: #8a90a0;
}

.mobile-search-filter {
    display: none;
}

.filter-search-box {
    display: flex;
    background: #f5f6fa;
    border: 1px solid #e8e8ef;
    border-radius: 16px;
    overflow: hidden;
}

.filter-search-box input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 0.9rem 1rem;
    outline: none;
}

.filter-search-box button {
    border: none;
    width: 48px;
    background: var(--fbla-purple);
    color: white;
}

/* Results */
.events-results-panel {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 34px;
    padding: 1.75rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.events-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e8e8ef;
}

.results-count {
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.5rem;
}

.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.active-filter-tags span {
    background: #f5f3fa;
    color: var(--fbla-purple);
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.sort-form label {
    color: #626977;
    font-weight: 700;
}

.sort-form select {
    border: 1px solid #e8e8ef;
    border-radius: 12px;
    padding: 0.55rem 0.8rem;
    font-weight: 700;
    color: #241044;
    outline: none;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.event-card {
    position: relative;
    min-height: 285px;
    padding: 1.4rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fbfbfe 100%);
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: 0.25s ease;
}

.event-card::after {
    content: "";
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.10), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
    transition: 0.25s ease;
}

.event-card:hover {
    transform: translateY(-7px);
    border-color: rgba(111, 66, 193, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.event-card:hover::after {
    right: -2rem;
    bottom: -2rem;
}

.event-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.event-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.20);
}

.event-badge {
    background: #f5f3fa;
    color: var(--fbla-purple);
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 900;
}

.event-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.5rem;
}

.event-meta {
    position: relative;
    z-index: 2;
    color: #626977;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.event-meta span {
    color: var(--fbla-gold);
    margin: 0 0.35rem;
}

.event-description {
    position: relative;
    z-index: 2;
    color: #6f7583;
    line-height: 1.6;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.event-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 2.2rem;
}

.event-tags span {
    background: #f5f6fa;
    color: #606777;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.event-hover-action {
    position: absolute;
    left: 1.4rem;
    bottom: 1.15rem;
    z-index: 3;
    color: var(--fbla-purple);
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.event-card:hover .event-hover-action {
    opacity: 1;
    transform: translateY(0);
}

.event-hover-action i {
    margin-left: 0.35rem;
}

/* Pagination */
.events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.25rem;
}

.events-pagination a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f5f6fa;
    color: #241044;
    border: 1px solid #e8e8ef;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: 0.2s ease;
}

.events-pagination a:hover,
.events-pagination .current-page {
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 26px rgba(111, 66, 193, 0.22);
}

/* Empty State */
.no-events-box {
    text-align: center;
    padding: 5rem 1rem;
}

.no-events-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: #f5f3fa;
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
}

.no-events-box h3 {
    font-weight: 800;
    color: #241044;
}

.no-events-box p {
    color: #626977;
}

/* Responsive */
@media (max-width: 1199px) {
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .events-filter-panel {
        position: static;
        max-height: none;
    }

    .events-toolbar {
        flex-direction: column;
    }

    .events-hero-search {
        display: none;
    }

    .mobile-search-filter {
        display: block;
    }
}

@media (max-width: 767px) {
    .events-wide-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .events-results-panel,
    .events-filter-panel {
        border-radius: 24px;
    }
}

.clear-filters-button {
    background: transparent;
    border: none;
    padding: 0;
}

.events-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--fbla-purple);
    font-weight: 800;
}

.events-loading.show {
    display: flex;
}

.events-loading p {
    margin: 0;
}

#eventsResults {
    transition: opacity 0.18s ease;
}

#eventsResults.is-loading {
    opacity: 0.45;
}

.events-pagination button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f5f6fa;
    color: #241044;
    border: 1px solid #e8e8ef;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: 0.2s ease;
}

.events-pagination button:hover,
.events-pagination .current-page {
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 26px rgba(111, 66, 193, 0.22);
}

/* =========================
   About Page
========================= */

.about-hero,
.tips-hero {
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.about-hero::after,
.tips-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.about-hero .container,
.tips-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1,
.tips-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.about-hero-text,
.tips-hero-text {
    max-width: 660px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.about-hero-card,
.tips-hero-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.about-card-icon,
.tips-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.about-hero-card h3,
.tips-hero-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.75rem;
}

.about-hero-card p,
.tips-hero-card p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.about-content-section,
.tips-content-section {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.about-side-card,
.tips-sidebar {
    top: 6.5rem;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.about-side-card h5,
.tips-sidebar h5 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.about-mini-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    color: #626977;
    font-weight: 700;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    margin-bottom: 0.6rem;
}

.about-mini-item i {
    color: var(--fbla-purple);
    font-size: 1.1rem;
}

.about-note,
.tips-note {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 20px;
    padding: 1rem;
}

.about-note i,
.tips-note i {
    color: var(--fbla-purple);
    font-size: 1.25rem;
}

.about-note p,
.tips-note p {
    color: #626977;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.about-main-card,
.tips-main-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
}

.about-section,
.tips-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 2rem;
    border-bottom: 1px solid #eef0f5;
    scroll-margin-top: 7rem;
}

.about-section:hover,
.tips-section:hover {
    background: #fcfcff;
}

.about-section-icon,
.tips-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f5f3fa;
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.about-section h2,
.tips-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.55rem;
}

.about-section p,
.tips-section p {
    color: #626977;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-section p:last-child,
.tips-section p:last-child {
    margin-bottom: 0;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.about-stat-card span {
    display: block;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--fbla-purple);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.about-stat-card p {
    color: #626977;
    margin-bottom: 0;
    font-weight: 700;
}

.about-cta-section,
.tips-cta-section {
    padding: 4rem 0 2rem;
    background: #ffffff;
}

.about-cta-box,
.tips-cta-box {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.20), transparent 30%),
        linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 34px;
    padding: 4rem 2rem;
}

.about-cta-box h2,
.tips-cta-box h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #241044;
}

.about-cta-box p,
.tips-cta-box p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: #626977;
    line-height: 1.8;
}

/* =========================
   Tips Page
========================= */

.tips-sidebar a {
    display: block;
    color: #626977;
    text-decoration: none;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    font-weight: 650;
    transition: 0.2s ease;
}

.tips-sidebar a:hover {
    color: var(--fbla-purple);
    background: #f5f3fa;
}

.tip-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.tip-list div {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: #626977;
    line-height: 1.6;
    font-weight: 600;
}

.tip-list i {
    color: var(--fbla-purple);
    margin-top: 0.12rem;
}

.question-box {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.question-box h6 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.75rem;
}

.question-box ul {
    margin-bottom: 0;
    color: #626977;
    line-height: 1.8;
}

.mistake-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    margin-top: 1rem;
}

.mistake-card {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1rem;
}

.mistake-card h6 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.35rem;
}

.mistake-card p {
    font-size: 0.94rem;
    margin-bottom: 0;
}

.tips-updated-box {
    margin: 2rem;
    padding: 1.2rem 1.35rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.09), rgba(13, 110, 253, 0.07));
    color: #241044;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tips-updated-box i {
    color: var(--fbla-purple);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero,
    .tips-hero {
        padding: 5rem 0 4rem;
    }

    .about-side-card,
    .tips-sidebar {
        position: static !important;
    }

    .about-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .about-hero h1,
    .tips-hero h1 {
        font-size: 3.1rem;
    }

    .about-section,
    .tips-section {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .about-main-card,
    .tips-main-card {
        border-radius: 24px;
    }

    .mistake-grid {
        grid-template-columns: 1fr;
    }

    .tips-updated-box {
        margin: 1.5rem;
    }
}

/* =========================
   Contact Page
========================= */

.contact-hero {
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.contact-hero-text {
    max-width: 660px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.contact-hero-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.contact-card-icon,
.contact-section-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.contact-card-icon {
    margin-bottom: 1.5rem;
}

.contact-hero-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.75rem;
}

.contact-hero-card p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.contact-content-section {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.contact-side-card {
    top: 7rem;
    z-index: 10;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.contact-side-card h5 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.contact-mini-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    color: #626977;
    font-weight: 700;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    margin-bottom: 0.6rem;
}

.contact-mini-item i {
    color: var(--fbla-purple);
    font-size: 1.1rem;
}

.contact-note {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 20px;
    padding: 1rem;
}

.contact-note i {
    color: var(--fbla-purple);
    font-size: 1.25rem;
}

.contact-note p {
    color: #626977;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.contact-main-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
}

.contact-form-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef0f5;
    margin-bottom: 1.5rem;
}

.contact-form-header h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #626977;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    color: #241044;
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e8e8ef;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    color: #241044;
    background: #fbfbfe;
    outline: none;
    transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(111, 66, 193, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.10);
}

.contact-form textarea {
    resize: vertical;
}

.contact-bottom-note {
    margin-top: 2rem;
    padding: 1.2rem 1.35rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.09), rgba(13, 110, 253, 0.07));
    color: #241044;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-bottom-note i {
    color: var(--fbla-purple);
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 5rem 0 4rem;
    }

    .contact-side-card {
        position: static !important;
    }
}

@media (max-width: 575px) {
    .contact-hero h1 {
        font-size: 3.1rem;
    }

    .contact-main-card {
        border-radius: 24px;
        padding: 1.5rem;
    }

    .contact-form-header {
        flex-direction: column;
    }
}

/* =========================
   Event Finder Page
========================= */

.finder-hero {
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.finder-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.finder-hero .container {
    position: relative;
    z-index: 2;
}

.finder-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.finder-hero-text {
    max-width: 660px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.finder-hero-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.finder-card-icon,
.finder-section-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.finder-card-icon {
    margin-bottom: 1.5rem;
}

.finder-hero-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.75rem;
}

.finder-hero-card p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.finder-content-section {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.finder-side-card {
    top: 7rem;
    z-index: 10;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.finder-side-card h5 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.finder-mini-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    color: #626977;
    font-weight: 700;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    margin-bottom: 0.6rem;
}

.finder-mini-item i {
    color: var(--fbla-purple);
    font-size: 1.1rem;
}

.finder-note {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 20px;
    padding: 1rem;
}

.finder-note i {
    color: var(--fbla-purple);
    font-size: 1.25rem;
}

.finder-note p {
    color: #626977;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.finder-main-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.finder-progress-wrap {
    margin-bottom: 2rem;
}

.finder-progress-label {
    display: flex;
    justify-content: space-between;
    color: #626977;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.finder-progress-bar {
    height: 12px;
    background: #f0f1f6;
    border-radius: 999px;
    overflow: hidden;
}

.finder-progress-bar div {
    height: 100%;
    width: 20%;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    border-radius: 999px;
    transition: 0.25s ease;
}

.finder-question {
    display: none;
}

.finder-question.active {
    display: block;
}

.finder-question-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef0f5;
    margin-bottom: 1.5rem;
}

.finder-question-header h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.4rem;
}

.finder-question-header p {
    color: #626977;
    line-height: 1.7;
    margin-bottom: 0;
}

.finder-options {
    display: grid;
    gap: 0.9rem;
}

.finder-option {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.finder-option:hover,
.finder-option.selected:has(input:checked) {
    background: #f5f3fa;
    border-color: rgba(111, 66, 193, 0.28);
    transform: translateY(-2px);
}

.finder-option input {
    margin-top: 0.3rem;
    accent-color: var(--fbla-purple);
}

.finder-option strong {
    display: block;
    color: #241044;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.finder-option small {
    color: #626977;
    line-height: 1.6;
}

.finder-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #eef0f5;
}

.finder-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.finder-result-card {
    display: block;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 24px;
    padding: 1.4rem;
    color: inherit;
    text-decoration: none;
    transition: 0.22s ease;
}

.finder-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    border-color: rgba(111, 66, 193, 0.28);
}

.finder-result-card.featured {
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: white;
}

.finder-result-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(111, 66, 193, 0.10);
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.finder-result-card.featured .finder-result-icon {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.finder-result-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: inherit;
}

.finder-result-card p {
    color: inherit;
    opacity: 0.78;
    line-height: 1.65;
    font-size: 0.95rem;
}

.finder-result-card span {
    font-weight: 900;
    color: inherit;
}

.finder-final-box {
    margin-top: 1.25rem;
    border-radius: 24px;
    padding: 1.4rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.09), rgba(13, 110, 253, 0.07));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.finder-final-box h4 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.3rem;
}

.finder-final-box p {
    color: #626977;
    margin-bottom: 0;
}

.finder-cta-section {
    padding: 4rem 0 2rem;
    background: #ffffff;
}

.finder-cta-box {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.20), transparent 30%),
        linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 34px;
    padding: 4rem 2rem;
}

.finder-cta-box h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #241044;
}

.finder-cta-box p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: #626977;
    line-height: 1.8;
}

.shake-question {
    animation: shakeFinder 0.35s ease;
}

@keyframes shakeFinder {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

@media (max-width: 991px) {
    .finder-hero {
        padding: 5rem 0 4rem;
    }

    .finder-side-card {
        position: static !important;
    }

    .finder-result-grid {
        grid-template-columns: 1fr;
    }

    .finder-final-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .finder-hero h1 {
        font-size: 3.1rem;
    }

    .finder-main-card {
        border-radius: 24px;
        padding: 1.5rem;
    }

    .finder-question-header {
        flex-direction: column;
    }

    .finder-actions {
        flex-direction: column;
    }
}

.finder-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1rem 0;
}

.finder-result-tags span {
    background: rgba(111, 66, 193, 0.10);
    color: var(--fbla-purple);
    border-radius: 999px;
    padding: 0.32rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
}

.finder-result-card.featured .finder-result-tags span {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.finder-result-link {
    display: inline-block;
    margin-top: 0.5rem;
}

.finder-loading-results {
    padding: 4rem 1rem;
    text-align: center;
    color: var(--fbla-purple);
    font-weight: 800;
}

.finder-loading-results p {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* =========================
   NLC Countdown Section
========================= */

.nlc-countdown-section {
    padding: 2.5rem 0;
    background: #ffffff;
}

.nlc-countdown-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 2.25rem;
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.24), transparent 28%),
        linear-gradient(135deg, rgba(111, 66, 193, 0.10), rgba(13, 110, 253, 0.07));
    border: 1px solid rgba(111, 66, 193, 0.14);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
}

.nlc-countdown-card::after {
    content: "";
    position: absolute;
    right: -5rem;
    top: -5rem;
    width: 15rem;
    height: 15rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.14), rgba(13, 110, 253, 0.10));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.nlc-countdown-card .row {
    position: relative;
    z-index: 2;
}

.nlc-countdown-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.85rem;
}

.nlc-countdown-card p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
}

.countdown-box span {
    display: block;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 900;
    color: var(--fbla-purple);
    letter-spacing: -0.05em;
}

.countdown-box small {
    display: block;
    margin-top: 0.45rem;
    color: #626977;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.nlc-progress-wrap {
    margin-top: 1.4rem;
}

.nlc-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #241044;
    font-weight: 900;
    font-size: 0.92rem;
    margin-bottom: 0.65rem;
}

.nlc-progress-bar {
    height: 14px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(111, 66, 193, 0.10);
}

.nlc-progress-bar div {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    border-radius: 999px;
    transition: width 0.6s ease;
}

.nlc-date-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #626977;
}

@media (max-width: 767px) {
    .nlc-countdown-card {
        padding: 1.5rem;
        border-radius: 26px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nlc-countdown-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
}

.nlc-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ffffff;
    color: var(--fbla-purple);
    border: 1px solid rgba(111, 66, 193, 0.18);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 900;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

.nlc-details-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    border-color: transparent;
    transform: translateY(-2px);
}

.nlc-date-note {
    margin: 0;
}

@media (max-width: 575px) {
    .nlc-countdown-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   NLC Details Page
========================= */

.details-hero {
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.details-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.details-hero .container {
    position: relative;
    z-index: 2;
}

.details-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.details-hero-text {
    max-width: 660px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.details-hero-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.details-card-icon,
.details-section-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.details-card-icon {
    margin-bottom: 1.5rem;
}

.details-hero-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.75rem;
}

.details-hero-card p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.details-content-section {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.details-side-card {
    top: 7rem;
    z-index: 10;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.details-side-card h5 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.details-mini-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    color: #626977;
    font-weight: 700;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    margin-bottom: 0.6rem;
}

.details-mini-item i {
    color: var(--fbla-purple);
    font-size: 1.1rem;
}

.details-note {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 20px;
    padding: 1rem;
}

.details-note i {
    color: var(--fbla-purple);
    font-size: 1.25rem;
}

.details-note p {
    color: #626977;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.details-main-card,
.details-gallery,
.details-timeline-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.details-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 2rem;
    border-bottom: 1px solid #eef0f5;
}

.details-section:hover {
    background: #fcfcff;
}

.details-section h2,
.details-gallery-header h2,
.details-timeline-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.55rem;
}

.details-section p,
.details-gallery-header p,
.details-timeline-card p {
    color: #626977;
    line-height: 1.8;
    margin-bottom: 0;
}

.details-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.details-pill-grid span {
    background: #f5f3fa;
    color: var(--fbla-purple);
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 900;
}

.details-gallery {
    padding: 2rem;
}

.details-gallery-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.25rem;
}

.details-gallery-header p {
    max-width: 340px;
    font-size: 0.95rem;
}

.details-image-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1rem;
}

.details-image-placeholder {
    min-height: 190px;
    background:
        linear-gradient(135deg, rgba(111, 66, 193, 0.10), rgba(13, 110, 253, 0.07));
    border: 1px dashed rgba(111, 66, 193, 0.32);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #626977;
    text-align: center;
    padding: 1.25rem;
}

.details-image-placeholder.large {
    grid-row: span 2;
    min-height: 400px;
}

.details-image-placeholder i {
    font-size: 2.2rem;
    color: var(--fbla-purple);
    margin-bottom: 0.8rem;
}

.details-image-placeholder span {
    font-weight: 900;
    color: #241044;
}

.details-image-placeholder small {
    margin-top: 0.25rem;
    font-weight: 700;
}

.details-timeline-card {
    padding: 2rem;
}

.details-timeline {
    margin-top: 1.25rem;
    display: grid;
    gap: 1.15rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    margin-top: 0.35rem;
    box-shadow: 0 0 0 6px rgba(111, 66, 193, 0.09);
}

.timeline-item h5 {
    color: #241044;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.details-cta-box {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.20), transparent 30%),
        linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 34px;
    padding: 4rem 2rem;
}

.details-cta-box h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #241044;
}

.details-cta-box p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: #626977;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .details-hero {
        padding: 5rem 0 4rem;
    }

    .details-side-card {
        position: static !important;
    }

    .details-gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .details-image-grid {
        grid-template-columns: 1fr;
    }

    .details-image-placeholder.large {
        grid-row: auto;
        min-height: 240px;
    }
}

@media (max-width: 575px) {
    .details-hero h1 {
        font-size: 3.1rem;
    }

    .details-section {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .details-main-card,
    .details-gallery,
    .details-timeline-card {
        border-radius: 24px;
    }
}

.details-image-card {
    position: relative;
    min-height: 190px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    background: #f5f3fa;
}

.details-image-card.large {
    grid-row: span 2;
    min-height: 400px;
}

.details-image-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.details-image-card:hover img {
    transform: scale(1.04);
}

.details-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.15rem;
    color: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.72) 55%,
        rgba(15, 23, 42, 0.88) 100%
    );
}

.details-image-overlay span {
    display: block;
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.details-image-overlay small {
    display: block;
    font-weight: 650;
    opacity: 0.88;
    line-height: 1.4;
}

.details-image-placeholder.large {
    grid-row: auto;
    min-height: 240px;
}

@media (max-width: 991px) {
    .details-image-card.large {
        grid-row: auto;
        min-height: 240px;
    }
}

.details-see-more-btn {
    margin-top: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #f5f3fa;
    color: var(--fbla-purple);
    border: 1px solid rgba(111, 66, 193, 0.16);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 900;
    font-size: 0.9rem;
    transition: 0.22s ease;
}

.details-see-more-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(111, 66, 193, 0.18);
}

.details-things-panel {
    display: none;
    margin-top: 1.25rem;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 24px;
    padding: 1.25rem;
}

.details-things-panel.show {
    display: block;
    animation: detailsPanelSlide 0.22s ease;
}

@keyframes detailsPanelSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.details-things-intro {
    color: #626977;
    line-height: 1.7;
    margin-bottom: 1rem !important;
}

.details-things-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.details-thing-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    background: #ffffff;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1rem;
    transition: 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.details-thing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(111, 66, 193, 0.22);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    color: inherit;
}

.details-thing-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: #f5f3fa;
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.details-thing-card h5 {
    font-size: 0.98rem;
    font-weight: 900;
    color: #241044;
    margin-bottom: 0.25rem;
}

.details-thing-card p {
    color: #626977;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.details-thing-card span {
    display: inline-flex;
    color: var(--fbla-purple);
    background: #f5f3fa;
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 900;
}

.details-distance-note {
    margin-top: 1rem !important;
    color: #7b8190;
    font-size: 0.86rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .details-things-grid {
        grid-template-columns: 1fr;
    }
}

.details-hero-image-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 0.75rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.details-hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* =========================
   Event Detail Page
========================= */

.event-detail-hero {
    padding: 6.5rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.event-detail-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.event-detail-hero .container {
    position: relative;
    z-index: 2;
}

.event-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--fbla-purple);
    text-decoration: none;
    font-weight: 900;
    background: #ffffff;
    border: 1px solid rgba(111, 66, 193, 0.14);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: 0.2s ease;
}

.event-back-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    transform: translateY(-2px);
}

.event-detail-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.event-detail-hero-text {
    max-width: 760px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.event-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.event-detail-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #ffffff;
    color: #241044;
    border: 1px solid #e8e8ef;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.event-detail-tags i {
    color: var(--fbla-purple);
}

.event-detail-hero-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(232, 232, 239, 0.9);
    border-radius: 30px;
    padding: 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.event-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.event-detail-hero-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.event-snapshot-list {
    display: grid;
    gap: 0.75rem;
}

.event-snapshot-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #eef0f5;
    padding-bottom: 0.75rem;
}

.event-snapshot-list div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-snapshot-list span {
    color: #626977;
    font-weight: 700;
}

.event-snapshot-list strong {
    color: #241044;
    font-weight: 900;
    text-align: right;
}

.event-detail-content-section {
    padding: 5rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.event-detail-side-card {
    top: 7rem;
    z-index: 10;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.event-detail-side-card h5 {
    font-weight: 800;
    color: #241044;
    margin-bottom: 1rem;
}

.event-detail-mini-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    color: #626977;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    margin-bottom: 0.6rem;
}

.event-detail-mini-item i {
    color: var(--fbla-purple);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.event-detail-mini-item span {
    display: block;
    color: #7b8190;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-detail-mini-item strong {
    display: block;
    color: #241044;
    font-weight: 800;
    line-height: 1.35;
}

.event-detail-note {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 20px;
    padding: 1rem;
}

.event-detail-note i {
    color: var(--fbla-purple);
    font-size: 1.25rem;
}

.event-detail-note p {
    color: #626977;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.event-side-buttons {
    display: grid;
    gap: 0.75rem;
}

.event-detail-main-card,
.event-resources-card,
.event-tips-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.event-detail-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 2rem;
    border-bottom: 1px solid #eef0f5;
}

.event-detail-section:hover {
    background: #fcfcff;
}

.event-detail-section-icon,
.event-resource-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f5f3fa;
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.event-detail-section h2,
.event-resources-header h2,
.event-tips-card h2,
.event-detail-cta h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #241044;
    margin-bottom: 0.55rem;
}

.event-detail-section p,
.event-resources-header p,
.event-tips-card p,
.event-detail-cta p {
    color: #626977;
    line-height: 1.8;
    margin-bottom: 0;
}

.event-component-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 1rem;
}

.event-component-card {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 18px;
    padding: 1rem;
    color: #9aa0ad;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.event-component-card i {
    font-size: 1.15rem;
}

.event-component-card.active {
    color: var(--fbla-purple);
    background: #f5f3fa;
    border-color: rgba(111, 66, 193, 0.18);
}

.event-resources-card,
.event-tips-card {
    padding: 2rem;
}

.event-resources-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
}

.event-resource-toggle {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #f5f3fa;
    color: var(--fbla-purple);
    border: 1px solid rgba(111, 66, 193, 0.16);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 900;
    font-size: 0.9rem;
    transition: 0.22s ease;
}

.event-resource-toggle:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(111, 66, 193, 0.18);
}

.event-resources-panel {
    display: none;
    margin-top: 1.5rem;
}

.event-resources-panel.show {
    display: block;
    animation: eventPanelSlide 0.22s ease;
}

@keyframes eventPanelSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.event-resource-card {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 22px;
    padding: 1.25rem;
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.event-resource-card:hover {
    color: inherit;
    transform: translateY(-4px);
    border-color: rgba(111, 66, 193, 0.22);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.event-resource-card h4 {
    font-size: 1rem;
    color: #241044;
    font-weight: 900;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
}

.event-resource-card p {
    color: #626977;
    line-height: 1.6;
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.event-resource-card span {
    color: var(--fbla-purple);
    font-size: 0.78rem;
    font-weight: 900;
}

.event-tip-list {
    margin-top: 1.4rem;
    display: grid;
    gap: 1rem;
}

.event-tip-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 22px;
    padding: 1.25rem;
}

.event-tip-number {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-tip-item h4 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #241044;
    margin-bottom: 0.35rem;
}

.event-tip-item p {
    font-size: 0.94rem;
}

.event-detail-cta {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.20), transparent 30%),
        linear-gradient(135deg, rgba(111, 66, 193, 0.08), rgba(13, 110, 253, 0.06));
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 34px;
    padding: 4rem 2rem;
}

.event-detail-cta h2 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.event-not-found-box {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 32px;
    padding: 4rem 2rem;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.07);
}

.event-not-found-box h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

@media (max-width: 991px) {
    .event-detail-hero {
        padding: 5rem 0 4rem;
    }

    .event-detail-side-card {
        position: static !important;
    }

    .event-resources-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-resource-grid {
        grid-template-columns: 1fr;
    }

    .event-component-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .event-detail-hero h1 {
        font-size: 3.1rem;
    }

    .event-detail-section {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .event-detail-main-card,
    .event-resources-card,
    .event-tips-card {
        border-radius: 24px;
    }

    .event-resources-card,
    .event-tips-card {
        padding: 1.5rem;
    }

    .event-component-grid {
        grid-template-columns: 1fr;
    }

    .event-tip-item {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Navbar / Footer Custom Buttons
========================= */

.nav-login-btn,
.footer-about-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    overflow: hidden;
    transition: 0.22s ease;
}

.nav-login-btn {
    padding: 0.62rem 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow:
        0 8px 18px rgba(109, 40, 217, 0.24),
        0 0 16px rgba(139, 92, 246, 0.20);
}

.footer-about-btn {
    padding: 0.6rem 0.95rem;
    color: #241044;
    background: linear-gradient(135deg, #fff3cd, #ffc107);
    box-shadow:
        0 8px 18px rgba(255, 193, 7, 0.20),
        0 0 16px rgba(255, 193, 7, 0.16);
    font-size: 0.9rem;
}

.nav-login-btn i,
.footer-about-btn i {
    font-size: 1rem;
    line-height: 1;
}

.nav-login-btn::before,
.footer-about-btn::before {
    content: "";
    position: absolute;
    width: 165%;
    height: 165%;
    z-index: -2;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 85deg,
        rgba(168, 85, 247, 0.95) 120deg,
        rgba(59, 130, 246, 0.85) 150deg,
        rgba(168, 85, 247, 0.20) 175deg,
        transparent 210deg,
        transparent 360deg
    );
    animation: buttonGlowOrbit 3s linear infinite;
    filter: blur(10px);
    opacity: 0.75;
}

.footer-about-btn::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 85deg,
        rgba(255, 193, 7, 0.95) 120deg,
        rgba(255, 235, 153, 0.85) 150deg,
        rgba(255, 193, 7, 0.20) 175deg,
        transparent 210deg,
        transparent 360deg
    );
}

.nav-login-btn::after,
.footer-about-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -1;
    border-radius: 999px;
}

.nav-login-btn::after {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.footer-about-btn::after {
    background: linear-gradient(135deg, #fff3cd, #ffc107);
}

.nav-login-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 12px 24px rgba(109, 40, 217, 0.32),
        0 0 24px rgba(139, 92, 246, 0.32);
}

.footer-about-btn:hover {
    color: #241044;
    transform: translateY(-2px);
    box-shadow:
        0 12px 24px rgba(255, 193, 7, 0.28),
        0 0 24px rgba(255, 193, 7, 0.26);
}

.nav-login-btn:hover::before,
.footer-about-btn:hover::before {
    animation-duration: 1.5s;
    opacity: 1;
}

@keyframes buttonGlowOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-hero-image-card {
    position: relative;
    min-height: 430px;
    border-radius: 30px;
    overflow: hidden;
    background: #f5f3fa;
    border: 1px solid rgba(232, 232, 239, 0.9);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.about-hero-image-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.about-hero-image-card:hover img {
    transform: scale(1.04);
}

.about-hero-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem;
    color: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.68) 55%,
        rgba(15, 23, 42, 0.92) 100%
    );
}

.about-hero-image-overlay span {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.about-hero-image-overlay small {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.9;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .about-hero-image-card,
    .about-hero-image-card img {
        min-height: 360px;
    }
}

/* =========================
   Personalized Event Cards
========================= */

.event-card {
    position: relative;
    min-height: 315px;
    padding: 1.4rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fbfbfe 100%);
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: 0.25s ease;
}

.event-card-accent {
    position: absolute;
    top: 0;
    left: 1.35rem;
    right: 1.35rem;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    opacity: 0.9;
}

.event-card::after {
    content: "";
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.10), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
    transition: 0.25s ease;
}

.event-card:hover {
    transform: translateY(-7px);
    border-color: rgba(111, 66, 193, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.event-card:hover::after {
    right: -2rem;
    bottom: -2rem;
}

.event-icon {
    transition: 0.25s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* Difficulty colors */

.event-card.difficulty-beginner .event-icon,
.event-card.difficulty-beginner .event-card-accent {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.event-card.difficulty-beginner .event-badge {
    color: #15803d;
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.18);
}

.event-card.difficulty-medium .event-icon,
.event-card.difficulty-medium .event-card-accent {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.event-card.difficulty-medium .event-badge {
    color: #a16207;
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.25);
}

.event-card.difficulty-advanced .event-icon,
.event-card.difficulty-advanced .event-card-accent {
    background: linear-gradient(135deg, #f43f5e, #b91c1c);
}

.event-card.difficulty-advanced .event-badge {
    color: #be123c;
    background: rgba(244, 63, 94, 0.10);
    border-color: rgba(244, 63, 94, 0.18);
}

/* Event type personality glow */

.event-card.accent-test:hover {
    box-shadow: 0 24px 60px rgba(34, 197, 94, 0.13);
}

.event-card.accent-presentation:hover {
    box-shadow: 0 24px 60px rgba(111, 66, 193, 0.16);
}

.event-card.accent-roleplay:hover {
    box-shadow: 0 24px 60px rgba(59, 130, 246, 0.15);
}

.event-card.accent-production:hover {
    box-shadow: 0 24px 60px rgba(245, 158, 11, 0.16);
}

.event-card.accent-chapter:hover {
    box-shadow: 0 24px 60px rgba(20, 184, 166, 0.15);
}

/* Footer line inside card */

.event-card-footer-line {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.15rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #6f7583;
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(245, 246, 250, 0.88);
    border: 1px solid rgba(232, 232, 239, 0.85);
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    backdrop-filter: blur(10px);
    transition: 0.22s ease;
}

.event-card-footer-line i {
    color: var(--fbla-purple);
}

.event-card:hover .event-card-footer-line {
    opacity: 0;
    transform: translateY(8px);
}

.event-hover-action {
    position: absolute;
    left: 1.4rem;
    bottom: 1.25rem;
    z-index: 4;
    color: var(--fbla-purple);
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.event-card:hover .event-hover-action {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   Auth Pages
========================= */

.auth-page-section {
    min-height: calc(100vh - 90px);
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    position: relative;
    overflow: hidden;
}

.auth-page-section::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.auth-page-section .container {
    position: relative;
    z-index: 2;
}

.auth-copy h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.25rem;
}

.auth-copy p {
    max-width: 660px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.auth-feature-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.auth-feature-list div {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #241044;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(232, 232, 239, 0.95);
    border-radius: 18px;
    padding: 0.85rem 1rem;
    width: fit-content;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.auth-feature-list i {
    color: var(--fbla-purple);
}

.auth-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(232, 232, 239, 0.95);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(12px);
}

.auth-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.25);
}

.auth-card h2 {
    color: #241044;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.auth-card-subtitle {
    color: #626977;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-form-group label {
    display: block;
    color: #241044;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-form-group input {
    width: 100%;
    border: 1px solid #e8e8ef;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    color: #241044;
    background: #fbfbfe;
    outline: none;
    transition: 0.2s ease;
}

.auth-form-group input:focus {
    border-color: rgba(111, 66, 193, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.10);
}

.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.auth-alert-error {
    color: #b91c1c;
    background: rgba(244, 63, 94, 0.10);
    border: 1px solid rgba(244, 63, 94, 0.18);
}

.auth-alert-success {
    color: #15803d;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.auth-switch {
    margin-top: 1.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef0f5;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    color: #626977;
    font-weight: 700;
}

.auth-switch a {
    color: var(--fbla-purple);
    font-weight: 900;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* =========================
   Dashboard
========================= */

.dashboard-hero {
    min-height: calc(100vh - 90px);
    padding: 7rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(232, 232, 239, 0.95);
    border-radius: 34px;
    padding: 4rem 2rem;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.09);
    text-align: center;
}

.dashboard-card h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1rem;
}

.dashboard-card p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: #626977;
    line-height: 1.8;
}

.dashboard-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .auth-page-section,
    .dashboard-hero {
        padding: 5rem 0 4rem;
    }
}

@media (max-width: 575px) {
    .auth-copy h1,
    .dashboard-card h1 {
        font-size: 3.1rem;
    }

    .auth-card {
        border-radius: 24px;
        padding: 1.5rem;
    }

    .auth-feature-list div {
        width: 100%;
    }
}

/* =========================
   Admin Dashboard
========================= */

.dashboard-admin-hero {
    padding: 7rem 0 4rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
    position: relative;
    overflow: hidden;
}

.dashboard-admin-hero::after {
    content: "";
    position: absolute;
    right: -8rem;
    top: 5rem;
    width: 22rem;
    height: 22rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
}

.dashboard-admin-hero .container {
    position: relative;
    z-index: 2;
}

.dashboard-admin-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1.1rem;
}

.dashboard-admin-hero p {
    max-width: 720px;
    color: #626977;
    font-size: 1.12rem;
    line-height: 1.8;
}

.dashboard-admin-status-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(232, 232, 239, 0.95);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dashboard-status-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex: 0 0 auto;
}

.dashboard-admin-status-card span {
    display: block;
    color: #7b8190;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.dashboard-admin-status-card h3 {
    color: #241044;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.dashboard-admin-status-card p {
    margin: 0;
    font-size: 0.92rem;
}

.dashboard-admin-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.dashboard-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.dashboard-stat-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 26px;
    padding: 1.4rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex: 0 0 auto;
}

.dashboard-stat-icon.purple {
    background: linear-gradient(135deg, var(--fbla-purple), #3b1a78);
}

.dashboard-stat-icon.blue {
    background: linear-gradient(135deg, var(--fbla-blue), #092c63);
}

.dashboard-stat-icon.gold {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.dashboard-stat-icon.red {
    background: linear-gradient(135deg, #f43f5e, #b91c1c);
}

.dashboard-stat-card span {
    display: block;
    color: #7b8190;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.dashboard-stat-card h2 {
    color: #241044;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.dashboard-management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.dashboard-management-card {
    min-height: 280px;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    color: inherit;
    text-decoration: none;
    transition: 0.24s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.dashboard-management-card::after {
    content: "";
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.10), rgba(13, 110, 253, 0.08));
    transform: rotate(45deg);
    border-radius: 2rem;
    transition: 0.25s ease;
}

.dashboard-management-card:hover {
    color: inherit;
    transform: translateY(-7px);
    border-color: rgba(111, 66, 193, 0.30);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.dashboard-management-card:hover::after {
    right: -2rem;
    bottom: -2rem;
}

.dashboard-management-card.featured {
    background:
        radial-gradient(circle at top right, rgba(255, 193, 7, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(111, 66, 193, 0.10), rgba(13, 110, 253, 0.07));
}

.dashboard-management-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 12px 28px rgba(111, 66, 193, 0.20);
    position: relative;
    z-index: 2;
}

.dashboard-management-card h3 {
    color: #241044;
    font-weight: 900;
    font-size: 1.35rem;
    margin-bottom: 0.55rem;
    position: relative;
    z-index: 2;
}

.dashboard-management-card p {
    color: #626977;
    line-height: 1.65;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.dashboard-management-card > span {
    color: var(--fbla-purple);
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.dashboard-panel,
.dashboard-quick-tools {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.dashboard-panel-header,
.dashboard-quick-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-panel-header {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef0f5;
}

.dashboard-panel-header h3,
.dashboard-quick-tools h3 {
    color: #241044;
    font-weight: 900;
    margin: 0;
}

.dashboard-panel-header a {
    color: var(--fbla-purple);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.dashboard-table-list {
    display: grid;
    gap: 0.8rem;
}

.dashboard-table-list.compact {
    margin-top: 1rem;
}

.dashboard-list-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 0.95rem;
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

.dashboard-list-row:hover {
    color: inherit;
    transform: translateY(-2px);
    border-color: rgba(111, 66, 193, 0.20);
}

.dashboard-list-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: #f5f3fa;
    color: var(--fbla-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-list-icon.warning {
    background: rgba(250, 204, 21, 0.14);
    color: #a16207;
}

.dashboard-list-row h4 {
    font-size: 0.98rem;
    color: #241044;
    font-weight: 900;
    margin-bottom: 0.15rem;
}

.dashboard-list-row p {
    color: #626977;
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.45;
}

.dashboard-user-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.dashboard-user-summary div {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1rem;
}

.dashboard-user-summary span {
    display: block;
    color: #7b8190;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.dashboard-user-summary strong {
    color: #241044;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.dashboard-empty-box {
    background: #fbfbfe;
    border: 1px dashed #dfe3ed;
    border-radius: 22px;
    padding: 2rem;
    text-align: center;
    color: #626977;
}

.dashboard-empty-box i {
    display: block;
    font-size: 2rem;
    color: var(--fbla-purple);
    margin-bottom: 0.7rem;
}

.dashboard-empty-box p {
    margin: 0;
    font-weight: 700;
}

.dashboard-tool-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 1199px) {
    .dashboard-stat-grid,
    .dashboard-management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .dashboard-admin-hero {
        padding: 5rem 0 4rem;
    }

    .dashboard-panel-header,
    .dashboard-quick-tools {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .dashboard-admin-hero h1 {
        font-size: 3.1rem;
    }

    .dashboard-stat-grid,
    .dashboard-management-grid,
    .dashboard-user-summary {
        grid-template-columns: 1fr;
    }

    .dashboard-admin-status-card {
        flex-direction: column;
    }
}

/* =========================
   Admin Navbar
========================= */

.admin-navbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(232, 232, 239, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    z-index: 1050;
}

.admin-navbar-brand {
    gap: 0.75rem;
    text-decoration: none;
}

.admin-navbar-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(111, 66, 193, 0.18);
}

.admin-navbar-brand div {
    display: grid;
    line-height: 1.1;
}

.admin-navbar-brand span {
    color: #241044;
    font-weight: 900;
    font-size: 1.05rem;
}

.admin-navbar-brand small {
    color: #7b8190;
    font-size: 0.75rem;
    font-weight: 700;
}

.admin-nav-links {
    gap: 0.25rem;
}

.admin-nav-links .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #515766;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.62rem 0.85rem !important;
    transition: 0.2s ease;
}

.admin-nav-links .nav-link i {
    color: var(--fbla-purple);
}

.admin-nav-links .nav-link:hover,
.admin-nav-links .nav-link.active {
    color: var(--fbla-purple);
    background: #f5f3fa;
}

.admin-navbar-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fbfbfe;
    border: 1px solid #e8e8ef;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    color: #241044;
    font-weight: 800;
    max-width: 190px;
}

.admin-user-pill span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-user-pill i {
    color: var(--fbla-purple);
}

.admin-logout-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.62rem 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 10px 22px rgba(109, 40, 217, 0.22);
    transition: 0.22s ease;
    overflow: hidden;
}

.admin-logout-btn::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    z-index: -2;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 85deg,
        rgba(168, 85, 247, 0.95) 120deg,
        rgba(59, 130, 246, 0.85) 150deg,
        rgba(168, 85, 247, 0.20) 175deg,
        transparent 210deg,
        transparent 360deg
    );
    animation: buttonGlowOrbit 3s linear infinite;
    filter: blur(10px);
    opacity: 0.7;
}

.admin-logout-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.admin-logout-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(109, 40, 217, 0.32);
}

.admin-logout-btn:hover::before {
    animation-duration: 1.5s;
    opacity: 1;
}

@media (max-width: 991px) {
    .admin-nav-links {
        margin-top: 1rem;
        gap: 0.35rem;
    }

    .admin-nav-links .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-navbar-user {
        align-items: stretch;
        flex-direction: column;
        margin-top: 1rem;
    }

    .admin-user-pill,
    .admin-logout-btn {
        max-width: none;
        width: 100%;
    }
}

/* =========================
   Admin Management Pages
========================= */

.admin-page-hero {
    padding: 6.5rem 0 3.5rem;
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.14), transparent 30%),
        linear-gradient(120deg, #ffffff 0%, #ffffff 50%, #f5f3fa 50%, #f5f3fa 100%);
    border-bottom: 1px solid #e8e8ef;
}

.admin-page-hero h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 800;
    color: #17132f;
    margin-bottom: 1rem;
}

.admin-page-hero p {
    color: #626977;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 720px;
}

.admin-search-box {
    position: relative;
}

.admin-search-box input {
    width: 100%;
    border: 1px solid #e8e8ef;
    border-radius: 999px;
    padding: 1rem 3rem 1rem 1.2rem;
    outline: none;
    font-weight: 700;
    color: #241044;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.admin-search-box input:focus {
    border-color: rgba(111, 66, 193, 0.45);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.06),
        0 0 0 0.2rem rgba(111, 66, 193, 0.10);
}

.admin-search-box i {
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fbla-purple);
}

.admin-management-section {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
}

.admin-toolbar-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 28px;
    padding: 1.35rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-toolbar-card h3 {
    color: #241044;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.admin-toolbar-card p {
    color: #626977;
    margin: 0;
    font-weight: 700;
}

.admin-toolbar-card select,
.admin-toolbar-actions select {
    border: 1px solid #e8e8ef;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    color: #241044;
    font-weight: 800;
    background: #fbfbfe;
    outline: none;
}

.admin-toolbar-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-loading-box {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 22px;
    padding: 1rem;
    color: #626977;
    font-weight: 800;
    margin-bottom: 1rem;
}

.admin-loading-box.show {
    display: flex;
}

.admin-loading-box p {
    margin: 0;
}

.admin-table-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.admin-table {
    color: #241044;
}

.admin-table thead th {
    background: #fbfbfe;
    color: #626977;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 900;
    border-bottom: 1px solid #eef0f5;
    padding: 1rem;
    white-space: nowrap;
}

.admin-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #eef0f5;
    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-user-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.admin-user-cell strong,
.admin-event-cell strong {
    display: block;
    color: #241044;
    font-weight: 900;
}

.admin-user-cell span,
.admin-event-cell span {
    display: block;
    color: #7b8190;
    font-size: 0.86rem;
    font-weight: 700;
}

.admin-status-pill,
.admin-role-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap;
}

.admin-status-pill.active,
.admin-status-pill.success {
    color: #15803d;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.admin-status-pill.pending,
.admin-status-pill.warning {
    color: #a16207;
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.22);
}

.admin-status-pill.danger {
    color: #be123c;
    background: rgba(244, 63, 94, 0.10);
    border: 1px solid rgba(244, 63, 94, 0.18);
}

.admin-status-pill.neutral,
.admin-role-pill {
    color: var(--fbla-purple);
    background: #f5f3fa;
    border: 1px solid rgba(111, 66, 193, 0.14);
}

.admin-action-buttons {
    display: flex;
    gap: 0.45rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.admin-mini-btn {
    border: 1px solid #e8e8ef;
    background: #ffffff;
    color: #241044;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    transition: 0.2s ease;
}

.admin-mini-btn:hover {
    transform: translateY(-2px);
    color: #241044;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.admin-mini-btn.primary {
    color: var(--fbla-purple);
    background: #f5f3fa;
    border-color: rgba(111, 66, 193, 0.16);
}

.admin-mini-btn.success {
    color: #15803d;
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.18);
}

.admin-mini-btn.warning {
    color: #a16207;
    background: rgba(250, 204, 21, 0.14);
    border-color: rgba(250, 204, 21, 0.22);
}

.admin-mini-btn.danger {
    color: #be123c;
    background: rgba(244, 63, 94, 0.10);
    border-color: rgba(244, 63, 94, 0.18);
}

.admin-self-note {
    color: #7b8190;
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.admin-alert-success {
    color: #15803d;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.admin-alert-error {
    color: #b91c1c;
    background: rgba(244, 63, 94, 0.10);
    border: 1px solid rgba(244, 63, 94, 0.18);
}

.admin-empty-box {
    background: #ffffff;
    border: 1px dashed #dfe3ed;
    border-radius: 28px;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #626977;
}

.admin-empty-box i {
    display: block;
    font-size: 2.5rem;
    color: var(--fbla-purple);
    margin-bottom: 0.9rem;
}

.admin-empty-box h3 {
    color: #241044;
    font-weight: 900;
}

.admin-modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
}

.admin-modal-content .modal-header {
    border-bottom: 1px solid #eef0f5;
    padding: 1.35rem 1.5rem;
}

.admin-modal-content .modal-title {
    color: #241044;
    font-weight: 900;
    font-size: 1.35rem;
}

.admin-modal-content .modal-body {
    padding: 1.5rem;
}

.admin-modal-content .modal-footer {
    border-top: 1px solid #eef0f5;
    padding: 1.2rem 1.5rem;
}

.admin-form-group label {
    display: block;
    color: #241044;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    width: 100%;
    border: 1px solid #e8e8ef;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    color: #241044;
    background: #fbfbfe;
    font-weight: 700;
    outline: none;
    transition: 0.2s ease;
}

.admin-form-group textarea {
    resize: vertical;
}

.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus {
    border-color: rgba(111, 66, 193, 0.45);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.10);
}

.admin-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    background: #fbfbfe;
    border: 1px solid #e8e8ef;
    border-radius: 20px;
    padding: 1rem;
}

.admin-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #241044;
    font-weight: 800;
}

.admin-checkbox-grid input {
    accent-color: var(--fbla-purple);
}

@media (max-width: 991px) {
    .admin-toolbar-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-toolbar-actions,
    .admin-toolbar-card select {
        width: 100%;
    }

    .admin-toolbar-actions select {
        flex: 1;
    }
}

@media (max-width: 575px) {
    .admin-page-hero h1 {
        font-size: 3rem;
    }

    .admin-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix scrolling inside admin edit modal */
#editEventModal .modal-dialog {
    max-height: calc(100vh - 2rem);
}

#editEventModal .modal-content {
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
}

#editEventModal .modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 12rem);
}

.admin-add-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 10px 22px rgba(109, 40, 217, 0.22);
    transition: 0.22s ease;
}

.admin-add-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(109, 40, 217, 0.32);
}

.admin-add-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.admin-resource-cell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 330px;
}

.admin-resource-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: 0 0 auto;
    box-shadow: 0 10px 22px rgba(111, 66, 193, 0.16);
}

.admin-resource-cell strong {
    display: block;
    color: #241044;
    font-weight: 900;
    margin-bottom: 0.15rem;
}

.admin-resource-cell span {
    display: block;
    color: #7b8190;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
    max-width: 520px;
}

.event-resource-links {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.event-resource-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 14px;
    padding: 0.65rem 0.75rem;
    color: #241044;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s ease;
}

.event-resource-link:hover {
    color: var(--fbla-purple);
    border-color: rgba(111, 66, 193, 0.20);
    transform: translateY(-2px);
}

.event-resource-link span {
    line-height: 1.35;
}

.event-resource-empty {
    display: inline-flex;
    margin-top: 0.75rem;
    color: #8a90a0;
    font-size: 0.85rem;
    font-weight: 800;
}

.tips-dynamic-grid {
    display: grid;
    gap: 1.25rem;
}

.tips-dynamic-category-card {
    background: #ffffff;
    border: 1px solid #e8e8ef;
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.tips-dynamic-category-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef0f5;
}

.tips-dynamic-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--fbla-purple), var(--fbla-blue));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex: 0 0 auto;
}

.tips-dynamic-category-header h3 {
    color: #241044;
    font-weight: 900;
    margin: 0;
}

.tips-dynamic-list {
    display: grid;
    gap: 0.85rem;
}

.tips-dynamic-item {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1rem;
}

.tips-dynamic-item h4 {
    color: #241044;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.tips-dynamic-item p {
    color: #626977;
    line-height: 1.7;
    margin-bottom: 0;
}

.tips-dynamic-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.7rem;
    color: var(--fbla-purple);
    font-weight: 900;
    text-decoration: none;
}

.tips-dynamic-item a:hover {
    text-decoration: underline;
}

.tips-database-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.tips-database-item {
    background: #fbfbfe;
    border: 1px solid #eef0f5;
    border-radius: 20px;
    padding: 1rem;
    transition: 0.2s ease;
}

.tips-database-item:hover {
    transform: translateY(-2px);
    border-color: rgba(111, 66, 193, 0.2);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.tips-database-item h4 {
    color: #241044;
    font-weight: 900;
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.tips-database-item p {
    color: #626977;
    line-height: 1.75;
    margin-bottom: 0;
}

.tips-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--fbla-purple);
    font-weight: 900;
    text-decoration: none;
    margin-top: 0.75rem;
}

.tips-related-link:hover {
    text-decoration: underline;
}

.event-resource-card {
    color: inherit;
    text-decoration: none;
}

.event-resource-card-clickable {
    display: block;
    cursor: pointer;
    position: relative;
}

.event-resource-card-clickable:hover {
    color: inherit;
    transform: translateY(-5px);
    border-color: rgba(111, 66, 193, 0.24);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.event-resource-card-clickable:hover .event-resource-icon {
    transform: scale(1.06) rotate(-3deg);
}

.event-resource-main-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--fbla-purple);
    font-weight: 900;
    line-height: 1.35;
}

.event-resource-card-clickable .event-resource-description {
    margin-top: 0.55rem;
}

/* Moving glowing aura around the resources card */
.event-resources-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(111, 66, 193, 0.22);
    box-shadow: 0 18px 45px rgba(111, 66, 193, 0.10);
}

.event-resources-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 55deg,
        rgba(111, 66, 193, 0.95) 95deg,
        rgba(74, 144, 226, 0.95) 135deg,
        rgba(255, 255, 255, 0.65) 170deg,
        transparent 230deg,
        transparent 360deg
    );
    animation: resourcesCardAura 6s linear infinite;
    z-index: -2;
}

.event-resources-card::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 24px;
    background: #ffffff;
    z-index: -1;
}

@keyframes resourcesCardAura {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.event-resources-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.event-resources-icon-badge {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.12), rgba(74, 144, 226, 0.16));
    border: 1px solid rgba(111, 66, 193, 0.18);
    box-shadow: 0 14px 35px rgba(111, 66, 193, 0.18);
    position: relative;
    animation: resourcesIconFloat 3.2s ease-in-out infinite;
}

.event-resources-icon-badge::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 22px;
    background: rgba(111, 66, 193, 0.13);
    filter: blur(10px);
    opacity: 0.85;
    z-index: -1;
    animation: resourcesIconPulse 2.4s ease-in-out infinite;
}

.event-resources-icon-badge i {
    font-size: 1.65rem;
    color: var(--fbla-purple);
}

@keyframes resourcesIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-5px) rotate(3deg);
    }
}

@keyframes resourcesIconPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .event-resources-heading {
        align-items: flex-start;
    }

    .event-resources-icon-badge {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
    }

    .event-resources-icon-badge i {
        font-size: 1.35rem;
    }
}

.event-resources-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.event-resources-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(111, 66, 193, 0.18);
    background: #ffffff;
    color: #241044;
    font-weight: 900;
    border-radius: 18px;
    padding: 0.55rem 0.85rem 0.55rem 0.55rem;
    box-shadow: 0 14px 35px rgba(111, 66, 193, 0.13);
    transition: 0.2s ease;
}

.event-resources-dropdown-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(111, 66, 193, 0.35);
    box-shadow: 0 18px 42px rgba(111, 66, 193, 0.18);
}

.event-resources-icon-badge {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.13), rgba(74, 144, 226, 0.17));
    border: 1px solid rgba(111, 66, 193, 0.18);
    position: relative;
    animation: resourcesIconFloat 3.2s ease-in-out infinite;
}

.event-resources-icon-badge::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 20px;
    background: rgba(111, 66, 193, 0.16);
    filter: blur(10px);
    opacity: 0.75;
    z-index: -1;
    animation: resourcesIconPulse 2.4s ease-in-out infinite;
}

.event-resources-icon-badge i {
    font-size: 1.35rem;
    color: var(--fbla-purple);
}

.event-resources-dropdown-menu {
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 18px;
    padding: 0.5rem;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.event-resources-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 12px;
    font-weight: 800;
    color: #241044;
    padding: 0.65rem 0.75rem;
}

.event-resources-dropdown-menu .dropdown-item i {
    color: var(--fbla-purple);
}

.event-resources-dropdown-menu .dropdown-item:hover {
    background: rgba(111, 66, 193, 0.08);
    color: var(--fbla-purple);
}

.event-resource-card {
    scroll-margin-top: 110px;
}

@keyframes resourcesIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-4px) rotate(3deg);
    }
}

@keyframes resourcesIconPulse {
    0%, 100% {
        transform: scale(0.95);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .event-resources-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-resources-dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }
}

.event-resources-dropdown-trigger {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    cursor: pointer;
}

.event-resources-dropdown-trigger::after {
    display: none;
}

.event-resources-heading-text {
    display: grid;
    gap: 0.3rem;
}

.event-resources-title {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: #241044;
    line-height: 1.15;
}

.event-resources-description-text {
    display: block;
    color: #626977;
    font-weight: 600;
    line-height: 1.6;
}

.event-resources-dropdown-menu {
    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 18px;
    padding: 0.5rem;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
    min-width: 290px;
}

.event-resource-jump-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 12px;
    font-weight: 850;
    color: #241044;
    padding: 0.7rem 0.8rem;
}

.event-resource-jump-link span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.event-resource-jump-link i {
    color: var(--fbla-purple);
}

.event-resource-jump-link small {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(111, 66, 193, 0.1);
    color: var(--fbla-purple);
    font-weight: 900;
}

.event-resource-jump-link:hover {
    background: rgba(111, 66, 193, 0.08);
    color: var(--fbla-purple);
}

.event-resource-card {
    scroll-margin-top: 110px;
}

.secret-page-section {
    background:
        radial-gradient(circle at top right, rgba(111, 66, 193, 0.08), transparent 32%),
        radial-gradient(circle at bottom left, rgba(74, 144, 226, 0.07), transparent 30%),
        #f7f8fc;
    min-height: 100vh;
}

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

.secret-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.14);
    color: #4c1d95;
    font-weight: 900;
    white-space: nowrap;
}

.secret-hero-badge i {
    font-size: 1.15rem;
}

.secret-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.secret-stat-card,
.secret-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.secret-stat-card {
    padding: 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.secret-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.13), rgba(74, 144, 226, 0.14));
    color: var(--fbla-purple);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.secret-stat-card span {
    color: #687083;
    font-weight: 800;
    font-size: 0.86rem;
}

.secret-stat-card strong {
    color: #17112f;
    font-weight: 950;
    font-size: 2rem;
    line-height: 1;
}

.secret-stat-card small {
    color: #8a92a6;
    font-weight: 700;
}

.secret-card {
    padding: 1.25rem;
}

.secret-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.secret-card-header h2 {
    color: #17112f;
    font-size: 1.35rem;
    font-weight: 950;
    margin: 0;
}

.secret-tool-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.secret-tool-card {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 18px;
    background: #fbfbfe;
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: #241044;
    text-decoration: none;
    transition: 0.2s ease;
}

.secret-tool-card:hover {
    transform: translateY(-3px);
    border-color: rgba(111, 66, 193, 0.22);
    box-shadow: 0 16px 35px rgba(111, 66, 193, 0.08);
    color: var(--fbla-purple);
}

.secret-tool-card i {
    font-size: 1.45rem;
    color: var(--fbla-purple);
}

.secret-tool-card span {
    font-weight: 950;
}

.secret-tool-card small {
    color: #7b8190;
    font-weight: 650;
    line-height: 1.45;
}

.secret-list,
.secret-activity-list {
    display: grid;
    gap: 0.7rem;
}

.secret-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: #fbfbfe;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.secret-list-item div {
    display: grid;
    gap: 0.15rem;
}

.secret-list-item strong {
    color: #241044;
    font-weight: 900;
}

.secret-list-item span,
.secret-list-item small {
    color: #7b8190;
    font-weight: 650;
    font-size: 0.85rem;
}

.secret-list-item b {
    color: var(--fbla-purple);
    font-size: 1.25rem;
    font-weight: 950;
}

.secret-health-box {
    display: grid;
    gap: 0.75rem;
}

.secret-health-box > div {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #fbfbfe;
}

.secret-health-box i {
    margin-top: 0.15rem;
    font-size: 1.15rem;
}

.secret-health-box .good i {
    color: #16a34a;
}

.secret-health-box .warn i {
    color: #f59e0b;
}

.secret-health-box strong {
    color: #241044;
    font-weight: 900;
    display: block;
}

.secret-health-box span {
    color: #7b8190;
    font-weight: 650;
    font-size: 0.88rem;
}

.secret-mini-warning {
    display: grid;
    gap: 0.4rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.18);
}

.secret-mini-warning strong {
    color: #78350f;
}

.secret-mini-warning span {
    color: #7c4a03;
    font-size: 0.86rem;
    font-weight: 750;
}

.secret-activity-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: #fbfbfe;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.secret-activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(111, 66, 193, 0.1);
    color: var(--fbla-purple);
}

.secret-activity-item strong {
    color: #241044;
    font-weight: 900;
    display: block;
}

.secret-activity-item span {
    color: #7b8190;
    font-weight: 650;
    font-size: 0.86rem;
    display: block;
    margin-top: 0.15rem;
}

.secret-activity-item small {
    color: #9ca3af;
    font-weight: 700;
    display: block;
    margin-top: 0.2rem;
}

.secret-table {
    margin-bottom: 0;
}

.secret-table th {
    color: #241044;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.secret-table td {
    color: #5d6475;
    font-weight: 650;
}

.secret-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 900;
}

.secret-pill.active {
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
}

.secret-pill.inactive {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.secret-pill.special {
    background: rgba(111, 66, 193, 0.11);
    color: var(--fbla-purple);
}

.secret-empty-small {
    padding: 1rem;
    border-radius: 16px;
    background: #fbfbfe;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    color: #7b8190;
    font-weight: 750;
    text-align: center;
}

@media (max-width: 1200px) {
    .secret-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .secret-tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .secret-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .secret-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .secret-stat-grid,
    .secret-tool-grid {
        grid-template-columns: 1fr;
    }
}

.secret-pill.log-create {
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
}

.secret-pill.log-update {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.secret-pill.log-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
}

.secret-pill.log-approve {
    background: rgba(111, 66, 193, 0.11);
    color: var(--fbla-purple);
}

.secret-pill.log-deactivate {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.secret-pill.log-login {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
}

.secret-pill.log-test {
    background: rgba(100, 116, 139, 0.12);
    color: #475569;
}

/* =========================================================
   FUTURE LEADERS STUDY HUB — HOMEPAGE REDESIGN
   All homepage classes use the fh- prefix to avoid conflicts.
   Single consolidated homepage block. Do not duplicate it.
========================================================= */

.fh-home {
    overflow: hidden;
    color: var(--fh-text);
    background: var(--fh-white);
}

.fh-home *,
.fh-home *::before,
.fh-home *::after {
    box-sizing: border-box;
}

.fh-home a {
    text-decoration: none;
}

/* Reveal animation */
.fh-home [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fh-home [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shared typography */
.fh-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: var(--fh-purple);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.fh-kicker > span {
    width: 28px;
    height: 1px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, var(--fh-purple), transparent);
}

.fh-kicker-dark {
    color: var(--fh-muted);
}

.fh-kicker-dark > span {
    background: linear-gradient(90deg, var(--fh-purple), transparent);
}

.fh-section {
    position: relative;
    padding: 7rem 0;
}

.fh-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 3rem;
    margin-bottom: 3.4rem;
}

.fh-section-heading h2,
.fh-resources-intro h2 {
    margin: 0;
    max-width: 760px;
    color: var(--fh-text);
    font-size: clamp(2.55rem, 5vw, 5rem);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.fh-section-heading > p,
.fh-resources-intro > p {
    margin: 0;
    color: var(--fh-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

/* Buttons */
.fh-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid transparent;
    border-radius: 15px;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 780;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fh-btn:hover {
    transform: translateY(-2px);
}

.fh-btn-primary {
    color: var(--fh-white);
    background: linear-gradient(135deg, var(--fh-purple), var(--fh-purple-dark));
    box-shadow: 0 12px 32px rgba(var(--fh-purple-rgb), 0.24);
}

.fh-btn-primary:hover {
    color: var(--fh-white);
    box-shadow: 0 18px 42px rgba(var(--fh-purple-rgb), 0.34);
}

.fh-btn-secondary {
    color: var(--fh-purple-dark);
    background: var(--fh-white);
    border-color: var(--fh-line);
}

.fh-btn-secondary:hover {
    color: var(--fh-white);
    background: var(--fh-purple-dark);
    border-color: var(--fh-purple-dark);
}

.fh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--fh-purple);
    font-size: 0.96rem;
    font-weight: 800;
}

.fh-text-link i,
.fh-resource-link i,
.fh-stat-action a i {
    transition: transform 0.2s ease;
}

.fh-text-link:hover i,
.fh-resource-card:hover .fh-resource-link i,
.fh-stat-action a:hover i {
    transform: translateX(4px);
}

.fh-text-link-light {
    color: var(--fh-white);
}

/* Hero */
.fh-hero {
    min-height: 860px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7.5rem 0 6.5rem;
    color: var(--fh-text);
    background:
        radial-gradient(circle at 18% 18%, rgba(var(--fh-purple-rgb), 0.1), transparent 30%),
        radial-gradient(circle at 82% 62%, rgba(var(--fh-purple-rgb), 0.08), transparent 32%),
        linear-gradient(122deg, var(--fh-white) 0%, var(--fh-white) 48%, var(--fh-surface) 100%);
}

.fh-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(var(--fh-purple-rgb), 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--fh-purple-rgb), 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.fh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(var(--fh-purple-rgb), 0.68) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(var(--fh-purple-rgb), 0.48) 0 1px, transparent 1.5px);
    background-position: 12% 21%, 83% 15%;
    background-size: 235px 235px, 310px 310px;
    opacity: 0.35;
}

.fh-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.fh-glow-one {
    width: 470px;
    height: 470px;
    top: 9%;
    right: -8%;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.14);
    box-shadow: 0 0 140px rgba(var(--fh-purple-rgb), 0.05) inset;
}

.fh-glow-two {
    width: 320px;
    height: 320px;
    bottom: -10%;
    left: 13%;
    background: rgba(var(--fh-purple-rgb), 0.04);
    filter: blur(50px);
}

.fh-hero-container {
    position: relative;
    z-index: 3;
}

.fh-hero-copy {
    max-width: 670px;
}

.fh-status-pill {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.22);
    border-radius: 999px;
    color: var(--fh-purple-dark);
    background: rgba(var(--fh-purple-rgb), 0.08);
    font-size: 0.8rem;
    font-weight: 760;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fh-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fh-purple);
    box-shadow: 0 0 0 6px rgba(var(--fh-purple-rgb), 0.08), 0 0 16px rgba(var(--fh-purple-rgb), 0.8);
}

.fh-hero-title {
    margin: 0;
    max-width: 720px;
    color: var(--fh-text);
    font-size: clamp(3.8rem, 7vw, 6.9rem);
    font-weight: 790;
    letter-spacing: -0.075em;
    line-height: 0.89;
}

.fh-hero-title span {
    display: block;
    margin-top: 0.15em;
    color: transparent;
    background: linear-gradient(95deg, var(--fh-purple) 5%, #9333ea 52%, var(--fh-purple-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.fh-hero-text {
    max-width: 610px;
    margin: 1.65rem 0 0;
    color: var(--fh-muted);
    font-size: clamp(1.04rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.fh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.fh-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    color: var(--fh-muted);
    font-size: 0.84rem;
    font-weight: 650;
}

.fh-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.fh-hero-meta i {
    color: var(--fh-purple);
}

/* Workspace visual */
.fh-workspace-wrap {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fh-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.fh-orbit-one {
    width: 600px;
    height: 600px;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.14);
}

.fh-orbit-two {
    width: 455px;
    height: 455px;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.12);
}

.fh-workspace {
    width: min(100%, 610px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--fh-line);
    border-radius: 27px;
    background: var(--fh-white);
    box-shadow: var(--fh-shadow);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.fh-window-bar {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.1rem;
    border-bottom: 1px solid var(--fh-line);
    color: var(--fh-muted);
    background: var(--fh-surface);
}

.fh-window-dots {
    display: flex;
    gap: 0.38rem;
}

.fh-window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--fh-purple-light);
}

.fh-window-dots span:nth-child(2) {
    background: var(--fh-purple);
}

.fh-window-dots span:nth-child(3) {
    background: var(--fh-purple-dark);
}

.fh-window-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.77rem;
    font-weight: 720;
}

.fh-live-badge {
    margin-left: auto;
    padding: 0.25rem 0.48rem;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.2);
    border-radius: 999px;
    color: var(--fh-purple);
    background: rgba(var(--fh-purple-rgb), 0.07);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.fh-workspace-body {
    padding: 1.25rem;
}

.fh-event-overview {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.14);
    border-radius: 19px;
    background: var(--fh-white);
}

.fh-event-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.18);
    border-radius: 16px;
    color: var(--fh-purple);
    background: linear-gradient(135deg, rgba(var(--fh-purple-rgb), 0.17), rgba(var(--fh-purple-rgb), 0.1));
    font-size: 1.35rem;
}

.fh-panel-label {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--fh-muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fh-event-overview h2 {
    margin: 0;
    color: var(--fh-text);
    font-size: 1rem;
    font-weight: 760;
}

.fh-event-overview p {
    margin: 0.25rem 0 0;
    color: var(--fh-muted);
    font-size: 0.72rem;
}

.fh-event-overview > a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.14);
    border-radius: 11px;
    color: var(--fh-purple);
    background: var(--fh-surface);
    transition: 0.2s ease;
}

.fh-event-overview > a:hover {
    color: var(--fh-purple);
    border-color: rgba(var(--fh-purple-rgb), 0.28);
}

.fh-dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.9rem;
    margin-top: 0.9rem;
}

.fh-plan-card,
.fh-mini-panel,
.fh-next-card {
    border: 1px solid var(--fh-line);
    background: var(--fh-white);
}

.fh-plan-card {
    padding: 1rem;
    border-radius: 19px;
}

.fh-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.fh-card-heading h3 {
    margin: 0;
    color: var(--fh-text);
    font-size: 0.94rem;
    font-weight: 760;
}

.fh-plan-percent {
    color: var(--fh-purple);
    font-size: 0.82rem;
    font-weight: 850;
}

.fh-progress-track {
    height: 6px;
    overflow: hidden;
    margin: 0.85rem 0 1rem;
    border-radius: 999px;
    background: rgba(var(--fh-purple-rgb), 0.16);
}

.fh-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fh-purple), var(--fh-purple-light));
    box-shadow: 0 0 16px rgba(var(--fh-purple-rgb), 0.3);
}

.fh-phase-list {
    display: grid;
    gap: 0.55rem;
}

.fh-phase {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.65rem;
    padding: 0.58rem 0.65rem;
    border-radius: 12px;
}

.fh-phase > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.13);
    border-radius: 9px;
    color: var(--fh-muted);
    background: var(--fh-surface);
    font-size: 0.62rem;
    font-weight: 850;
}

.fh-phase strong,
.fh-phase small {
    display: block;
}

.fh-phase strong {
    color: var(--fh-text);
    font-size: 0.76rem;
}

.fh-phase small {
    margin-top: 0.08rem;
    color: var(--fh-muted);
    font-size: 0.62rem;
}

.fh-phase.complete > span {
    color: var(--fh-white);
    border-color: transparent;
    background: var(--fh-purple);
}

.fh-phase.active {
    background: linear-gradient(90deg, rgba(var(--fh-purple-rgb), 0.09), transparent);
}

.fh-phase.active > span {
    color: var(--fh-purple);
    border-color: rgba(var(--fh-purple-rgb), 0.25);
}

.fh-phase.active strong {
    color: var(--fh-text);
}

.fh-side-stack {
    display: grid;
    gap: 0.75rem;
}

.fh-mini-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.74rem;
    border-radius: 15px;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fh-mini-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--fh-purple-rgb), 0.22);
    background: rgba(var(--fh-purple-rgb), 0.08);
}

.fh-mini-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 0.85rem;
}

.fh-mini-icon.mint,
.fh-mini-icon.blue {
    color: var(--fh-purple);
    background: var(--fh-purple-soft);
}

.fh-mini-panel span,
.fh-mini-panel strong {
    display: block;
}

.fh-mini-panel span {
    color: var(--fh-muted);
    font-size: 0.56rem;
}

.fh-mini-panel strong {
    margin-top: 0.08rem;
    color: var(--fh-text);
    font-size: 0.68rem;
}

.fh-mini-panel > i {
    color: var(--fh-muted);
    font-size: 0.72rem;
}

.fh-next-card {
    padding: 0.9rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--fh-surface), var(--fh-purple-soft));
}

.fh-next-card strong {
    display: block;
    color: var(--fh-text);
    font-size: 0.77rem;
}

.fh-next-card p {
    margin: 0.3rem 0 0.75rem;
    color: var(--fh-muted);
    font-size: 0.62rem;
    line-height: 1.45;
}

.fh-next-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--fh-purple);
    font-size: 0.64rem;
    font-weight: 800;
}

.fh-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--fh-line);
    border-radius: 16px;
    color: var(--fh-text);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--fh-shadow);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.fh-floating-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--fh-purple-rgb), 0.28);
}

.fh-floating-card strong,
.fh-floating-card small {
    display: block;
}

.fh-floating-card strong {
    color: var(--fh-text);
    font-size: 0.72rem;
}

.fh-floating-card small {
    margin-top: 0.1rem;
    color: var(--fh-muted);
    font-size: 0.58rem;
}

.fh-floating-nlc {
    top: 4%;
    right: -3%;
}

.fh-floating-events {
    left: -4%;
    bottom: 7%;
}

.fh-floating-number,
.fh-floating-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--fh-white);
    background: linear-gradient(135deg, var(--fh-purple), var(--fh-purple-light));
    font-size: 0.85rem;
    font-weight: 900;
}

.fh-scroll-cue {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--fh-muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.fh-scroll-cue i {
    color: var(--fh-purple);
    animation: fhBounce 1.8s ease-in-out infinite;
}

@keyframes fhBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Stats */
.fh-stat-strip {
    position: relative;
    z-index: 5;
    margin-top: -1px;
    background: var(--fh-white);
    border-top: 1px solid rgba(var(--fh-purple-rgb), 0.13);
}

.fh-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.25fr;
    border-left: 1px solid var(--fh-line);
}

.fh-stat-item {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem 1.7rem;
    border-right: 1px solid var(--fh-line);
}

.fh-stat-item strong {
    color: var(--fh-text);
    font-size: 2rem;
    font-weight: 820;
    letter-spacing: -0.045em;
}

.fh-stat-item > span {
    margin-top: 0.25rem;
    color: var(--fh-muted);
    font-size: 0.78rem;
}

.fh-stat-action {
    background: linear-gradient(135deg, rgba(var(--fh-purple-rgb), 0.08), rgba(var(--fh-purple-rgb), 0.06));
}

.fh-stat-action > span {
    margin: 0 0 0.4rem;
    color: var(--fh-muted);
}

.fh-stat-action a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--fh-purple);
    font-size: 0.9rem;
    font-weight: 800;
}

/* Path cards */
.fh-path-section {
    background:
        radial-gradient(circle at 90% 14%, rgba(var(--fh-purple-rgb), 0.11), transparent 25%),
        var(--fh-surface);
}

.fh-path-card {
    min-height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.75rem;
    border: 1px solid var(--fh-line);
    border-radius: 28px;
    color: var(--fh-text);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 34px rgba(var(--fh-deep-rgb), 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fh-path-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(var(--fh-purple-rgb), 0.035), 0 0 0 70px rgba(var(--fh-purple-rgb), 0.02);
    transition: transform 0.35s ease;
}

.fh-path-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--fh-purple-rgb), 0.3);
    box-shadow: 0 28px 65px rgba(var(--fh-deep-rgb), 0.12);
}

.fh-path-card:hover::after {
    transform: scale(1.15);
}

.fh-path-featured {
    color: var(--fh-white);
    border-color: rgba(var(--fh-purple-rgb), 0.13);
    background:
        radial-gradient(circle at 84% 88%, rgba(var(--fh-purple-rgb), 0.18), transparent 30%),
        linear-gradient(145deg, var(--fh-purple-dark), var(--fh-purple));
    box-shadow: 0 26px 60px rgba(var(--fh-deep-rgb), 0.22);
}

.fh-path-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.fh-path-index {
    color: var(--fh-muted);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.fh-path-featured .fh-path-index {
    color: rgba(255, 255, 255, 0.82);
}

.fh-path-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--fh-line);
    border-radius: 13px;
    color: var(--fh-muted);
    background: rgba(255, 255, 255, 0.75);
    transition: 0.2s ease;
}

.fh-path-card:hover .fh-path-arrow {
    color: var(--fh-white);
    border-color: transparent;
    background: var(--fh-purple);
    transform: rotate(5deg);
}

.fh-path-featured .fh-path-arrow {
    color: var(--fh-white);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.fh-path-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    margin: 3.4rem 0 1.5rem;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.15);
    border-radius: 19px;
    color: var(--fh-purple);
    background: linear-gradient(135deg, rgba(var(--fh-purple-rgb), 0.16), rgba(var(--fh-purple-rgb), 0.12));
    font-size: 1.55rem;
}

.fh-path-featured .fh-path-icon {
    color: var(--fh-white);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.fh-path-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: inherit;
    font-size: 1.65rem;
    font-weight: 790;
    letter-spacing: -0.035em;
}

.fh-path-card p {
    position: relative;
    z-index: 2;
    margin: 0.8rem 0 1.3rem;
    color: var(--fh-muted);
    line-height: 1.68;
}

.fh-path-featured p {
    color: rgba(255, 255, 255, 0.8);
}

.fh-path-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.fh-path-tags span {
    padding: 0.42rem 0.65rem;
    border: 1px solid var(--fh-line);
    border-radius: 999px;
    color: var(--fh-muted);
    background: var(--fh-surface);
    font-size: 0.68rem;
    font-weight: 730;
}

.fh-path-featured .fh-path-tags span {
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

/* Preparation system */
.fh-system-section {
    color: var(--fh-text);
    background:
        radial-gradient(circle at 12% 72%, rgba(var(--fh-purple-rgb), 0.08), transparent 28%),
        linear-gradient(135deg, var(--fh-white), var(--fh-surface) 72%, var(--fh-purple-soft));
}

.fh-system-shell {
    position: relative;
}

.fh-system-shell::before {
    content: "";
    position: absolute;
    inset: -2rem -5vw;
    pointer-events: none;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.1);
    border-radius: 44px;
}

.fh-system-section h2 {
    margin: 0;
    max-width: 560px;
    color: var(--fh-text);
    font-size: clamp(2.65rem, 5vw, 5rem);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.fh-system-copy {
    max-width: 520px;
    margin: 1.4rem 0 1.6rem;
    color: var(--fh-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.fh-roadmap {
    position: relative;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--fh-line);
    border-radius: 28px;
    background: var(--fh-white);
    box-shadow: var(--fh-shadow);
}

.fh-roadmap-line {
    width: 1px;
    position: absolute;
    top: 53px;
    bottom: 53px;
    left: 73px;
    background: linear-gradient(to bottom, var(--fh-purple), rgba(var(--fh-purple-rgb), 0.18));
}

.fh-roadmap-step {
    display: grid;
    grid-template-columns: 38px 50px 1fr;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 18px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fh-roadmap-step:hover {
    transform: translateX(4px);
    border-color: rgba(var(--fh-purple-rgb), 0.13);
    background: var(--fh-surface);
}

.fh-roadmap-number {
    color: var(--fh-muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.fh-roadmap-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.18);
    border-radius: 15px;
    color: var(--fh-purple);
    background: var(--fh-purple-soft);
    font-size: 1.05rem;
}

.fh-roadmap-step small {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--fh-purple);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fh-roadmap-step h3 {
    margin: 0;
    color: var(--fh-text);
    font-size: 1rem;
    font-weight: 760;
}

.fh-roadmap-step p {
    margin: 0.28rem 0 0;
    color: var(--fh-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

/* Countdown */
.fh-countdown-section {
    background: var(--fh-surface);
}

.fh-countdown-shell {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4.3rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 36px;
    color: var(--fh-white);
    background:
        radial-gradient(circle at 78% 28%, rgba(var(--fh-purple-rgb), 0.16), transparent 28%),
        radial-gradient(circle at 12% 90%, rgba(var(--fh-purple-rgb), 0.1), transparent 30%),
        linear-gradient(135deg, var(--fh-purple-deep), var(--fh-purple));
    box-shadow: 0 30px 80px rgba(var(--fh-deep-rgb), 0.16);
}

.fh-countdown-shell::after {
    content: "27";
    position: absolute;
    right: -1.5rem;
    bottom: -4rem;
    color: rgba(255, 255, 255, 0.025);
    font-size: 18rem;
    font-weight: 900;
    letter-spacing: -0.1em;
    line-height: 1;
}

.fh-countdown-copy,
.fh-countdown-content {
    position: relative;
    z-index: 2;
}

.fh-countdown-copy h2 {
    margin: 0;
    color: var(--fh-white);
    font-size: clamp(2.7rem, 5vw, 5.1rem);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.fh-countdown-copy > p:not(.fh-kicker) {
    margin: 1rem 0 1.35rem;
    color: rgba(255, 255, 255, 0.78);
}

.fh-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
}

.fh-countdown-unit {
    min-width: 0;
    padding: 1.35rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.fh-countdown-unit strong,
.fh-countdown-unit span {
    display: block;
}

.fh-countdown-unit strong {
    color: var(--fh-white);
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    font-variant-numeric: tabular-nums;
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 1;
}

.fh-countdown-unit span {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fh-countdown-progress {
    margin-top: 1.2rem;
}

.fh-countdown-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
}

.fh-countdown-progress-top strong {
    color: var(--fh-white);
}

.fh-countdown-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.fh-countdown-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--fh-white), var(--fh-purple-light));
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.24);
    transition: width 0.6s ease;
}

/* Resources */
.fh-resources-section {
    background:
        linear-gradient(rgba(var(--fh-deep-rgb), 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--fh-deep-rgb), 0.025) 1px, transparent 1px),
        var(--fh-white);
    background-size: 42px 42px;
}

.fh-resources-intro {
    max-width: 850px;
    margin-bottom: 3.2rem;
}

.fh-resources-intro > p {
    max-width: 650px;
    margin-top: 1.2rem;
}

.fh-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.fh-resource-card {
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid var(--fh-line);
    border-radius: 25px;
    color: var(--fh-text);
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fh-resource-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -95px;
    top: -95px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--fh-purple-rgb), 0.18), transparent 68%);
    transition: transform 0.3s ease;
}

.fh-resource-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--fh-purple-rgb), 0.28);
    box-shadow: 0 22px 55px rgba(var(--fh-deep-rgb), 0.1);
}

.fh-resource-card:hover::after {
    transform: scale(1.35);
}

.fh-resource-large {
    grid-column: span 2;
    color: var(--fh-white);
    background:
        radial-gradient(circle at 82% 76%, rgba(var(--fh-purple-rgb), 0.16), transparent 32%),
        linear-gradient(135deg, var(--fh-purple-dark), var(--fh-purple));
    border-color: rgba(var(--fh-purple-rgb), 0.13);
}

.fh-resource-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 2.4rem;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.14);
    border-radius: 16px;
    color: var(--fh-purple);
    background: linear-gradient(135deg, rgba(var(--fh-purple-rgb), 0.15), rgba(var(--fh-purple-rgb), 0.11));
    font-size: 1.25rem;
}

.fh-resource-large .fh-resource-icon {
    color: var(--fh-white);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.fh-resource-label {
    position: relative;
    z-index: 2;
    color: var(--fh-purple);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fh-resource-large .fh-resource-label {
    color: var(--fh-white);
}

.fh-resource-card h3 {
    position: relative;
    z-index: 2;
    margin: 0.5rem 0 0;
    color: inherit;
    font-size: 1.35rem;
    font-weight: 790;
    letter-spacing: -0.03em;
}

.fh-resource-large h3 {
    max-width: 520px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.fh-resource-card p {
    position: relative;
    z-index: 2;
    margin: 0.7rem 0 1.25rem;
    color: var(--fh-muted);
    line-height: 1.65;
}

.fh-resource-large p {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.78);
}

.fh-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    z-index: 2;
    margin-top: auto;
    color: var(--fh-purple);
    font-size: 0.82rem;
    font-weight: 800;
}

.fh-resource-large .fh-resource-link {
    color: var(--fh-white);
}

/* Final CTA */
.fh-final-section {
    padding: 1rem 0 7rem;
    background: var(--fh-white);
}

.fh-final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    position: relative;
    padding: clamp(2rem, 5vw, 4.2rem);
    border: 1px solid var(--fh-line);
    border-radius: 34px;
    background:
        radial-gradient(circle at 92% 18%, rgba(var(--fh-purple-rgb), 0.2), transparent 25%),
        radial-gradient(circle at 7% 95%, rgba(var(--fh-purple-rgb), 0.13), transparent 28%),
        var(--fh-surface);
}

.fh-final-card::before {
    content: "";
    position: absolute;
    width: 370px;
    height: 370px;
    right: -150px;
    bottom: -180px;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(var(--fh-purple-rgb), 0.03), 0 0 0 90px rgba(var(--fh-purple-rgb), 0.018);
}

.fh-final-card > * {
    position: relative;
    z-index: 2;
}

.fh-final-pill {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.43rem 0.68rem;
    border: 1px solid rgba(var(--fh-purple-rgb), 0.18);
    border-radius: 999px;
    color: var(--fh-purple);
    background: rgba(var(--fh-purple-rgb), 0.1);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fh-final-card h2 {
    margin: 0;
    color: var(--fh-text);
    font-size: clamp(2.45rem, 5vw, 4.7rem);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.fh-final-card p {
    margin: 0.8rem 0 0;
    color: var(--fh-muted);
    font-size: 1.02rem;
}

.fh-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.fh-final-actions .fh-btn-secondary {
    color: var(--fh-purple-dark);
    border-color: var(--fh-line);
    background: var(--fh-white);
}

.fh-final-actions .fh-btn-secondary:hover {
    color: var(--fh-white);
    border-color: var(--fh-purple-dark);
    background: var(--fh-purple-dark);
}


/* Countdown-specific white text */
.fh-countdown-shell .fh-kicker,
.fh-countdown-shell .fh-text-link-light {
    color: var(--fh-white);
}

.fh-countdown-shell .fh-kicker > span {
    background: linear-gradient(90deg, var(--fh-white), transparent);
}

/* Responsive */
@media (max-width: 1199px) {
    .fh-hero {
        min-height: 780px;
    }

    .fh-workspace-wrap {
        min-height: 560px;
    }

    .fh-floating-nlc {
        right: 0;
    }

    .fh-floating-events {
        left: 0;
    }
}

@media (max-width: 991px) {
    .fh-section {
        padding: 5rem 0;
    }

    .fh-hero {
        min-height: auto;
        padding: 6rem 0 5rem;
    }

    .fh-hero-copy {
        max-width: 760px;
    }

    .fh-hero-title {
        max-width: 800px;
    }

    .fh-workspace-wrap {
        min-height: 600px;
        margin-top: 1.5rem;
    }

    .fh-workspace {
        transform: none;
    }

    .fh-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fh-section-heading {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .fh-section-heading > p {
        max-width: 700px;
    }

    .fh-system-shell::before {
        inset: -1.4rem;
    }

    .fh-countdown-shell {
        grid-template-columns: 1fr;
    }

    .fh-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fh-resource-large {
        grid-column: span 2;
    }

    .fh-final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .fh-final-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .fh-home [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .fh-hero {
        padding-top: 4.7rem;
    }

    .fh-hero-title {
        font-size: clamp(3.25rem, 16vw, 5.2rem);
    }

    .fh-hero-actions .fh-btn {
        flex: 1 1 100%;
    }

    .fh-workspace-wrap {
        min-height: auto;
        display: block;
        margin-top: 2.5rem;
    }

    .fh-orbit,
    .fh-floating-card,
    .fh-scroll-cue {
        display: none;
    }

    .fh-workspace {
        width: 100%;
        border-radius: 22px;
    }

    .fh-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .fh-stat-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .fh-stat-item {
        min-height: 98px;
        border-right: 0;
        border-bottom: 1px solid var(--fh-line);
    }

    .fh-stat-item:last-child {
        border-bottom: 0;
    }

    .fh-path-card {
        min-height: 360px;
    }

    .fh-roadmap-line {
        left: 60px;
    }

    .fh-roadmap-step {
        grid-template-columns: 34px 44px 1fr;
        gap: 0.65rem;
        padding: 0.9rem 0.55rem;
    }

    .fh-roadmap-icon {
        width: 44px;
        height: 44px;
    }

    .fh-countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fh-resource-grid {
        grid-template-columns: 1fr;
    }

    .fh-resource-large {
        grid-column: span 1;
    }

    .fh-resource-card {
        min-height: 280px;
    }

    .fh-final-actions,
    .fh-final-actions .fh-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fh-section {
        padding: 4.2rem 0;
    }

    .fh-status-pill {
        font-size: 0.72rem;
    }

    .fh-hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .fh-workspace-body {
        padding: 0.85rem;
    }

    .fh-event-overview {
        grid-template-columns: auto 1fr;
    }

    .fh-event-overview > a {
        display: none;
    }

    .fh-event-overview h2 {
        font-size: 0.88rem;
    }

    .fh-countdown-shell,
    .fh-final-card {
        border-radius: 25px;
    }

    .fh-countdown-unit {
        padding: 1rem 0.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fh-home *,
    .fh-home *::before,
    .fh-home *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fh-home [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
