/* ========================================
   HOMELEGACY RP - Dark Neon Premium Theme
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Gobold';
    src: url('../fonts/Gobold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Kai';
    src: url('../fonts/BebasKai.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors */
    --bg: #020305;
    --bg-elevated: #0a0a0f;
    --bg-tertiary: #0f1524;
    --bg-card: #0a0a0f;
    --bg-subtle: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --text: #ededed;
    --text-secondary: #9aa1b5;
    --text-tertiary: #6f7690;
    --accent: #f40552;
    --accent-strong: #d60448;
    --accent-light: rgba(244, 5, 82, 0.18);
    --accent-2: #0070f3;
    --accent-2-light: rgba(0, 112, 243, 0.18);
    --success: #10b981;
    --warning: #f5a623;
    --danger: #ef4444;
    --gradient-fivem: linear-gradient(135deg, #ffffff 0%, #9aa1b5 100%);

    /* Spacing */
    --nav-height: 70px;
    --section-padding: 110px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(244, 5, 82, 0.07), transparent 28%), radial-gradient(circle at 80% 0%, rgba(0, 112, 243, 0.08), transparent 30%), var(--bg);
    background-size: 120% 120%;
    animation: bgDrift 22s ease-in-out infinite alternate;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.floating-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   NAVBAR - Minimalist & Clean
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(5, 6, 10, 0.8);
    backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle::before,
.nav-toggle::after {
    content: '';
    position: relative;
}

.nav-toggle::before { top: -6px; }
.nav-toggle::after { top: 6px; }

.navbar.open .nav-toggle::before { transform: translateY(6px) rotate(45deg); }
.navbar.open .nav-toggle span { opacity: 0; }
.navbar.open .nav-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.logo {
    font-size: 22px;
    font-family: 'Bebas Kai', 'Bebas Neue', 'Inter', sans-serif;
    letter-spacing: 0.08em;
    color: #fff;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
}

/* ========================================
   HERO - Premium & Spacious
   ======================================== */

.hero {
    min-height: 100vh;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: var(--nav-height) 24px 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    filter: blur(6px);
    opacity: 0.45;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, rgba(244, 5, 82, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 112, 243, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #9aa1b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeUp 1s ease both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
}

.server-status {
    margin-top: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: #fff003;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    justify-content: center;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: statusPulse 1.8s ease-in-out infinite;
}


/* ========================================
   BUTTONS - Clean & Modern
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(244, 5, 82, 0.35);
}

.btn-primary:hover {
    background: var(--accent-strong);
    box-shadow: 0 4px 12px rgba(244, 5, 82, 0.3), 0 14px 40px rgba(244, 5, 82, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #0e9b72;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: rotate(20deg) translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover::after {
    transform: rotate(20deg) translateX(220%);
}

.btn:active {
    transform: translateY(1px) scale(0.98);
}

/* ========================================
   CONTAINER & SECTIONS
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
}

/* ========================================
   CARDS - Elegant Grid
   ======================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}


.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)) var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 0deg, rgba(244,5,82,0.12), rgba(0,112,243,0.12), transparent 40%);
    filter: blur(30px);
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.4s ease, transform 3s linear;
    pointer-events: none;
}

.card:hover::before {
    opacity: 0.9;
    transform: rotate(180deg);
}

.social-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(244,5,82,0.08), transparent 45%), radial-gradient(circle at 80% 80%, rgba(0,112,243,0.06), transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover::after {
    opacity: 1;
}

#snowflakes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.snowflake {
    position: absolute;
    top: -10%;
    animation-name: snow-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.card-icon {
    animation: floatIcon 2.8s ease-in-out infinite;
}


.card-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.9;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--text);
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.section-head .eyebrow {
    margin-bottom: 8px;
}

.section-head .lead {
    color: var(--text-secondary);
    font-size: 18px;
}

/* ========================================
   FORMS - Clean & Spacious
   ======================================== */

.form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--section-padding) 24px;
}

.form-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 2px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

/* ========================================
   TABLES - Minimal & Clean
   ======================================== */

.table-container {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--bg-subtle);
}

th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text);
    border-top: 1px solid var(--border);
}

tbody tr {
    transition: background 0.2s;
}

tbody tr:hover {
    background: var(--bg-subtle);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.step {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.step-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    animation: floatIcon 3s ease-in-out infinite;
}

/* ========================================
   BADGES - Subtle
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

.badge-pending {
    background: rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.3);
    color: #f5a623;
}

.badge-approved {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.badge-rejected {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid currentColor;
}

.pill.success { color: var(--success); background: rgba(16, 185, 129, 0.12); }
.pill.warn { color: var(--warning); background: rgba(245, 166, 35, 0.12); }
.pill.danger { color: var(--danger); background: rgba(239, 68, 68, 0.12); }
.pill.info { color: var(--accent-2); background: rgba(0, 112, 243, 0.12); }

/* ========================================
   MESSAGES
   ======================================== */

.message {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 24px 0;
    border-left: 3px solid;
    font-size: 14px;
}

.message.success {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.message.info {
    background: rgba(0, 112, 243, 0.1);
    border-color: #0070f3;
    color: #0070f3;
}

/* ========================================
   ADMIN PANEL
   ======================================== */

.admin-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--bg-elevated);
    border-right: 1px solid var(--border);
    padding: 24px 0;
}

.admin-sidebar h2 {
    padding: 0 20px;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.admin-nav {
    list-style: none;
}

.admin-nav a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--text);
    background: var(--bg-subtle);
    border-left-color: var(--accent);
}

.admin-main {
    padding: 40px;
}

.admin-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.admin-header h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stat-card .stat-value {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
}

/* ========================================
   LOGIN
   ======================================== */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
}

.login-card h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 32px;
    text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: auto;
    background: linear-gradient(135deg, rgba(244,5,82,0.08), rgba(0,112,243,0.08));
    backdrop-filter: blur(8px);
}

footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255,255,255,0.04);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.footer-link:hover {
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.07);
    color: #fff;
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gobold', 'Bebas Kai', 'Bebas Neue', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    font-weight: 700;
}

.lead {
    color: var(--text-secondary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}
/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .navbar .container {
        padding: 0 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: var(--nav-height);
        right: 16px;
        left: 16px;
        flex-direction: column;
        gap: 12px;
        background: rgba(5, 6, 10, 0.95);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        display: none;
    }

    .navbar.open .nav-menu {
        display: flex;
    }

    .nav-menu a {
        font-size: 14px;
        width: 100%;
    }

    .hero {
        min-height: 80vh;
        padding: var(--nav-height) 16px 60px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-card {
        padding: 32px 24px;
    }

    .admin-container {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .admin-main {
        padding: 24px 16px;
    }

    h2 {
        font-size: 26px;
    }

    .cards-grid.community-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-content {
        margin-top: 32px;
    }
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
}

.modal-content {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

/* ========================================
   FILTER BUTTONS
   ======================================== */

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    font-size: 13px;
}

.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.filter-btn:hover {
    background: var(--bg-subtle);
}

.filter-btn.active:hover {
    background: #d60448;
}

/* ========================================
   PAGE TRANSITIONS
   ======================================== */

.page {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowTrail {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(220%); }
}
