:root { --navy: #0f172a; --accent: #2563eb; --bg: #ffffff; --light: #f1f5f9; --slate: #64748b; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg); color: var(--navy); margin: 0; display: flex; flex-direction: column; align-items: center; min-height: 100vh; overflow-x: hidden; }

#loadingOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.spinner {
    width: 40px; height: 40px;
    border: 4px solid var(--light);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Header Navigation Styles */

#header-placeholder { 
    width: 100%; 
    display: block; 
    z-index: 50; /* Lower this so it doesn't compete with the wizard content */
}

.app-header { 
    width: 100%; 
    padding: 15px 25px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    border-bottom: 1px solid var(--light); 
    background: white; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    box-sizing: border-box;
}
.header-left { flex: 1; }
.header-center { flex: 2; text-align: center; }
.header-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 15px; }

.nav-link-btn {
    background: var(--light);
    color: var(--navy);
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}
.nav-link-btn:hover { background: #e2e8f0; }
.nav-link-btn.primary { background: var(--navy); color: white; }

.menu-btn { 
    background: none; 
    border: none; 
    font-size: 1.4rem; 
    cursor: pointer; 
    color: var(--navy); 
    padding: 5px; 
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.dropdown-content { 
    display: none; 
    position: absolute; 
    right: 25px; 
    top: 70px; 
    background: white; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
    border-radius: 12px; 
    border: 1px solid var(--light); 
    width: 220px; 
    z-index: 102; 
}

.dropdown-content button { width: 100%; padding: 14px 20px; text-align: left; background: none; border: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; color: var(--navy); border-bottom: 1px solid var(--light); }
.dropdown-content button:last-child { border-bottom: none; }
.dropdown-content button:hover { background: var(--light); color: var(--accent); }

/* Modal Styles */
/* --- UPDATED MODAL STYLES --- */
.modal { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(15, 23, 42, 0.75); /* Darker overlay */
    backdrop-filter: blur(8px); 
    z-index: 10000 !important; /* Forces it above the sticky header (z-index 100) */
    overflow-y: auto; 
    padding: 20px; 
    box-sizing: border-box; 
}

.modal-content { 
    background: white; 
    max-width: 650px; 
    margin: 40px auto; 
    padding: 40px; 
    border-radius: 24px; 
    position: relative; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
}

.close-modal { 
    position: absolute; 
    top: 20px; 
    right: 25px; 
    font-size: 1.8rem; 
    font-weight: 700; 
    cursor: pointer; 
    color: var(--slate); 
    z-index: 10;
}

/* Support both class (.modal-body) and ID (#modalBody) */
.modal-body h2, #modalBody h2 { font-weight: 800; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 15px; font-size: 1.6rem; }
.modal-body p, #modalBody p { line-height: 1.6; color: var(--slate); font-size: 0.95rem; margin-bottom: 15px; }
.modal-body ul, #modalBody ul { padding-left: 20px; color: var(--slate); margin-bottom: 15px; }

.logo { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.04em; color: var(--navy); cursor: pointer; }
.logo span { color: var(--accent); }

.wizard-container { width: 100%; max-width: 500px; padding: 20px 20px 50px 20px; box-sizing: border-box; flex: 1; display: block; }

/* Teaser Button Style */
.teaser-btn { 
    background: var(--accent); 
    color: white;
    border-radius: 12px; 
    padding: 12px 24px; 
    margin: 20px auto 0 auto; 
    display: inline-block;
    text-align: center; 
    cursor: pointer; 
    transition: 0.2s; 
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}
.teaser-btn:hover { background: #1d4ed8; transform: translateY(-1px); }

/* Login Step */
#loginGate {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center; 
    justify-content: center;
}

#loginGate.active {
    display: flex !important;
}

.login-card {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: auto;
}

#loginGate .login-card button:first-of-type:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}

.auth-form { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.auth-input {
    width: 100%;
    height: 50px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.auth-input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before { margin-right: 15px; }
.divider:not(:empty)::after { margin-left: 15px; }

/* DRAG & DROP STYLES */
.design-input { display: none; }

.upload-card {
    position: relative;
    border: 1px solid var(--light);
    background: #f8fafc;
    min-height: 34px;
    height: 34px; 
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
    transition: all 0.15s ease;
    cursor: pointer;
    border-radius: 6px;
    margin-bottom: 4px;
    overflow: hidden;
}

.upload-card div, .upload-card span, .upload-card label {
    position: relative;
    z-index: 10; 
}

.upload-card:hover {
    border-color: var(--accent);
    background: #ffffff;
}

.upload-card.dragging {
    border: 2px dashed var(--accent);
    background: #eff6ff;
}

.upload-icon {
    font-size: 1rem;
    color: var(--slate);
    flex-shrink: 0;
}

/* upload card privacy statement */
.privacy-banner {
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 0.70rem;
    color: var(--slate); /* Using your variable from earlier */
    line-height: 1.4;
    text-align: center;   /* Changed from left to center */
    padding: 0 15px;      /* Added a bit more padding for mobile */
    max-width: 450px;     /* Keeps the text from stretching too wide */
    margin-left: auto;    /* These two lines center the div itself */
    margin-right: auto;
}

.lock-icon {
    color: var(--accent);
    margin-right: 4px;
}

/* file upload */
.file-name-display {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
}

/* Review / Preview Logic */
#reviewGate {
    display: none; 
}

#reviewGate .login-card {
    max-width: 500px;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;
    overflow: hidden;
}

#reviewContent {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1; 
}

#reviewPrompt {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    flex-shrink: 0;
}

#reviewImages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    flex: 1;
}

#reviewImages img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    max-height: 25vh;
}

#reviewGate .button-wrapper {
    flex-shrink: 0; 
    margin-top: auto;
}

#reviewGate.active {
    display: flex !important;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-card-fixed, .review-card-standalone {
    background: white;
    width: 100%;
    max-width: 500px;
    max-height: 92vh;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

#reviewContent {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1; 
    overflow-y: auto;
}

#reviewImages {
    display: grid;
    gap: 12px;
    margin-top: 10px;
    flex: 1;
}

#reviewImages img {
    width: 100%;
    max-height: 25vh;
    object-fit: cover;
    border-radius: 12px;
}

/* Privacy Modal */
.privacy-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.privacy-modal-overlay.active { opacity: 1; pointer-events: all; }

.privacy-modal {
    background: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.privacy-modal h3 { margin-top: 0; color: #1a1a1a; }
.privacy-modal p { color: #666; font-size: 0.9rem; line-height: 1.4; }
.privacy-preview-wrap {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}
.privacy-preview-wrap img { width: 100%; display: block; }

.modal-btns { display: flex; gap: 10px; margin-top: 20px; }
.modal-btn {
    flex: 1; padding: 12px; border-radius: 6px; border: none;
    font-weight: 600; cursor: pointer; transition: background 0.2s;
}
.btn-blur { background: #007aff; color: white; }
.btn-cancel { background: #f0f0f0; color: #333; }
.btn-blur:hover { background: #0063d1; }

.preview-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none;
    opacity: 0.2;
}

.change-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700;
    z-index: 10; opacity: 0; transition: 0.2s;
}

.upload-card:hover .change-overlay { opacity: 1; }

.hero-section { 
    text-align: center; 
    margin-top: 0; 
    margin-bottom: 35px; 
    pointer-events: none; /* Allows clicks to pass through to the buttons below */
}

.hero-section .logo, 
.hero-section .teaser-btn { 
    pointer-events: auto; /* Ensures the logo and button still work */
}
.hero-title { font-size: clamp(2rem, 10vw, 2.6rem); font-weight: 800; letter-spacing: -0.05em; margin: 0; line-height: 1.0; text-wrap: balance; }
.hero-title span { color: var(--accent); }
.hero-sub { color: var(--slate); font-size: 1.1rem; margin-top: 12px; font-weight: 500; letter-spacing: -0.01em; text-wrap: balance; }

.step { display: none; animation: slideIn 0.4s ease-out; }
.step.active { display: block !important; }

.step-indicator { font-size: 0.75rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
h1 { font-size: clamp(1.2rem, 6vw, 1.5rem); font-weight: 700; margin-bottom: 25px; letter-spacing: -0.025em; line-height: 1.2; word-break: break-word; hyphens: auto; text-wrap: balance; }

.option-list { display: flex; flex-direction: column; gap: 12px; }
.choice-btn { background: white; border: 2px solid var(--light); padding: 16px; border-radius: 16px; text-align: left; font-weight: 600; cursor: pointer; transition: 0.2s; font-size: clamp(0.9rem, 4vw, 1rem); line-height: 1.3; }
.choice-btn:hover { border-color: var(--accent); background: #f8fafc; }

.btn-primary { width: 100%; background: var(--navy); color: white; border: none; padding: 20px; border-radius: 14px; font-weight: 800; cursor: pointer; transition: 0.3s; margin-bottom: 12px; font-size: 1.1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-secondary { width: 100%; background: none; color: var(--slate); border: 2px solid var(--light); padding: 12px; border-radius: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 0.85rem; }
.btn-secondary:hover { background: var(--light); color: var(--navy); }

/* Results & History */
.results-grid { display: flex; gap: 15px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.result-item { flex: 1; min-width: 140px; max-width: 220px; text-align: center; }
.result-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; border: 6px solid transparent; transition: 0.3s; }
.winner { border-color: #22c55e !important; box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }

#shareArea { background: var(--navy); color: white; padding: 25px; border-radius: 20px; margin-top: 20px; text-align: center; }
.legal-footer { width: 100%; max-width: 800px; padding: 40px 20px; margin-top: auto; font-size: 0.7rem; color: var(--slate); text-align: center; line-height: 1.2; border-top: 1px solid var(--light); }

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

@media (max-width: 600px) {
    .results-grid, .history-comparison-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 10px;
    }
    .result-item, .history-item { max-width: 100% !important; min-width: 0 !important; }
    .app-header { padding: 10px 15px; }
    .logo { font-size: 0.9rem; }
    .nav-link-btn { padding: 6px 10px; font-size: 0.75rem; }
    .hero-title { font-size: 2rem !important; }
    h1 { font-size: 1.25rem !important; margin-bottom: 15px; }
    .auth-input, #customPromptInput { font-size: 16px !important; padding: 12px; }
    .modal-content { padding: 20px !important; margin: 10px !important; width: calc(100% - 20px); border-radius: 16px; }
    .btn-primary, .btn-secondary { padding: 16px; font-size: 1rem; }
}

.dual-range {
    position: absolute;
    width: 100%;
    pointer-events: none;
    appearance: none;
    background: none;
    outline: none;
    top: 0;
    margin: 0;
}
.dual-range::-webkit-slider-thumb {
    pointer-events: auto; appearance: none; width: 18px; height: 18px; border-radius: 50%;
    background: #4f46e5; cursor: pointer; border: 2px solid white; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.dual-range::-moz-range-thumb {
    pointer-events: auto; width: 18px; height: 18px; border-radius: 50%;
    background: #4f46e5; cursor: pointer; border: 2px solid white;
}

.text-logo { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.04em; color: #0f172a; text-decoration: none; }
.text-logo span { color: #2563eb; }/* --- 1. Variables & Base --- */


/* --- 1. CORE VARIABLES & RESET --- */
:root { 
    --navy: #0f172a; 
    --accent: #2563eb; 
    --bg: #ffffff; 
    --light: #f1f5f9; 
    --slate: #64748b; 
}

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

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg); 
    color: var(--navy); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    min-height: 100vh; 
    overflow-x: hidden; 
}

/* --- 2. LAYOUT & CONTAINERS --- */
#header-placeholder { width: 100%; display: block; z-index: 1000; }

.wizard-container { 
    width: 100%; 
    max-width: 500px; 
    padding: 20px 20px 50px 20px; 
    flex: 1; 
    position: relative; /* Add this */
    z-index: 5;        /* Add this */
}

.hero-section { text-align: center; margin-bottom: 35px; }
.hero-title { 
    font-size: clamp(2rem, 10vw, 2.6rem); 
    font-weight: 800; 
    letter-spacing: -0.05em; 
    line-height: 1.0; 
}
.hero-title span { color: var(--accent); }

/* --- 3. WIZARD STEPS & TYPOGRAPHY --- */
.step { display: none; width: 100%; animation: slideIn 0.4s ease-out; }
.step.active { 
    display: block !important; 
    position: relative; /* Add this */
    z-index: 10;        /* Add this to ensure it's above any hero/header margins */
}

.step-indicator { 
    font-size: 0.75rem; 
    font-weight: 800; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    margin-bottom: 10px; 
    display: block;
}

h1 { 
    font-size: clamp(1.2rem, 6vw, 1.5rem); 
    font-weight: 700; 
    margin-bottom: 25px; 
    letter-spacing: -0.025em; 
    line-height: 1.2; 
    text-wrap: balance; 
}

/* --- 4. HEADER & NAVIGATION --- */
.app-header { 
    width: 100%; 
    padding: 15px 25px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid var(--light); 
    background: white; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.header-left, .header-right { flex: 1; display: flex; align-items: center; }
.header-center { flex: 2; text-align: center; }
.header-right { justify-content: flex-end; gap: 15px; }

.logo { 
    font-weight: 800; 
    font-size: 1.2rem; 
    letter-spacing: -0.04em; 
    color: var(--navy); 
    text-decoration: none; 
    cursor: pointer;
}
.logo span { color: var(--accent); }

/* --- 5. PARTICIPANT & DEMOGRAPHIC SETTINGS --- */
.settings-card {
    background: var(--light); 
    padding: 24px; 
    border-radius: 20px; 
    margin-bottom: 20px; 
    text-align: left;
}

.settings-label {
    font-size: 0.95rem; 
    font-weight: 800; 
    color: var(--navy); 
    display: block; 
    margin-bottom: 8px;
}

.demographic-group {
    display: flex; 
    gap: 15px; 
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.demographic-option {
    font-size: 0.85rem; 
    font-weight: 600; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 6px;
}

.filter-alert {
    background: #fffbeb; 
    border: 1px solid #fef3c7; 
    color: #92400e; 
    padding: 12px; 
    border-radius: 12px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    margin-bottom: 15px; 
    line-height: 1.4;
}

/* --- 6. SLIDERS (AGE RANGE) --- */
.slider-wrapper { 
    position: relative; 
    width: 100%; 
    height: 30px; 
    margin-bottom: 25px; 
    margin-top: 10px; 
}

.slider-track { 
    position: absolute; 
    width: 100%; 
    height: 6px; 
    background: #e5e7eb; 
    top: 10px; 
    border-radius: 3px; 
    z-index: 1; 
}

.dual-range {
    position: absolute; 
    width: 100%; 
    pointer-events: none; 
    appearance: none; 
    background: none; 
    outline: none; 
    top: 0; 
    margin: 0;
    z-index: 2;
}

.dual-range::-webkit-slider-thumb {
    pointer-events: auto; 
    appearance: none; 
    width: 18px; 
    height: 18px; 
    border-radius: 50%;
    background: var(--accent); 
    cursor: pointer; 
    border: 2px solid white; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.dual-range::-moz-range-thumb {
    pointer-events: auto; 
    width: 18px; 
    height: 18px; 
    border-radius: 50%;
    background: var(--accent); 
    cursor: pointer; 
    border: 2px solid white;
}

/* --- 7. PRIVACY & BANNERS --- */
.privacy-banner {
    margin: 0 auto 20px auto;
    font-size: 0.70rem;
    color: var(--slate);
    line-height: 1.4;
    text-align: center;
    padding: 0 15px;
    max-width: 450px;
}

.lock-icon { color: var(--accent); margin-right: 4px; }

/* --- 8. BUTTONS & CHOICES --- */
.btn-primary { 
    width: 100%; 
    background: var(--navy); 
    color: white; 
    border: none; 
    padding: 20px; 
    border-radius: 14px; 
    font-weight: 800; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 1.1rem; 
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn-secondary { 
    width: 100%; 
    background: none; 
    color: var(--slate); 
    border: 2px solid var(--light); 
    padding: 12px; 
    border-radius: 14px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 0.85rem; 
}
.btn-secondary:hover { background: var(--light); color: var(--navy); }

/* --- 9. OVERLAYS & MODALS --- */
#loadingOverlay, #loginGate, #reviewGate {
    display: none; 
    position: fixed; 
    pointer-events: none; /* Correct: Inactive overlays should let clicks through */
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.8); 
    backdrop-filter: blur(8px);
    z-index: 9999; 
    align-items: center; 
    justify-content: center;
}

#loadingOverlay.active, #loginGate.active, #reviewGate.active {
    display: flex !important;
    pointer-events: all !important; /* CHANGE THIS: Active overlays MUST catch clicks */
}

/* --- 10. ANIMATIONS & MEDIA QUERIES --- */
@keyframes slideIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@media (max-width: 600px) {
    .app-header { 
        padding: 12px 15px; 
    }
    .logo {
        font-size: 1.1rem; 
    }
    .header-right {
        gap: 8px; 
    }
    .hero-title { 
        font-size: 2rem !important; 
    }
    .settings-card {
        padding: 16px;
    }
}