:root {
    --bg-dark: #050505; /* Deeper black */
    --accent-orange: linear-gradient(135deg, #FF4B2B 0%, #FF416C 100%);
    --accent-green: linear-gradient(135deg, #00F260 0%, #0575E6 100%);
    --neon-mint: #00FF9D;
    --electric-orange: #FF5C00;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --mesh-grad: radial-gradient(at 0% 0%, rgba(255, 75, 43, 0.15) 0, transparent 50%),
                 radial-gradient(at 100% 100%, rgba(0, 255, 157, 0.1) 0, transparent 50%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--mesh-grad);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

/* --- Location Screen --- */
#location-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background: var(--bg-dark);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.5s;
}

#location-screen.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
}

.content {
    position: relative;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.brand {
    margin-bottom: 40px;
}

.logo-box {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 24px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 40px rgba(0, 242, 96, 0.3);
}

.logo-box img {
    width: 50px;
}

.brand h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: var(--accent-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    color: var(--text-dim);
    letter-spacing: 6px;
    font-size: 0.75rem;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Radar Animation */
.radar-container {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.radar {
    width: 150px;
    height: 150px;
    border: 2px solid var(--neon-mint);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.1);
}

.radar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--neon-mint), transparent 40%);
    animation: rotate 2s linear infinite;
}

.pin {
    width: 14px;
    height: 14px;
    background: var(--neon-mint);
    border-radius: 50%;
    box-shadow: 0 0 25px var(--neon-mint);
    z-index: 2;
}

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

/* Progress Box */
.status-box {
    margin-bottom: 30px;
}

.status-box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.status-box p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 25px 0 12px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--accent-green);
    width: 0%;
    transition: width 0.3s;
    box-shadow: 0 0 15px rgba(0, 242, 96, 0.5);
}

.stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--neon-mint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    background: var(--accent-green);
    color: var(--bg-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 242, 96, 0.2);
    transition: all 0.3s;
    display: none; 
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 242, 96, 0.4);
}

.loading-footer {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Home Page --- */
#home-page {
    padding-top: 80px;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mini-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mini-logo:hover {
    transform: scale(1.05);
}

.theme-logo {
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.4)) contrast(1.1);
    transition: filter 0.3s ease;
}

.mini-logo:hover .theme-logo {
    filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.8)) contrast(1.2) brightness(1.1);
}


.search-container {
    position: relative;
    width: 300px;
}

.search-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 40px 12px 15px;
    border-radius: 30px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.search-container input:focus {
    border-color: var(--neon-lime);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--neon-lime);
}

/* Hero Section */
.hero {
    padding: 60px 5%;
    text-align: center;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--neon-lime));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.quick-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--neon-mint), #00d2ff);
    color: var(--bg-dark);
    font-weight: 800;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.5);
    transform: scale(1.08);
}

/* Vendor Grid */
.vendor-grid {
    padding: 40px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.vendor-card {
    transition: transform 0.3s;
    overflow: hidden;
}

.vendor-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid var(--neon-mint);
    color: var(--neon-mint);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 255, 157, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.card-dist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    margin-bottom: 5px;
}

.card-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--neon-lime);
    font-weight: 700;
}

.go-btn {
    width: 40px;
    height: 40px;
    background: var(--neon-lime);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
}

/* --- Vendor Interactive Form --- */
.step-header {
    background: var(--accent-orange);
    color: white;
    padding: 40px 30px;
    border-radius: 20px 20px 0 0;
    text-align: left;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.step-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.step-header h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.step-header p { font-size: 0.95rem; opacity: 0.9; font-weight: 500; }

.progress-container {
    padding: 0 30px;
    margin-top: -20px;
    margin-bottom: 45px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--neon-mint);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.multi-step-bar {
    display: flex;
    gap: 12px;
}

.step-dot {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.step-dot.active { 
    background: var(--neon-mint); 
    box-shadow: 0 0 15px var(--neon-mint);
}

.step-dot.completed { 
    background: #FF416C; 
}

.step-num {
    position: absolute;
    top: -30px;
    width: 28px;
    height: 28px;
    background: #1A1A1A;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dim);
    transition: all 0.3s;
}

.step-dot.active .step-num { 
    background: var(--neon-mint); 
    color: var(--bg-dark); 
    border-color: var(--neon-mint);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.step-dot.completed .step-num { 
    background: #FF416C; 
    color: white;
    border-color: #FF416C;
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        padding: 10px 15px;
        flex-direction: column;
        gap: 12px;
        top: 0;
        width: 100%;
        border-radius: 0;
    }
    .nav-left {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
    .mini-logo {
        order: 1;
    }
    .location-badge {
        order: 2;
        padding: 8px 12px !important;
        font-size: 0.7rem !important;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .search-container {
        order: 4;
        width: 100%;
    }
    #toggle-map-btn {
        order: 3;
        padding: 8px 15px !important;
        font-size: 0.75rem !important;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 20px;
        padding-top: 5px;
        border-top: 1px solid var(--glass-border);
        margin-top: 5px;
    }
    #home-page {
        padding-top: 180px;
    }
}

@media (max-width: 400px) {
    .location-badge #loc-text {
        display: none; /* Only show icon on very tiny screens */
    }
    .location-badge::after {
        content: 'Current';
        margin-left: 5px;
    }
}

.detail-header-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.close-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.close-detail:hover {
    background: var(--neon-mint);
    color: var(--bg-dark);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px var(--neon-mint);
}

/* Dishes Selection */
.dish-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.dish-pill {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dish-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-dim);
}

.dish-pill.selected {
    background: var(--accent-orange);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 75, 43, 0.2);
}

/* Photo Upload Boxes */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.photo-box {
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.02);
}

.photo-box:hover {
    border-color: var(--neon-mint);
    color: var(--neon-mint);
    background: rgba(0, 255, 157, 0.05);
    transform: translateY(-5px);
}

.photo-box.has-image {
    border: 2px solid var(--neon-mint);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

/* Extra Details */
.type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.type-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.type-btn.selected {
    background: var(--accent-orange);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(255, 75, 43, 0.2);
}

.dot-veg { color: #00FF9D; }
.dot-nonveg { color: #FF416C; }
.dot-both { color: #FFD200; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1); }

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

.nav-btns {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid var(--glass-border);
    padding: 18px;
    border-radius: 16px;
    flex: 1;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.next-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 16px;
    flex: 2;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 75, 43, 0.2);
}

.next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 75, 43, 0.4);
}

.submit-wrap {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid var(--glass-border);
}

.terms {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.4;
}

.final-btn {
    background: linear-gradient(135deg, #00C853 0%, #B2FF59 100%);
    color: #050505;
    width: 100%;
    padding: 22px;
    border-radius: 18px;
    border: none;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 200, 83, 0.3);
    transition: all 0.3s;
}

.final-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 200, 83, 0.5);
}

/* --- Homepage Map Overlay --- */
#map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

#map-overlay.hidden {
    transform: scale(1.1);
    opacity: 0;
    pointer-events: none;
}

#home-map {
    flex: 1;
    width: 100%;
    z-index: 1;
}

#close-map-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: white;
    border: 1px solid var(--glass-border);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

#close-map-btn:hover {
    background: var(--accent-orange);
    border-color: transparent;
    transform: scale(1.05);
}

.map-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    padding: 20px 30px;
    border-radius: 24px;
    max-width: 300px;
}

.vendor-popup {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.vendor-popup .leaflet-popup-content-wrapper {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    color: white !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    padding: 5px !important;
}

.vendor-popup .leaflet-popup-tip {
    background: rgba(10, 10, 10, 0.9) !important;
}

/* --- Vendor Detail Overlay & Drawer --- */
#vendor-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

#vendor-detail-overlay.active {
    display: flex;
}

.detail-drawer {
    width: 100%;
    max-width: 600px;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-radius: 40px 40px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    padding-bottom: 50px;
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.detail-header-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.close-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-content {
    padding: 30px;
}

.detail-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.section-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 25px 0 15px;
    color: var(--neon-mint);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Reviews Styling */
.review-card {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: white;
}

.stars {
    color: #FFD700;
    font-size: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dim);
    font-style: italic;
}

@media (min-width: 800px) {
    #vendor-detail-overlay {
        align-items: center;
    }
    .detail-drawer {
        border-radius: 30px;
        max-height: 80vh;
        width: 500px;
    }
}
/* --- Street Talk (Home Reviews) --- */
.street-talk-section {
    padding: 60px 5% 40px;
    margin-top: 20px;
    background: radial-gradient(circle at 10% 50%, rgba(0, 255, 157, 0.05), transparent 40%);
}

.st-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.st-scroller {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 15px 5px 40px;
    scrollbar-width: none;
}

.st-scroller::-webkit-scrollbar {
    display: none;
}

.st-card {
    min-width: 320px;
    max-width: 320px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: all 0.4s;
    cursor: grab;
}

.st-card:hover {
    transform: translateY(-10px) rotate(1deg);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 157, 0.3);
}

.st-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.st-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.st-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dim);
    font-style: italic;
    position: relative;
    padding-left: 10px;
}

.st-quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--neon-mint);
    position: absolute;
    top: -30px;
    left: -20px;
    opacity: 0.15;
    font-family: serif;
}
/* --- Home Reels (Horizontal Row) --- */
.home-reels-section {
    padding: 60px 5% 100px;
}

.reels-v-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

@media (min-width: 1200px) {
    .reels-v-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reel-card-v {
    height: 500px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


.reel-card-v:hover {
    transform: scale(1.02);
}

.reel-card-v video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-card-v .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.reel-card-v .info h4 {
    color: var(--neon-mint);
    margin-bottom: 5px;
}

.reel-card-v .info p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- Glass Footer --- */
.glass-footer {
    padding: 80px 5% 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-brand .footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--neon-mint);
    padding-left: 5px;
}

.footer-social h4 {
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--neon-mint);
    color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* --- Mobile Footer Fix --- */
@media (max-width: 768px) {
    .glass-footer {
        padding: 50px 5% 30px;
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-social .social-icons {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
    }
    .footer-bottom p {
        justify-content: center;
    }
}

