  /* =========================================================
   REGENESIS
   MAIN GLOBAL STYLESHEET
   ========================================================= */


/* =========================================================
   01. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-height: 100vh;
    background: #07080c;
    color: #f4f5f7;
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   02. GLOBAL VARIABLES
   ========================================================= */

:root {

    /* Background */
    --bg-main: #07080c;
    --bg-secondary: #0b0d13;
    --bg-card: #10131b;
    --bg-card-hover: #151923;
    --bg-elevated: #181c27;

    /* Text */
    --text-primary: #f5f7fa;
    --text-secondary: #a9afbd;
    --text-muted: #707786;

    /* Brand */
    --brand: #7c5cff;
    --brand-light: #9b83ff;
    --brand-dark: #5b3fe0;

    /* Accent */
    --accent: #00e5ff;
    --accent-green: #00f5a0;
    --accent-pink: #ff4ecd;
    --accent-orange: #ff9d42;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.13);

    /* Effects */
    --shadow-small:
        0 8px 25px rgba(0, 0, 0, 0.25);

    --shadow-medium:
        0 15px 45px rgba(0, 0, 0, 0.35);

    --shadow-large:
        0 25px 80px rgba(0, 0, 0, 0.55);

    --glow-brand:
        0 0 35px rgba(124, 92, 255, 0.25);

    --glow-accent:
        0 0 35px rgba(0, 229, 255, 0.2);

    /* Layout */
    --container: 1400px;
    --header-height: 78px;

    /* Radius */
    --radius-small: 10px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-round: 999px;

    /* Transition */
    --transition-fast: 0.2s ease;
    --transition: 0.35s ease;
}


/* =========================================================
   03. CONTAINER
   ========================================================= */

.section-container,
.header-container,
.footer-container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================================
   04. PAGE LOADER
   ========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 18px;

    background: #05060a;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            var(--brand),
            var(--accent)
        );

    color: white;

    font-size: 34px;
    font-weight: 900;

    box-shadow: var(--glow-brand);
}

.loader-spinner,
.loading-spinner {
    width: 25px;
    height: 25px;

    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--brand);

    border-radius: 50%;
}


/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: var(--header-height);

    z-index: 1000;

    background:
        rgba(7, 8, 12, 0.72);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background:
        rgba(7, 8, 12, 0.94);

    border-bottom-color: var(--border);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.25);
}

.header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   06. BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.brand-logo {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--brand),
            var(--accent)
        );

    box-shadow:
        0 0 25px rgba(124,92,255,0.22);

    position: relative;
    overflow: hidden;
}

.brand-logo::after {
    content: "";

    position: absolute;
    inset: 1px;

    border-radius: 11px;

    background: rgba(7,8,12,0.18);
}

.brand-logo span {
    position: relative;
    z-index: 2;

    font-size: 22px;
    font-weight: 950;

    color: white;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.brand-text small {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.4px;
}


/* =========================================================
   07. MAIN NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-left: auto;
}

.nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 12px;

    border-radius: 10px;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 650;

    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.nav-link i {
    font-size: 13px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.nav-link.active {
    color: white;
    background: rgba(124,92,255,0.13);
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 18px;
    height: 2px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: var(--brand);

    box-shadow:
        0 0 12px var(--brand);
}


/* =========================================================
   08. HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}

.header-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-radius: 11px;

    background: transparent;

    color: var(--text-secondary);

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.header-icon:hover {
    color: white;
    background: rgba(255,255,255,0.07);
    transform: translateY(-1px);
}

.notification-button {
    position: relative;
}

.notification-count {
    position: absolute;

    top: 3px;
    right: 3px;

    min-width: 16px;
    height: 16px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #ff3b6b;
    color: white;

    font-size: 9px;
    font-weight: 800;

    border: 2px solid var(--bg-main);
}


/* =========================================================
   09. LOGIN BUTTON
   ========================================================= */

.login-button {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 16px;

    border: 1px solid var(--border-light);
    border-radius: var(--radius-round);

    color: white;

    font-size: 12px;
    font-weight: 750;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.login-button:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(124,92,255,0.5);
    transform: translateY(-1px);
}


/* =========================================================
   10. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 40px;
    height: 40px;

    border-radius: 11px;

    background: rgba(255,255,255,0.05);
    color: white;
}


/* =========================================================
   11. SEARCH OVERLAY
   ========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    padding-top: 110px;

    background:
        rgba(2,3,7,0.82);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: min(
        calc(100% - 40px),
        760px
    );

    position: relative;

    padding: 25px;

    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);

    background:
        rgba(15,17,24,0.96);

    box-shadow: var(--shadow-large);

    transform: translateY(-20px);

    transition:
        transform var(--transition);
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border-radius: 10px;

    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 17px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: rgba(255,255,255,0.035);
}

.search-input-wrapper i {
    color: var(--brand);
}

.search-input-wrapper input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;
    color: white;

    font-size: 15px;
}

.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.search-results {
    margin-top: 18px;
    min-height: 80px;
}

.search-placeholder {
    color: var(--text-muted);
    text-align: center;
    font-size: 13px;
}


/* =========================================================
   12. MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    position: fixed;

    top: 0;
    right: 0;

    width: min(330px, 88vw);
    height: 100vh;

    z-index: 4000;

    display: flex;
    flex-direction: column;

    background: #0a0c12;

    border-left: 1px solid var(--border);

    transform: translateX(100%);

    transition:
        transform 0.35s ease;

    box-shadow:
        -20px 0 60px rgba(0,0,0,0.4);
}

.mobile-navigation.active {
    transform: translateX(0);
}

.mobile-nav-header {
    height: var(--header-height);

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.mobile-nav-header button {
    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: rgba(255,255,255,0.05);

    color: white;
}

.mobile-navigation nav {
    flex: 1;

    padding: 20px;

    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px 15px;

    margin-bottom: 5px;

    border-radius: 12px;

    color: var(--text-secondary);

    font-size: 14px;
    font-weight: 650;

    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: white;
    background: rgba(124,92,255,0.13);
}

.mobile-nav-footer {
    padding: 20px;

    border-top: 1px solid var(--border);
}

.mobile-login,
.mobile-register {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 12px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 750;
}

.mobile-login {
    background: rgba(255,255,255,0.05);
    color: white;
}

.mobile-register {
    margin-top: 8px;

    background:
        linear-gradient(
            135deg,
            var(--brand),
            var(--brand-dark)
        );

    color: white;
}


/* =========================================================
   13. HERO
   ========================================================= */

.hero-section {
    min-height: 820px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: var(--header-height);
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(124,92,255,0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 25% 65%,
            rgba(0,229,255,0.09),
            transparent 28%
        ),
        linear-gradient(
            115deg,
            #07080c 10%,
            #0b0d14 55%,
            #0a0b11 100%
        );

    transform: scale(1.05);
}

.hero-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #07080c 0%,
            rgba(7,8,12,0.82) 35%,
            rgba(7,8,12,0.35) 75%,
            #07080c 100%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            transparent 0%,
            rgba(0,0,0,0.35) 100%
        );
}

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

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 12px;

    border: 1px solid rgba(124,92,255,0.3);
    border-radius: var(--radius-round);

    background: rgba(124,92,255,0.08);

    color: var(--brand-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent-green);

    box-shadow:
        0 0 12px var(--accent-green);
}

.hero-content h1 {
    margin-top: 25px;

    font-size:
        clamp(48px, 7vw, 92px);

    line-height: 0.98;

    font-weight: 950;

    letter-spacing: -4px;

    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            var(--brand-light),
            var(--accent)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-content > p {
    max-width: 620px;

    margin-top: 27px;

    color: var(--text-secondary);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   14. HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 20px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.primary-button {
    background:
        linear-gradient(
            135deg,
            var(--brand),
            var(--brand-dark)
        );

    color: white;

    box-shadow:
        0 10px 30px rgba(124,92,255,0.25);
}

.primary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 40px rgba(124,92,255,0.38);
}

.secondary-button {
    border: 1px solid var(--border-light);

    background: rgba(255,255,255,0.04);

    color: white;
}

.secondary-button:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,0.08);
}


/* =========================================================
   15. HERO STATS
   ========================================================= */

.hero-stats {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 55px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 25px;
    font-weight: 900;

    letter-spacing: -0.5px;
}

.hero-stat span {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 35px;

    background: var(--border-light);
}


/* =========================================================
   16. HERO SCROLL
   ========================================================= */

.hero-scroll {
    position: absolute;

    z-index: 3;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    color: var(--text-muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero-scroll i {
    font-size: 10px;
}


/* =========================================================
   17. SECTION BASE
   ========================================================= */

.explore-section,
.community-preview,
.events-preview {
    padding: 110px 0;
}

.explore-section {
    background: var(--bg-main);
}

.community-preview {
    background:
        linear-gradient(
            180deg,
            #090b10,
            #07080c
        );
}

.events-preview {
    background: #090b10;
}

.section-heading,
.community-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.section-label {
    display: block;

    margin-bottom: 9px;

    color: var(--brand-light);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 2.5px;
}

.section-heading h2,
.community-preview-header h2 {
    max-width: 700px;

    font-size:
        clamp(32px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;
}

.section-heading h2 span,
.community-preview-header h2 span {
    color: var(--brand-light);
}

.section-heading > p {
    max-width: 390px;

    color: var(--text-secondary);

    font-size: 14px;
}


/* =========================================================
   18. FEATURE GRID
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.feature-card {
    min-height: 310px;

    position: relative;

    display: flex;
    flex-direction: column;

    padding: 28px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.feature-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(124,92,255,0.22),
            transparent 70%
        );

    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(124,92,255,0.35);

    background: var(--bg-card-hover);

    box-shadow: var(--shadow-medium);
}

.feature-card:hover::before {
    transform: scale(1.4);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(124,92,255,0.1);

    color: var(--brand-light);

    font-size: 18px;
}

.feature-card-content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}

.feature-card-content > span {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 800;
}

.feature-card h3 {
    margin-top: 5px;

    font-size: 25px;
    font-weight: 900;
}

.feature-card p {
    max-width: 360px;

    margin-top: 7px;

    color: var(--text-secondary);

    font-size: 12px;
    line-height: 1.7;
}

.feature-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 17px;

    color: white;

    font-size: 11px;
    font-weight: 800;
}

.feature-card strong i {
    color: var(--brand-light);

    transition:
        transform var(--transition-fast);
}

.feature-card:hover strong i {
    transform: translateX(4px);
}


/* =========================================================
   19. FEATURE CARD ACCENTS
   ========================================================= */

.feature-anime .feature-icon {
    color: #a98cff;
}

.feature-manga .feature-icon {
    color: #ff7bc8;
}

.feature-games .feature-icon {
    color: #00e5ff;
}

.feature-community .feature-icon {
    color: #00f5a0;
}

.feature-cosplay .feature-icon {
    color: #ff9d42;
}

.feature-events .feature-icon {
    color: #ff5c8a;
}


/* =========================================================
   20. VIEW ALL BUTTON
   ========================================================= */

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: var(--text-secondary);

    font-size: 11px;
    font-weight: 750;

    white-space: nowrap;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.view-all-button:hover {
    color: white;

    background: rgba(255,255,255,0.05);

    border-color:
        rgba(124,92,255,0.4);
}


/* =========================================================
   21. COMMUNITY FEED
   ========================================================= */

.community-feed {
    min-height: 220px;
}

.feed-loading {
    min-height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 1px dashed var(--border-light);

    border-radius: var(--radius-large);

    color: var(--text-muted);

    font-size: 12px;
}

.loading-spinner {
    animation: loaderSpin 0.8s linear infinite;
}


/* =========================================================
   22. EVENTS GRID
   ========================================================= */

.events-grid {
    min-height: 220px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


/* =========================================================
   23. CTA
   ========================================================= */

.cta-section {
    min-height: 460px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(124,92,255,0.2),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #07080c,
            #0c0a14
        );
}

.cta-background::before,
.cta-background::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}

.cta-background::before {
    width: 350px;
    height: 350px;

    left: -150px;
    top: 50px;

    background:
        radial-gradient(
            circle,
            rgba(0,229,255,0.09),
            transparent 70%
        );
}

.cta-background::after {
    width: 400px;
    height: 400px;

    right: -180px;
    bottom: -150px;

    background:
        radial-gradient(
            circle,
            rgba(124,92,255,0.13),
            transparent 70%
        );
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size:
        clamp(40px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 950;
}

.cta-content h2 span {
    display: block;

    color: var(--brand-light);
}

.cta-content p {
    margin: 20px 0 28px;

    color: var(--text-secondary);

    font-size: 14px;
}

.cta-content .primary-button {
    display: inline-flex;
}


/* =========================================================
   24. FOOTER
   ========================================================= */

.site-footer {
    background: #05060a;

    border-top: 1px solid var(--border);
}

.footer-container {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-top: 75px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand > p {
    margin-top: 20px;

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 8px;

    color: white;

    font-size: 12px;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    width: fit-content;

    color: var(--text-muted);

    font-size: 12px;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer-column a:hover {
    color: white;
    transform: translateX(3px);
}


/* =========================================================
   25. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);

    font-size: 10px;
}

.footer-socials {
    display: flex;
    align-items: center;

    gap: 7px;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255,255,255,0.04);

    color: var(--text-muted);

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.footer-socials a:hover {
    color: white;

    background: rgba(124,92,255,0.15);

    transform: translateY(-2px);
}


/* =========================================================
   26. SELECTION
   ========================================================= */

::selection {
    background: rgba(124,92,255,0.5);
    color: white;
}


/* =========================================================
   27. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05060a;
}

::-webkit-scrollbar-thumb {
    background: #252936;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #34394a;
}


/* =========================================================
   28. FOCUS ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent);

    outline-offset: 3px;
}


/* =========================================================
   29. UTILITY
   ========================================================= */

[hidden] {
    display: none !important;
}


/* =========================================================
   30. BASIC RESPONSIVE FALLBACK
   ========================================================= */

@media (max-width: 1150px) {

    .main-navigation {
        gap: 0;
    }

    .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }

    .nav-link span {
        display: none;
    }

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

    .footer-container {
        grid-template-columns:
            2fr 1fr 1fr;
    }
}


/* =========================================================
   31. SMALL SCREENS
   ========================================================= */

@media (max-width: 800px) {

    .main-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-account {
        display: none;
    }

    .hero-section {
        min-height: 760px;
    }

    .hero-content h1 {
        letter-spacing: -2px;
    }

    .section-heading,
    .community-preview-header {
        align-items: flex-start;
        flex-direction: column;
    }

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


/* =========================================================
   32. EXTRA SMALL
   ========================================================= */

@media (max-width: 520px) {

    .section-container,
    .header-container,
    .footer-container,
    .footer-bottom,
    .hero-container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .brand-text small {
        display: none;
    }

    .header-icon {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-button {
        width: 36px;
        height: 36px;
    }

    .hero-section {
        min-height: 720px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-stats {
        gap: 15px;
        margin-top: 40px;
    }

    .hero-stat strong {
        font-size: 20px;
    }

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

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

    .explore-section,
    .community-preview,
    .events-preview {
        padding: 80px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content h2 {
        letter-spacing: -2px;
    }
}