:root {
    --bg-dark: #0f1115;
    --card-bg: #1a1d23;
    --primary-grad: linear-gradient(90deg, #ff512f 0%, #f09819 100%);
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --orange: #ff512f;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* Header */
header {
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo { font-size: 24px; font-weight: 800; }
.logo span { color: var(--orange); }

nav a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover { color: white; }

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.badge-container {
    background: #1e2229;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
}

.dot { height: 8px; width: 8px; background: red; border-radius: 50%; display: inline-block; margin-right: 10px; }

h1 { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }

.grad-text {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub { color: var(--text-gray); font-size: 18px; margin-bottom: 40px; }

.btn-main {
    background: var(--primary-grad);
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    padding: 15px 35px;
    border-radius: 12px;
    color: white;
    margin-left: 15px;
    cursor: pointer;
}

.hero-stats { margin-top: 50px; color: var(--text-gray); display: flex; justify-content: center; gap: 30px; }

/* Sections Common */
section { padding: 80px 10%; max-width: 1200px; margin: 0 auto; }
.section-label { color: var(--orange); font-weight: 700; font-size: 12px; letter-spacing: 2px; }
.section-label-center { display: block; text-align: center; color: var(--orange); font-weight: 700; font-size: 12px; }
h2 { font-size: 42px; font-weight: 800; margin-top: 10px; }

/* Features */
.feature-tabs { display: flex; gap: 15px; margin: 30px 0; }
.tab { background: #1e2229; border: none; padding: 10px 25px; border-radius: 50px; color: white; cursor: pointer; }
.tab.active { background: var(--orange); }

.feature-display { display: flex; gap: 50px; background: #16191f; padding: 50px; border-radius: 24px; align-items: center; }
.feature-mockup { flex: 1; background: #1e2229; border-radius: 15px; padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Steps */
.steps-container { display: flex; gap: 30px; margin-top: 50px; }
.step { flex: 1; text-align: center; }
.circle { width: 60px; height: 60px; border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; font-weight: 800; }

/* Cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.post-card { background: var(--card-bg); padding: 25px; border-radius: 20px; }
.post-user { font-weight: 700; margin-bottom: 10px; display: flex; justify-content: space-between; }
.post-user span { color: var(--orange); font-size: 12px; }

.leaderboard-card { background: var(--card-bg); max-width: 600px; margin: 40px auto; border-radius: 24px; padding: 30px; }
.lb-row { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #333; }

/* Footer */
footer { text-align: center; padding: 100px 0; background: radial-gradient(circle at center, #1e2229 0%, #0f1115 100%); }
/* Update your style.css with these specific background and avatar rules */

body {
    margin: 0;
    background-color: #0d0e12; /* Deep matte black from screenshot */
    background-image: 
        radial-gradient(circle at 50% 40%, rgba(255, 81, 47, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Avatar Styling to match image_0169d7.jpg */
.avatar, .lb-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: #252830;
}

/* Card Styling to match the semi-transparent look */
.post-card, .leaderboard-card {
    background: rgba(30, 33, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 81, 47, 0.3);
}

/* Leaderboard Bar - Match the yellow/orange progress bar in image_01672d.jpg */
.lb-progress-bar {
    height: 6px;
    background: #333;
    border-radius: 10px;
    width: 100px;
    position: relative;
    overflow: hidden;
}

.lb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f09819, #ff512f);
    border-radius: 10px;
}
/* Ensure the grid wraps nicely as you add more people */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Leaderboard Stats Alignment */
.lb-stats {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.lb-progress-bar {
    width: 120px;
    height: 4px;
    background: #252830;
    border-radius: 10px;
    overflow: hidden;
}

.lb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f09819, #ff512f);
}

/* Precise Dark Mode Theme */
.post-card {
    background: rgba(25, 27, 33, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.post-grid {
    display: grid;
    /* This creates a 3-column layout that scales down to 1 on mobile */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 40px;
}

/* Responsiveness for smaller screens */
@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background: rgba(30, 33, 40, 0.6); /* Translucent dark gray from image_0169fb.jpg */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.post-meta {
    margin-top: auto;
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    gap: 15px;
    padding-top: 15px;
}
/* --- UPDATED BUTTON & INTERACTION STYLES --- */

/* 1. Main Action Button (Hero Section) */
.btn-main {
    background: linear-gradient(90deg, #ff512f, #f09819);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 81, 47, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 81, 47, 0.5);
    filter: brightness(1.1);
}

.btn-main:active {
    transform: translateY(-1px) scale(0.98);
}

/* 2. Outline/Ghost Button (Secondary Actions) */
.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* 3. Navigation/Header Button */
.btn-primary-small {
    background: linear-gradient(90deg, #ff512f, #f09819);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-small:hover {
    box-shadow: 0 0 15px rgba(255, 81, 47, 0.4);
    transform: scale(1.05);
}

/* 4. Feature Tabs (Toggles) */
.tab {
    background: #1e2229;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 28px;
    border-radius: 50px;
    color: #9ca3af;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: #ff512f;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 81, 47, 0.3);
    border-color: transparent;
}

.tab:hover:not(.active) {
    background: #2a2f3a;
    color: white;
    transform: translateY(-2px);
}

/* --- CLICK RIPPLE EFFECT --- */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: animate-ripple 0.6s linear;
}

@keyframes animate-ripple {
    0% { width: 0px; height: 0px; opacity: 0.5; }
    100% { width: 500px; height: 500px; opacity: 0; }
}
/* --- 1. CORE RESET & THEME --- */
:root {
    --bg-dark: #08090b; /* Deep matte black from screenshot */
    --card-bg: rgba(30, 33, 40, 0.6);
    --primary-grad: linear-gradient(90deg, #ff512f 0%, #f09819 100%);
    --orange: #ff512f;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. BACKGROUND GLOW & PARTICLES --- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Keeps particles behind all content[cite: 8] */
    pointer-events: none;
}

.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Atmospheric glow to make the UI pop[cite: 8] */
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 81, 47, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(240, 152, 25, 0.08) 0%, transparent 40%);
}

/* --- 3. ATTRACTIVE BUTTONS --- */
.btn-main {
    background: var(--primary-grad);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 81, 47, 0.3);
    position: relative;
    overflow: hidden; /* Necessary for the ripple effect[cite: 8] */
}

.btn-main:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 81, 47, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- 4. CARDS & GLASSMORPHISM --- */
.post-card, .leaderboard-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 81, 47, 0.3);
}

/* --- 5. UTILITY & INTERACTION --- */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    from { width: 0; height: 0; opacity: 0.5; }
    to { width: 400px; height: 400px; opacity: 0; }
}

section {
    position: relative;
    z-index: 1; /* Ensures text stays above glow and particles[cite: 8] */
    background: transparent;
}
/* Section Typography */
.arsenal-title {
    font-size: 48px;
    margin-bottom: 40px;
}

/* Feature Layout */
.feature-display {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.feature-content {
    flex: 1;
    text-align: left;
}

/* Sub-label Pill Badge */
.sub-badge {
    background: #ff512f;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.streak-highlight {
    margin-top: 30px;
}

.highlight-number {
    font-size: 64px;
    font-weight: 800;
    color: #ff512f;
    display: block;
}

.highlight-text {
    color: var(--text-gray);
    font-size: 14px;
}

/* Mockup Card Styling */
.feature-mockup {
    flex: 1;
    background: rgba(30, 33, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mock-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-weight: 700;
}

.mock-icon {
    background: #ff512f;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mock-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.mock-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.item-name {
    flex-grow: 1;
    margin-left: 15px;
}

.item-count {
    font-weight: 700;
    color: #ff512f;
}
/* Hero Container Adjustment */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    text-align: center;
    padding-top: 60px;
}

/* Badge at the top */
.hero-badge {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.red-dot {
    width: 6px;
    height: 6px;
    background: #ff4d4d;
    border-radius: 50%;
    display: inline-block;
}

/* Massive Hero Typography */
.hero-title {
    font-size: 82px; /* Large scale from image */
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero-grad-text {
    background: linear-gradient(90deg, #ff512f, #f09819);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.5;
}

/* Button Grouping */
.hero-action-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 50px; /* Fully rounded as per image */
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
}

/* Mouse Scroll Animation */
.scroll-indicator {
    margin-bottom: 40px;
}

.mouse {
    width: 22px;
    height: 35px;
    border: 2px solid #333;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #555;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Bottom Stats Bar */
.hero-bottom-stats {
    display: flex;
    gap: 40px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}
/* --- FOOTER STYLES --- */
footer {
    padding: 60px 5% 40px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-brand span {
    color: var(--orange);
}

.copyright {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.footer-socials a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--orange);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
/* --- RESPONSIVE TYPOGRAPHY & LAYOUT --- */

/* Hero Section Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px; /* Scales down from 82px for mobile screens */
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-action-btns {
        flex-direction: column; /* Stacks buttons vertically on mobile */
        width: 100%;
        max-width: 300px;
    }

    .btn-main, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Feature Section Adjustments */
@media (max-width: 992px) {
    .feature-display {
        flex-direction: column; /* Stacks the "Growth Arsenal" content and mockup */
        padding: 30px 20px;
        gap: 40px;
    }

    .feature-content {
        text-align: center;
    }

    .feature-tabs {
        overflow-x: auto; /* Allows horizontal swiping of tabs on mobile */
        white-space: nowrap;
        padding-bottom: 10px;
        width: 100%;
        justify-content: flex-start;
    }

    .tab {
        flex: 0 0 auto;
    }
}

/* Community Grid Adjustments */
@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 640px) {
    .post-grid {
        grid-template-columns: 1fr; /* 1 column for phones to mimic a social feed */
        gap: 15px;
    }

    .post-card {
        min-height: auto;
        padding: 20px;
    }
}

/* Steps/Process Adjustments */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column; /* Stacks Step 1, 2, and 3 vertically */
        gap: 40px;
    }

    .step {
        max-width: 100%;
    }
}

/* Navigation Adjustments */
@media (max-width: 768px) {
    nav {
        display: none; /* Hides links on mobile to prevent clutter; use a burger menu later */
    }

    .nav-container {
        justify-content: center;
        gap: 20px;
    }
}

/* Footer Adjustments */
@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}
/* --- MOBILE APP UI OVERHAUL --- */

@media (max-width: 768px) {
    /* 1. Header: App-Style Floating Header */
    header {
        padding: 15px 5%;
        background: rgba(8, 9, 11, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-container {
        justify-content: space-between;
    }

    /* 2. Hero: Splash Screen Feel */
    .hero {
        min-height: 100vh; /* Takes full screen like an app splash */
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: 46px;
        line-height: 1;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
        color: var(--text-gray);
        padding: 0 15px;
    }

    /* 3. Action Buttons: Full Width for Thumbs */
    .hero-action-btns {
        width: 100%;
        padding: 0 20px;
        gap: 12px;
    }

    .btn-main, .btn-secondary {
        width: 100%;
        padding: 18px;
        border-radius: 16px; /* Softer, modern app corners */
        font-size: 16px;
    }

    /* 4. Feature Sections: Compact App Cards */
    .feature-display {
        background: rgba(255, 255, 255, 0.03);
        padding: 24px;
        border-radius: 28px;
        margin: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .feature-tabs {
        padding: 0 10px;
        gap: 8px;
        -webkit-overflow-scrolling: touch; /* Smooth swipe for tabs */
    }

    .tab {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* 5. Community: The "Feed" Look */
    .post-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }

    .post-card {
        background: rgba(30, 33, 40, 0.4);
        border-radius: 20px;
        padding: 20px;
        min-height: auto;
    }

    /* 6. Leaderboard: Card Focus */
    .leaderboard-card {
        margin: 20px 15px;
        border-radius: 24px;
        padding: 20px;
    }

    .lb-row {
        padding: 12px 0;
    }

    .lb-avatar {
        width: 38px;
        height: 38px;
    }

    /* 7. Typography Adjustments */
    h2 {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .section-label-center {
        font-size: 10px;
        margin-bottom: 8px;
    }
}

/* Glassmorphism Animation */
.reveal {
    animation: appEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes appEntrance {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}