/* =============================================
   SCENELINK PREMIUM MERGE CSS - Round 9
   Selective premium features on Round 8 base
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --green-deep: #0D4D3D;
    --dark-bg: #050505;
    --dark-surface: #111111;
    --dark-card: #151515;
    --live-green: #22c55e;
    --hot-red: #ef4444;
    --trending-orange: #f97316;
    --text-white: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --text-dim: rgba(255,255,255,0.5);
    --border-gold: rgba(212,175,55,0.2);
    --border-gold-strong: rgba(212,175,55,0.4);
    --glow-gold: rgba(212,175,55,0.3);
    --shadow-premium: 0 10px 40px rgba(0,0,0,0.4);
}

/* Inter font loaded via Google Fonts link in HTML head */

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.5); }
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes goldGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.3); }
    50%      { box-shadow: 0 0 40px rgba(212,175,55,0.5); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* =============================================
   HERO SECTION - Premium Redesign
   ============================================= */

.hero-v2 {
    min-height: 90vh !important;
    display: flex !important;
    align-items: center !important;
    background: radial-gradient(ellipse at 50% 0%, rgba(13,77,61,0.3) 0%, var(--dark-bg) 70%) !important;
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(13,77,61,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    display: none !important;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 0 !important;
}

.hero-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-large {
    display: none !important;
}

/* Live Badge in Hero */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--live-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-live-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--live-green);
    border-radius: 50%;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.hero-title-main {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: var(--gold-primary) !important;
    margin-bottom: 20px !important;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-subtitle-main {
    font-size: clamp(1rem, 2vw, 1.3rem) !important;
    color: var(--text-muted) !important;
    margin-bottom: 36px !important;
    line-height: 1.6 !important;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hero CTA Buttons */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    flex-wrap: wrap;
}

/* Explore Now Button with Dropdown */
.explore-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.btn-explore-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #0a0a0a;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-gold);
    text-decoration: none;
}

.btn-explore-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.btn-explore-now .dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.explore-dropdown-wrapper:hover .btn-explore-now .dropdown-arrow,
.explore-dropdown-wrapper.open .btn-explore-now .dropdown-arrow {
    transform: rotate(180deg);
}

/* City Dropdown */
.city-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: rgba(21,21,21,0.98);
    border: 1px solid var(--border-gold-strong);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.1);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.explore-dropdown-wrapper:hover .city-dropdown,
.explore-dropdown-wrapper.open .city-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.city-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-white);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.city-dropdown-item:hover {
    background: rgba(212,175,55,0.15);
    color: var(--gold-primary);
}

.city-dropdown-item.active {
    background: rgba(212,175,55,0.1);
    color: var(--gold-primary);
}

.city-dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.city-dropdown-item .coming-soon {
    margin-left: auto;
    font-size: 10px;
    color: var(--text-dim);
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Join the Scene Button */
.btn-join-scene {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid var(--border-gold-strong);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-join-scene:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow-gold);
}

/* Phone Mockup */
.hero-phone-mockup {
    max-width: 320px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.phone-frame {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,175,55,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: linear-gradient(180deg, var(--green-deep), #0a0a0a);
    border-radius: 20px;
    padding: 20px 16px;
    min-height: 280px;
}

.phone-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.phone-app-header .app-name {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 16px;
}

.phone-app-header .live-dot {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(34,197,94,0.2);
    color: var(--live-green);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.phone-app-header .live-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--live-green);
    border-radius: 50%;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.phone-venue-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
}

.phone-venue-card .venue-name {
    color: white;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.phone-venue-card .venue-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-dim);
}

.phone-venue-card .venue-meta .hot {
    color: var(--hot-red);
    font-weight: 600;
}

.phone-venue-card .venue-meta .people {
    color: var(--gold-primary);
}

.phone-venue-card .venue-rating {
    color: var(--gold-primary);
    font-size: 11px;
    margin-top: 4px;
}

/* =============================================
   SEARCH BAR - Below Phone Mockup
   ============================================= */

.premium-search-section {
    padding: 40px 0 20px;
    background: transparent;
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.premium-search-bar {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: rgba(21,21,21,0.9);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 6px 6px 6px 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.premium-search-bar:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 30px rgba(212,175,55,0.2);
}

.premium-search-bar .search-icon {
    color: var(--gold-primary);
    margin-right: 12px;
    flex-shrink: 0;
}

.premium-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
    padding: 12px 0;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.premium-search-bar input::placeholder {
    color: var(--text-dim);
}

.premium-search-bar .btn-search {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #0a0a0a;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.premium-search-bar .btn-search:hover {
    box-shadow: 0 4px 20px var(--glow-gold);
    transform: translateY(-1px);
}

.search-location-hint {
    text-align: center;
    margin-top: 12px;
    color: var(--text-dim);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-location-hint i {
    color: var(--gold-primary);
}

/* =============================================
   REAL-TIME DISCOVERY SECTION
   ============================================= */

.realtime-discovery-section {
    padding: 80px 0 60px;
}

.realtime-discovery-section .section-header-centered {
    margin-bottom: 40px;
}

.realtime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--live-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.realtime-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--live-green);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

/* Map Tags Row */
.map-tags-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.map-tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.map-tag-premium:hover {
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.1);
    color: var(--gold-primary);
}

.map-tag-premium.hot {
    border-color: var(--hot-red);
    color: var(--hot-red);
    background: rgba(239,68,68,0.1);
}

.map-tag-premium.trending {
    border-color: var(--trending-orange);
    color: var(--trending-orange);
    background: rgba(249,115,22,0.1);
}

.map-tag-premium.low-wait {
    border-color: var(--live-green);
    color: var(--live-green);
    background: rgba(34,197,94,0.1);
}

.map-tag-premium.crowded {
    border-color: #a855f7;
    color: #a855f7;
    background: rgba(168,85,247,0.1);
}

/* =============================================
   THE SOCIAL LAYER SECTION
   ============================================= */

.social-layer-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(13,77,61,0.08), transparent);
}

.social-layer-section .section-badge {
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.core-feature-card {
    background: linear-gradient(145deg, rgba(21,21,21,0.9), rgba(11,11,11,0.95));
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.core-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.core-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-strong);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.08);
}

.core-feature-card:hover::before {
    opacity: 1;
}

.core-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(13,77,61,0.2));
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold-primary);
}

.core-feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.core-feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.feature-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--border-gold);
    border-radius: 30px;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-feature-cta:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px var(--glow-gold);
}

@media (max-width: 768px) {
    .core-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   UPGRADED SOCIAL FEED PREVIEW
   ============================================= */

.social-feed-preview {
    padding: 80px 0 !important;
}

.social-feed-preview .section-title-centered {
    color: white !important;
}

/* Live Feed Header */
.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.live-feed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.15);
    color: var(--live-green);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: livePulse 2s infinite;
}

.live-feed-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--live-green);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

/* Enhanced Feed Items */
.feed-preview-grid {
    max-width: 700px;
    margin: 0 auto;
}

.feed-item {
    background: linear-gradient(145deg, rgba(21,21,21,0.9), rgba(11,11,11,0.95)) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feed-item:hover {
    border-color: var(--border-gold-strong) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feed-avatar img {
    border: 2px solid var(--gold-primary) !important;
    border-radius: 50% !important;
}

/* Live Now Badge on Posts */
.feed-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--live-green), #16a34a);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.feed-live-badge .pulse {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

/* Venue Info in Feed */
.feed-venue-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 10px;
}

.feed-venue-info .venue-name {
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.feed-venue-info .people-here {
    color: var(--gold-primary);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* See What's Happening Button */
.btn-feed-full {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)) !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px var(--glow-gold) !important;
}

.btn-feed-full:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(212,175,55,0.5) !important;
}

/* =============================================
   ENHANCED GROUP PLANNING
   ============================================= */

.group-planning-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(13,77,61,0.06), transparent);
}

.planning-feature-hero {
    background: linear-gradient(145deg, rgba(21,21,21,0.9), rgba(11,11,11,0.95));
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    transition: all 0.3s ease;
}

.planning-feature-hero:hover {
    border-color: var(--border-gold-strong);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.05);
}

.feature-hero-content h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-hero-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-hero-planning {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #0a0a0a;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-gold);
}

.btn-hero-planning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.planning-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.planning-steps .step {
    text-align: center;
}

.planning-steps .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212,175,55,0.15);
    border: 2px solid var(--border-gold);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.planning-steps .step.active .step-number {
    background: var(--gold-primary);
    color: #0a0a0a;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--glow-gold);
}

.planning-steps .step-text {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.planning-steps .step-arrow {
    color: var(--border-gold-strong);
    font-size: 20px;
}

@media (max-width: 768px) {
    .planning-feature-hero {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
}

/* =============================================
   FOOTER ENHANCEMENTS
   ============================================= */

.footer-discovery-bar {
    background: linear-gradient(135deg, rgba(13,77,61,0.3), rgba(5,5,5,0.95));
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 30px 0;
}

.footer-discovery-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-neighborhoods h5,
.footer-trending h5 {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-tag {
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-tag:hover {
    background: var(--gold-primary);
    color: #0a0a0a;
    transform: translateY(-2px);
}

.footer-trending-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-venue-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trending-venue-item:hover {
    background: rgba(212,175,55,0.1);
    transform: translateX(5px);
}

.trending-venue-item .venue-name {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.trending-venue-item .venue-tag {
    color: var(--gold-primary);
    font-size: 11px;
    padding: 2px 8px;
    background: rgba(212,175,55,0.15);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .footer-discovery-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* =============================================
   HEADER SCROLL ENHANCEMENT
   ============================================= */

.header-enhanced.scrolled {
    background: rgba(5,5,5,0.98) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 
                0 2px 0 rgba(212,175,55,0.15);
}

/* =============================================
   SIGNUP MODAL ENHANCEMENT
   ============================================= */

.social-auth-priority {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-auth-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-auth-btn-premium.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.social-auth-btn-premium.facebook {
    background: #1877f2;
    color: white;
}

.social-auth-btn-premium.google {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.social-auth-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* =============================================
   GENERAL PREMIUM OVERRIDES
   ============================================= */

/* Hide the old search bar in hero */
.hero-search-simple {
    display: none !important;
}

/* Hide Social Discovery Made Easy section */
.social-features-showcase {
    display: none !important;
}

/* Hide Why Choose SceneLink section */
.hospitality-excellence-enhanced {
    display: none !important;
}

/* Hide the old CTA section */
.cta-section-v2 {
    display: none !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Fade-in animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}
