/* ============================================
   LEBRONIFY WEBSITE - STYLES
   Matching the app's dark theme + yellow accent
   ============================================ */

/* --- CSS Variables (matching app exactly) --- */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1C1C1C;
    --bg-tertiary: #252525;
    --bg-card: #1a1a1a;
    --app-bg: rgb(18, 18, 18);
    --app-card: rgb(28, 28, 28);
    --app-mini: rgb(31, 31, 31);
    --yellow: #FFD700;
    --yellow-dim: rgba(255, 215, 0, 0.15);
    --yellow-glow: rgba(255, 215, 0, 0.3);
    --orange: #FF8C00;
    --white: #FFFFFF;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-06: rgba(255, 255, 255, 0.06);
    --white-04: rgba(255, 255, 255, 0.04);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    width: 100%;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Crown Trail Canvas --- */
#crown-trail {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: var(--transition); background: transparent;
    -webkit-transform: translateZ(0); transform: translateZ(0);
}
.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-06); padding: 12px 0;
}
.nav-content {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 900; letter-spacing: 2px;
}
.logo-icon { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; }
.logo-text { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--white-70); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--yellow) !important; color: var(--bg-primary) !important;
    padding: 8px 20px; border-radius: var(--radius-pill); font-weight: 700 !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--yellow-glow); }

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
    border-radius: var(--radius-pill); font-size: 16px; font-weight: 700;
    cursor: pointer; transition: all var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--bg-primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--yellow-glow); }
.btn-secondary { background: var(--white-10); color: var(--white); border: 1px solid var(--white-10); }
.btn-secondary:hover { background: var(--white-30); border-color: var(--white-30); }
.btn-large { padding: 18px 36px; font-size: 18px; }
.btn-web { border-color: var(--yellow); color: var(--yellow); }
.btn-web:hover { background: rgba(255, 215, 0, 0.15); border-color: var(--yellow); }
.btn-web-hero { box-shadow: 0 0 20px var(--yellow-glow); }
.btn-web-hero:hover { box-shadow: 0 8px 30px var(--yellow-glow), 0 0 40px var(--yellow-dim); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px;
    color: var(--yellow); background: var(--yellow-dim);
    padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section-header h2 { font-size: 42px; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.5px; }
.section-header p { font-size: 18px; color: var(--white-50); max-width: 560px; margin: 0 auto; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-wrapper {
    position: relative; overflow: hidden; width: 100%;
}
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 24px 80px; position: relative;
    max-width: 1200px; margin: 0 auto; gap: 60px; width: 100%;
    z-index: 1;
}
.hero-bg-effects { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-glow {
    position: absolute; top: -20%; left: -10%; width: 60%; height: 70%;
    background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
    filter: blur(100px); opacity: 0.5; animation: glowPulse 8s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: 0.3; transform: scale(1); } to { opacity: 0.5; transform: scale(1.1); } }

.floating-notes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.note { position: absolute; width: 24px; height: 24px; color: var(--yellow); opacity: 0.15; animation: floatNote 15s ease-in-out infinite; }
.note:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.note:nth-child(2) { top: 40%; right: 15%; animation-delay: 3s; width: 32px; height: 32px; }
.note:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 6s; }
.note:nth-child(4) { top: 25%; right: 30%; animation-delay: 9s; width: 20px; height: 20px; }
.note:nth-child(5) { bottom: 20%; right: 10%; animation-delay: 12s; width: 28px; height: 28px; }
@keyframes floatNote {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-30px) rotate(10deg); opacity: 0.2; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.15; }
    75% { transform: translateY(-40px) rotate(15deg); opacity: 0.25; }
}

.hero-content { flex: 1; position: relative; z-index: 1; }
.hero-badge {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px;
    color: var(--yellow); background: var(--yellow-dim);
    padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero-title { font-size: clamp(56px, 8vw, 80px); font-weight: 900; line-height: 0.95; letter-spacing: -2px; margin-bottom: 20px; }
.title-highlight { color: var(--yellow); text-shadow: 0 0 40px var(--yellow-glow); }
.hero-subtitle { font-size: 18px; color: var(--white-50); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-top { display: flex; align-items: baseline; }
.stat-number { font-size: 36px; font-weight: 900; color: var(--yellow); }
.stat-plus, .stat-percent { font-size: 24px; font-weight: 900; color: var(--yellow); }
.stat-label { font-size: 13px; color: var(--white-50); font-weight: 500; }

/* --- Phone Mockup --- */
.hero-phone { flex-shrink: 0; position: relative; z-index: 1; }
.phone-mockup {
    width: 280px; background: #000; border-radius: 36px; padding: 12px;
    border: 2px solid var(--white-10);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--yellow-dim);
    position: relative;
}
.phone-mockup.small { width: 260px; }
.phone-notch {
    width: 100px; height: 28px; background: #000;
    border-radius: 0 0 16px 16px; margin: 0 auto; position: relative; z-index: 2;
}
.phone-screen {
    background: var(--app-bg); border-radius: 28px;
    margin-top: -14px; overflow: hidden; min-height: 480px;
}
.phone-mockup.small .phone-screen { min-height: 460px; }

/* --- Hero phone mock (old style kept for hero) --- */
.mock-app { padding: 24px 14px 14px; }
.mock-header { margin-bottom: 16px; }
.mock-title { font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 1px; }
.mock-subtitle { font-size: 10px; color: var(--white-50); margin-top: 2px; }
.mock-shuffle-btn {
    background: var(--yellow); color: var(--bg-primary); text-align: center;
    padding: 10px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; margin-bottom: 16px;
}
.mock-section-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mock-song-card {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-secondary); padding: 10px; border-radius: var(--radius-md); margin-bottom: 16px;
}
.mock-album-art { width: 52px; height: 52px; border-radius: 6px; flex-shrink: 0; overflow: hidden; background: var(--bg-tertiary); }
.mock-album-art img { width: 100%; height: 100%; object-fit: cover; }
.mock-song-info { flex: 1; min-width: 0; }
.mock-song-title { font-size: 12px; font-weight: 600; color: var(--white); }
.mock-song-artist { font-size: 10px; color: var(--white-50); }
.mock-play-btn {
    width: 32px; height: 32px; background: var(--yellow); color: var(--bg-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0;
}
.mock-song-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--white-06); }
.mock-row-art { width: 40px; height: 40px; border-radius: 4px; flex-shrink: 0; overflow: hidden; background: var(--bg-tertiary); }
.mock-row-art img { width: 100%; height: 100%; object-fit: cover; }
.mock-row-info { flex: 1; }
.mock-row-title { font-size: 11px; font-weight: 500; color: var(--white); }
.mock-row-artist { font-size: 9px; color: var(--white-50); }

/* ============================================
   APP-FAITHFUL MOCKUP SCREENS (Breakdown)
   ============================================ */
.mock-app-screen {
    background: var(--app-bg);
    padding: 20px 12px 0;
    display: flex;
    flex-direction: column;
    min-height: 460px;
    position: relative;
    font-family: var(--font);
}

/* --- Home Screen --- */
.home-screen { padding-bottom: 0; }
.app-banner {
    height: 90px; border-radius: var(--radius-lg); overflow: hidden;
    position: relative; margin-bottom: 10px;
}
.app-banner img { width: 100%; height: 100%; object-fit: cover; }
.app-banner-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 10px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.app-banner-title {
    font-size: 18px; font-weight: 900; color: var(--white);
    letter-spacing: 1px; font-family: var(--font);
}
.app-banner-sub { font-size: 8px; color: var(--white-70); font-weight: 500; }
.app-shuffle-btn {
    background: var(--yellow); color: #000; text-align: center;
    padding: 8px; border-radius: 25px; font-size: 10px; font-weight: 700;
    margin: 0 4px 10px;
}
.app-section-label {
    font-size: 12px; font-weight: 700; color: var(--white);
    margin-bottom: 6px; padding: 0 2px;
}
.app-potd-card {
    display: flex; align-items: center; gap: 8px;
    background: rgb(28, 28, 28); padding: 8px; border-radius: var(--radius-md);
    margin-bottom: 10px;
}
.app-potd-art { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.app-potd-info { flex: 1; min-width: 0; }
.app-potd-title { font-size: 11px; font-weight: 600; color: var(--white); }
.app-potd-artist { font-size: 9px; color: var(--white-50); }
.app-potd-play {
    width: 28px; height: 28px; background: var(--yellow); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0;
}
.app-scroll-row { display: flex; gap: 6px; margin-bottom: 10px; overflow: hidden; }
.app-scroll-card { width: 56px; flex-shrink: 0; }
.app-scroll-card img { width: 56px; height: 56px; border-radius: 5px; object-fit: cover; }
.app-card-name { font-size: 7px; color: var(--white-70); margin-top: 2px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-song-row {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 2px; border-bottom: 1px solid var(--white-06);
}
.app-row-art { width: 34px; height: 34px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.app-row-text { flex: 1; min-width: 0; }
.app-row-name { font-size: 10px; font-weight: 500; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-row-artist { font-size: 8px; color: var(--white-50); }

/* Mini player inside mockup */
.app-mini-player {
    margin-top: auto;
    background: var(--app-mini);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.app-mini-progress { height: 2px; background: var(--white-06); }
.app-mini-progress::after {
    content: ''; display: block; height: 100%; width: 40%;
    background: var(--yellow);
}
.app-mini-content { display: flex; align-items: center; gap: 6px; padding: 6px 8px; }
.app-mini-art { width: 30px; height: 30px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.app-mini-info { flex: 1; min-width: 0; }
.app-mini-title { font-size: 9px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-mini-artist { font-size: 7px; color: var(--white-50); }
.app-mini-controls { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--white-70); }
.app-mini-play {
    width: 22px; height: 22px; background: var(--white);
    color: #000; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 8px;
}

/* Tab bar */
.app-tab-bar {
    display: flex; justify-content: space-around;
    background: var(--app-bg);
    border-top: 1px solid var(--white-06);
    padding: 6px 0 8px;
}
.app-tab { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.app-tab-icon { width: 14px; height: 14px; opacity: 0.4; }
.app-tab-label { font-size: 7px; color: var(--white-40); }
.app-tab.active .app-tab-icon { opacity: 1; }
.app-tab.active .app-tab-label { color: var(--yellow); font-weight: 600; }

/* --- Player Screen --- */
.player-screen {
    background: linear-gradient(180deg, rgba(255,215,0,0.25) 0%, var(--app-bg) 50%);
    align-items: center;
    padding-top: 30px;
}
.app-player-art-wrap {
    width: 150px; height: 150px; border-radius: var(--radius-md);
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 12px;
}
.app-player-art { width: 100%; height: 100%; object-fit: cover; }
.app-player-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.app-player-artist { font-size: 11px; color: var(--white-50); margin-bottom: 14px; }
.app-player-progress-wrap { width: 100%; padding: 0 16px; margin-bottom: 4px; }
.app-player-progress {
    height: 4px; background: var(--white-15); border-radius: 2px;
    position: relative;
}
.app-player-progress-fill {
    width: 38%; height: 100%; background: var(--white); border-radius: 2px;
}
.app-player-thumb {
    position: absolute; top: 50%; right: 62%;
    width: 10px; height: 10px; background: var(--white);
    border-radius: 50%; transform: translateY(-50%);
}
.app-player-times {
    display: flex; justify-content: space-between;
    font-size: 9px; color: var(--white-50); font-weight: 500;
    font-variant-numeric: tabular-nums; margin-top: 4px;
}
.app-player-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 18px; margin: 10px 0; font-size: 16px;
}
.app-ctrl { color: var(--white); width: 18px; height: 18px; }
.app-ctrl-dim { color: var(--white-50); width: 14px; height: 14px; }
.app-ctrl-play {
    width: 44px; height: 44px; background: var(--white); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.app-player-actions {
    display: flex; justify-content: center; gap: 28px;
    margin-bottom: 14px;
}
.app-action { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.app-action svg { color: var(--white-50); }
.app-action-label { font-size: 7px; color: var(--white-40); font-weight: 500; }
.app-bench {
    width: calc(100% - 16px); background: var(--white-04); border-radius: 10px;
    padding: 8px 10px; margin: 0 8px;
}
.app-bench-header { font-size: 9px; font-weight: 700; color: var(--white-70); margin-bottom: 6px; }
.app-bench-song { display: flex; align-items: center; gap: 6px; padding: 3px 0; }
.app-bench-art { width: 26px; height: 26px; border-radius: 3px; object-fit: cover; flex-shrink: 0; }
.app-bench-info { flex: 1; }
.app-bench-name { font-size: 9px; color: var(--white); font-weight: 500; }
.app-bench-artist { font-size: 7px; color: var(--white-40); }

/* --- Vault Screen --- */
.vault-screen { padding-bottom: 0; }
.app-vault-title { font-size: 18px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.app-vault-tabs { display: flex; gap: 0; margin-bottom: 12px; border-bottom: 1px solid var(--white-06); }
.app-vault-tab { flex: 1; text-align: center; padding: 8px 0 6px; position: relative; }
.app-vault-tab span { font-size: 12px; font-weight: 600; color: var(--white-30); }
.app-vault-tab.active span { color: var(--white); }
.app-vault-tab-line {
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 3px; background: var(--yellow); border-radius: 2px 2px 0 0;
}
.app-vault-section-label { font-size: 9px; font-weight: 600; color: var(--white-50); margin-bottom: 6px; }
.app-vault-row {
    display: flex; align-items: center; gap: 8px;
    background: var(--white-06); border-radius: 10px;
    padding: 8px; margin-bottom: 6px;
}
.app-vault-art { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.app-vault-info { flex: 1; min-width: 0; }
.app-vault-name { font-size: 11px; font-weight: 600; color: var(--white); }
.app-vault-desc { font-size: 8px; color: var(--white-50); }
.app-vault-count { font-size: 8px; color: var(--white-40); }
.app-vault-chevron { color: var(--white-30); width: 16px; height: 16px; flex-shrink: 0; }
.app-vault-draft-btn {
    background: var(--yellow); color: #000; text-align: center;
    padding: 8px; border-radius: 25px; font-size: 10px; font-weight: 700;
    margin: 8px 4px 12px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { padding: 100px 0; background: var(--bg-primary); position: relative; }
.features::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-10), transparent);
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--white-06);
    border-radius: var(--radius-lg); padding: 32px 24px;
    transition: all var(--transition); opacity: 0; transform: translateY(20px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
    border-color: var(--yellow-dim); background: var(--bg-secondary);
    transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--yellow); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--white-50); line-height: 1.6; }

/* ============================================
   APP BREAKDOWN SECTION
   ============================================ */
.app-breakdown { padding: 100px 0; background: var(--bg-secondary); }
.breakdown-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
    display: flex; align-items: center; gap: 8px; padding: 12px 24px;
    background: var(--white-06); border: 1px solid var(--white-06);
    border-radius: var(--radius-pill); color: var(--white-50);
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all var(--transition); font-family: var(--font);
}
.tab-btn:hover { background: var(--white-10); color: var(--white); }
.tab-btn.active { background: var(--yellow); color: var(--bg-primary); border-color: var(--yellow); }
.tab-icon { width: 18px; height: 18px; }
.breakdown-panel { display: none; gap: 48px; align-items: center; }
.breakdown-panel.active { display: flex; }
.panel-info { flex: 1; }
.panel-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.panel-info p { font-size: 16px; color: var(--white-50); line-height: 1.7; margin-bottom: 20px; }
.panel-features { list-style: none; }
.panel-features li { padding: 8px 0; padding-left: 24px; position: relative; font-size: 14px; color: var(--white-70); line-height: 1.5; }
.panel-features li::before { content: '>'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }
.panel-features li strong { color: var(--white); }
.panel-phone { flex-shrink: 0; }

/* ============================================
   SONGS SECTION
   ============================================ */
.songs { padding: 100px 0; background: var(--bg-primary); }
.song-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.song-item {
    background: var(--bg-card); border: 1px solid var(--white-06);
    border-radius: var(--radius-md); padding: 14px; transition: all var(--transition); cursor: default;
}
.song-item:hover { border-color: var(--yellow-dim); transform: translateY(-2px); background: var(--bg-secondary); }
.song-item-art {
    width: 100%; aspect-ratio: 1; border-radius: var(--radius-sm);
    margin-bottom: 10px; position: relative; overflow: hidden; background: var(--bg-tertiary);
}
.song-item-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.song-item-title {
    font-size: 13px; font-weight: 600; color: var(--white);
    margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.song-item-artist { font-size: 11px; color: var(--white-50); }

/* ============================================
   FUN STUFF SECTION
   ============================================ */
.fun-stuff { padding: 100px 0; background: var(--bg-secondary); }
.fun-grid { display: flex; flex-direction: column; gap: 48px; }
.fun-card {
    display: flex; gap: 48px; align-items: center;
    background: var(--bg-card); border: 1px solid var(--white-06);
    border-radius: var(--radius-xl); padding: 40px;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fun-card.visible { opacity: 1; transform: translateY(0); }
.fun-card:nth-child(even) { flex-direction: row-reverse; }
.fun-card-visual { flex: 1; min-width: 0; }
.fun-card-info { flex: 1; min-width: 0; }
.fun-card-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.fun-card-info p { font-size: 15px; color: var(--white-50); line-height: 1.7; margin-bottom: 16px; }
.fun-list { list-style: none; }
.fun-list li { padding: 4px 0 4px 20px; position: relative; font-size: 14px; color: var(--white-70); }
.fun-list li::before { content: '>'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }

/* AD Mockup */
.ad-mockup {
    background: rgba(0, 0, 0, 0.85); border-radius: var(--radius-lg);
    padding: 32px; text-align: center; border: 1px solid var(--white-10);
}
.ad-title { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.ad-image-placeholder { width: 160px; height: 200px; border-radius: var(--radius-md); margin: 0 auto 16px; overflow: hidden; }
.ad-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.ad-message { font-size: 14px; color: var(--white-70); margin-bottom: 20px; font-style: italic; }
.ad-dismiss {
    display: inline-block; background: var(--yellow); color: var(--bg-primary);
    padding: 10px 24px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700;
}

/* Taco Rain Demo */
.taco-rain-demo {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    border-radius: var(--radius-lg); padding: 24px; text-align: center;
    position: relative; overflow: hidden; min-height: 280px;
}
.taco-banner { position: relative; z-index: 2; }
.taco-lebron-img {
    width: 80px; height: 80px; object-fit: cover;
    border-radius: 50%; margin: 0 auto 8px; border: 3px solid white;
}
.taco-banner-text {
    font-size: 22px; font-weight: 900; color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative; z-index: 2; margin-bottom: 12px;
}
.falling-tacos { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.taco { position: absolute; font-size: 32px; animation: tacoFall 4s linear infinite; opacity: 0.8; }
.taco-img { width: 36px; height: 36px; object-fit: contain; }
.taco:nth-child(1) { left: 5%; animation-delay: 0s; }
.taco:nth-child(1) .taco-img { width: 28px; height: 28px; }
.taco:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.taco:nth-child(2) .taco-img { width: 40px; height: 40px; }
.taco:nth-child(3) { left: 35%; animation-delay: 1s; }
.taco:nth-child(3) .taco-img { width: 24px; height: 24px; }
.taco:nth-child(4) { left: 50%; animation-delay: 1.5s; }
.taco:nth-child(5) { left: 65%; animation-delay: 0.3s; }
.taco:nth-child(5) .taco-img { width: 28px; height: 28px; }
.taco:nth-child(6) { left: 75%; animation-delay: 0.8s; }
.taco:nth-child(6) .taco-img { width: 40px; height: 40px; }
.taco:nth-child(7) { left: 88%; animation-delay: 1.2s; }
.taco:nth-child(7) .taco-img { width: 30px; height: 30px; }
.taco:nth-child(8) { left: 45%; animation-delay: 2s; }
.taco:nth-child(8) .taco-img { width: 26px; height: 26px; }
@keyframes tacoFall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; } 90% { opacity: 0.8; }
    100% { transform: translateY(320px) rotate(360deg); opacity: 0; }
}

/* Chalk Toss Demo */
.chalk-toss-demo {
    background: linear-gradient(180deg, #1a1a1a, #000);
    border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; position: relative; overflow: hidden;
    min-height: 280px; border: 1px solid var(--white-10);
}
.chalk-lebron { margin-bottom: 8px; position: relative; z-index: 2; }
.chalk-lebron-img {
    width: 100px; height: 100px; object-fit: contain;
    margin: 0 auto; filter: drop-shadow(0 0 30px var(--yellow-glow));
}
.chalk-particles { position: absolute; top: 30%; left: 0; right: 0; bottom: 0; pointer-events: none; }
.chalk-dot {
    position: absolute; width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.8); border-radius: 50%;
    animation: chalkRise 2.5s ease-out infinite;
}
.chalk-dot:nth-child(1) { left: 25%; animation-delay: 0s; }
.chalk-dot:nth-child(2) { left: 35%; animation-delay: 0.2s; width: 3px; height: 3px; }
.chalk-dot:nth-child(3) { left: 45%; animation-delay: 0.4s; width: 5px; height: 5px; }
.chalk-dot:nth-child(4) { left: 55%; animation-delay: 0.1s; }
.chalk-dot:nth-child(5) { left: 65%; animation-delay: 0.3s; width: 3px; height: 3px; }
.chalk-dot:nth-child(6) { left: 75%; animation-delay: 0.5s; }
.chalk-dot:nth-child(7) { left: 30%; animation-delay: 0.7s; width: 6px; height: 6px; }
.chalk-dot:nth-child(8) { left: 40%; animation-delay: 0.6s; width: 2px; height: 2px; }
.chalk-dot:nth-child(9) { left: 50%; animation-delay: 0.8s; }
.chalk-dot:nth-child(10) { left: 60%; animation-delay: 0.15s; width: 5px; height: 5px; }
.chalk-dot:nth-child(11) { left: 70%; animation-delay: 0.45s; width: 3px; height: 3px; }
.chalk-dot:nth-child(12) { left: 80%; animation-delay: 0.9s; width: 2px; height: 2px; }
@keyframes chalkRise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.9; }
    100% { transform: translateY(-120px) scale(0); opacity: 0; }
}
.chalk-text {
    font-size: 24px; font-weight: 900; color: var(--yellow);
    text-shadow: 0 0 30px var(--yellow-glow);
    letter-spacing: 4px; position: relative; z-index: 2; margin-top: 8px;
}

/* Starting 5 Demo */
.starting5-demo {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: var(--radius-lg); padding: 24px;
    border: 1px solid var(--white-10); text-align: center;
    overflow: hidden;
}
.s5-header {
    font-size: 16px; font-weight: 900; color: var(--yellow);
    letter-spacing: 3px; margin-bottom: 16px;
    text-shadow: 0 0 20px var(--yellow-glow);
}
.s5-lineup { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.s5-slot { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 70px; }
.s5-rank {
    font-size: 9px; font-weight: 900; color: var(--yellow);
    background: var(--yellow-dim); padding: 2px 8px; border-radius: 4px;
    letter-spacing: 1px;
}
.s5-art { width: 56px; height: 56px; border-radius: 6px; object-fit: cover; }
.s5-name { font-size: 7px; color: var(--white-70); line-height: 1.2; }
.s5-share {
    display: inline-block; background: var(--yellow); color: #000;
    padding: 8px 20px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 700;
}

/* MVP Badges Demo */
.badges-demo {
    background: var(--app-bg); border-radius: var(--radius-lg);
    padding: 20px; border: 1px solid var(--white-10);
}
.badge-song {
    display: flex; align-items: center; gap: 10px;
    padding: 8px; background: var(--white-06); border-radius: 10px; margin-bottom: 8px;
}
.badge-art-wrap { position: relative; flex-shrink: 0; }
.badge-art { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; }
.mvp-badge {
    position: absolute; top: -4px; right: -4px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--yellow); color: #000;
    font-size: 11px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.badge-info { flex: 1; }
.badge-name { font-size: 12px; font-weight: 600; color: var(--white); }
.badge-plays { font-size: 10px; color: var(--yellow); font-weight: 500; }

/* Splash Mockup */
.splash-mockup {
    background: #000; border-radius: var(--radius-lg);
    padding: 40px 24px; text-align: center; border: 1px solid var(--white-10);
}
.splash-avatar { animation: bobble 1.5s ease-in-out infinite alternate; display: inline-block; margin-bottom: 16px; }
.bobblehead-img { width: 120px; height: 120px; object-fit: contain; filter: drop-shadow(0 0 20px var(--yellow-glow)); }
@keyframes bobble { 0% { transform: rotate(-8deg) scale(0.95); } 100% { transform: rotate(8deg) scale(1.05); } }
.splash-title-mock {
    font-size: 32px; font-weight: 900; color: var(--yellow);
    text-shadow: 0 0 20px var(--yellow-glow); letter-spacing: 2px; margin-bottom: 4px;
}
.splash-sub { font-size: 14px; color: var(--white-70); margin-bottom: 16px; }
.splash-phrase { font-size: 12px; color: var(--yellow); opacity: 0.7; transition: opacity 0.3s; }

/* Language Grid */
.language-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.lang-item { display: flex; align-items: center; gap: 6px; font-size: 13px; padding: 6px 10px; background: var(--white-06); border-radius: var(--radius-sm); overflow: hidden; }
.lang-normal { color: var(--white-30); text-decoration: line-through; white-space: nowrap; flex-shrink: 1; min-width: 0; }
.lang-arrow { color: var(--yellow); flex-shrink: 0; }
.lang-bron { color: var(--yellow); font-weight: 600; white-space: nowrap; flex-shrink: 1; min-width: 0; }

/* Basketball Court */
.bball-court {
    background: linear-gradient(135deg, #c84e00, #8B4513);
    border-radius: var(--radius-lg); height: 280px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.court-circle { width: 120px; height: 120px; border: 2px solid rgba(255, 255, 255, 0.2); border-radius: 50%; position: absolute; }
.court-line { width: 2px; height: 100%; background: rgba(255, 255, 255, 0.2); position: absolute; }
.bounce-ball-img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: contain;
    animation: bounceBall 1.5s ease-in-out infinite; position: relative; z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(255,215,0,0.3));
}
@keyframes bounceBall { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-40px); } }

/* ============================================
   MINI PLAYER SECTION
   ============================================ */
.mini-player-section { padding: 80px 0; background: var(--bg-primary); }
.mini-player-demo { max-width: 500px; margin: 0 auto; }
.mini-demo-bar {
    background: var(--bg-secondary); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--white-06);
}
.mini-progress { height: 3px; background: var(--white-06); }
.mini-progress-fill { height: 100%; background: var(--yellow); width: 0%; transition: width 0.1s linear; }
.mini-content { display: flex; align-items: center; gap: 12px; padding: 10px 16px; }
.mini-art { width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; overflow: hidden; background: var(--bg-tertiary); }
.mini-art img { width: 100%; height: 100%; object-fit: cover; }
.mini-info { flex: 1; min-width: 0; }
.mini-title { font-size: 14px; font-weight: 600; }
.mini-artist { font-size: 11px; color: var(--white-50); }
.mini-controls { display: flex; align-items: center; gap: 16px; }
.mini-ctrl {
    background: none; border: none; color: var(--white-70);
    cursor: pointer; padding: 4px; transition: color var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.mini-ctrl:hover { color: var(--white); }
.mini-ctrl.play {
    width: 32px; height: 32px; background: var(--white); color: var(--bg-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download {
    padding: 120px 0; background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    position: relative; overflow: hidden;
}
.download::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--yellow-glow) 0%, transparent 70%);
    filter: blur(100px); opacity: 0.2;
}
.download-content { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.download-info { flex: 1; }
.download-info h2 { font-size: 42px; font-weight: 900; margin-bottom: 16px; line-height: 1.1; }
.download-info p { font-size: 18px; color: var(--white-50); margin-bottom: 12px; line-height: 1.7; }
.download-disclaimer { font-size: 14px !important; color: var(--white-30) !important; font-style: italic; margin-bottom: 32px !important; }
.download-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.download-visual { flex-shrink: 0; }
.download-bobblehead { position: relative; }
.download-lebron-img {
    width: 220px; height: 220px; object-fit: contain;
    animation: bobbleFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px var(--yellow-glow));
}
@keyframes bobbleFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg) scale(0.97); }
    50% { transform: translateY(-15px) rotate(5deg) scale(1.03); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 60px 0 24px; background: var(--bg-primary); border-top: 1px solid var(--white-06); }
.footer-content { display: flex; gap: 60px; margin-bottom: 40px; }
.footer-brand { flex: 1; }
.footer-logo {
    font-size: 20px; font-weight: 900; color: var(--yellow);
    letter-spacing: 2px; display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.footer-logo-icon { width: 28px; height: 28px; border-radius: 50%; object-fit: contain; }
.footer-brand p { font-size: 14px; color: var(--white-50); margin-bottom: 8px; }
.footer-quote { font-style: italic; color: var(--yellow); opacity: 0.5; font-size: 13px !important; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.footer-links a { font-size: 14px; color: var(--white-50); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid var(--white-06); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--white-30); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 100px; gap: 40px; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .breakdown-panel { flex-direction: column !important; text-align: center; }
    .panel-info { text-align: center; }
    .panel-features { text-align: left; max-width: 500px; margin: 0 auto; }
    .panel-phone { display: flex; justify-content: center; }
    .fun-card { flex-direction: column !important; text-align: center; }
    .fun-card:nth-child(even) { flex-direction: column !important; }
    .fun-card-info { text-align: center; }
    .fun-list { text-align: left; max-width: 400px; margin: 0 auto; }
    .download-content { flex-direction: column; text-align: center; }
    .download-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(18, 18, 18, 0.98); -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column; padding: 24px; gap: 16px;
        border-bottom: 1px solid var(--white-06);
        -webkit-transform: translateZ(0); transform: translateZ(0);
    }
    .nav-links.active { display: flex; }
    /* Nav links should be larger touch targets on mobile */
    .nav-links a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    .nav-cta {
        text-align: center !important;
        display: block !important;
        padding: 14px 24px !important;
    }
    .mobile-menu-btn { display: flex; }
    .section-header h2 { font-size: 32px; }
    .section-header { margin-bottom: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .song-grid { grid-template-columns: repeat(2, 1fr); }
    .fun-card { padding: 24px; }
    .fun-card-visual { min-width: unset; width: 100%; }
    .language-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 32px; text-align: center; }
    .footer-brand { text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-links { align-items: center; }
    .hero-title { font-size: clamp(42px, 10vw, 60px); }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { gap: 12px; }
    .btn { padding: 12px 24px; font-size: 14px; }
    .download-info h2 { font-size: 32px; }
    .download-lebron-img { width: 160px; height: 160px; }
    .s5-lineup { gap: 6px; }
    .s5-slot { width: 60px; }
    .s5-art { width: 48px; height: 48px; }
    .phone-mockup { width: 240px; }
    .phone-mockup.small { width: 220px; }
    .breakdown-tabs { gap: 8px; }
    .tab-btn { padding: 10px 16px; font-size: 13px; }
    /* Features section tighter */
    .features { padding: 60px 0; }
    .app-breakdown { padding: 60px 0; }
    .songs { padding: 60px 0; }
    .fun-stuff { padding: 60px 0; }
    /* Disable crown trail on mobile - wastes performance */
    #crown-trail { display: none; }
    /* Mini player demo responsive */
    .mini-content { gap: 10px; padding: 8px 12px; }
    /* Feature card centering */
    .feature-card { text-align: center; }
    .feature-icon { margin: 0 auto 16px; }
    /* Fix hero glow overflow */
    .hero-glow { left: 0; width: 100%; }
    /* Prevent floating notes from overflowing */
    .floating-notes { overflow: hidden; }
    /* Breakdown panel centering */
    .breakdown-panel { gap: 32px !important; }
    .panel-info h3 { text-align: center; }
    .panel-info p { text-align: center; }
    /* Fun card demos should be full width */
    .ad-mockup { max-width: 100%; }
    .starting5-demo { max-width: 100%; }
    .badges-demo { max-width: 100%; }
    .splash-mockup { max-width: 100%; }
    .bball-court { max-width: 100%; }
    .chalk-toss-demo { max-width: 100%; }
    .taco-rain-demo { max-width: 100%; }
    /* Language grid center on mobile */
    .language-grid { max-width: 400px; margin: 12px auto 0; }
}

@media (max-width: 480px) {
    .hero { padding: 90px 16px 50px; gap: 24px; min-height: auto; }
    .hero-stats { flex-direction: row; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; }
    .hero-actions { flex-direction: column; align-items: center; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .song-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .song-item { padding: 10px; }
    .song-item-title { font-size: 12px; }
    .song-item-artist { font-size: 10px; }
    /* Phone mockups should stay large enough to be readable */
    .phone-mockup { width: 260px; max-width: 80vw; }
    .phone-mockup.small { width: 240px; max-width: 75vw; }
    .fun-card { padding: 20px; gap: 20px; }
    .fun-card-info h3 { font-size: 20px; }
    .fun-card-info p { font-size: 14px; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 15px; }
    .section-header { margin-bottom: 32px; }
    /* Demo visuals: stay reasonable size, don't shrink too much */
    .ad-mockup { padding: 20px 16px; }
    .ad-image-placeholder { width: 120px; height: 160px; }
    .ad-title { font-size: 18px; }
    .ad-message { font-size: 13px; }
    .chalk-toss-demo { padding: 24px 16px; min-height: 220px; }
    .taco-rain-demo { min-height: 220px; padding: 20px; }
    .taco-lebron-img { width: 64px; height: 64px; }
    .taco-banner-text { font-size: 18px; }
    .s5-slot { width: 52px; }
    .s5-art { width: 44px; height: 44px; }
    .s5-name { font-size: 7px; }
    .s5-header { font-size: 14px; }
    .splash-mockup { padding: 28px 20px; }
    .splash-title-mock { font-size: 26px; }
    .bobblehead-img { width: 90px; height: 90px; }
    .chalk-lebron-img { width: 80px; height: 80px; }
    .chalk-text { font-size: 20px; }
    .bball-court { height: 220px; }
    .bounce-ball-img { width: 60px; height: 60px; }
    .court-circle { width: 90px; height: 90px; }
    .badges-demo { padding: 16px; }
    .badge-song { padding: 6px; gap: 8px; }
    .badge-art { width: 40px; height: 40px; }
    .badge-name { font-size: 11px; }
    .badge-plays { font-size: 9px; }
    .mvp-badge { width: 18px; height: 18px; font-size: 10px; }
    .download { padding: 60px 0; }
    .download-buttons { flex-direction: column; width: 100%; }
    .download-buttons .btn { width: 100%; justify-content: center; }
    .footer { padding: 40px 0 20px; }
    .container { padding: 0 16px; }
    /* Better stat layout on small screens */
    .stat-number { font-size: 28px; }
    .stat-plus, .stat-percent { font-size: 20px; }
    .stat-label { font-size: 12px; }
    /* Fun list more compact */
    .fun-list { max-width: 100%; }
    .fun-list li { font-size: 13px; }
    /* Panel info text */
    .panel-info h3 { font-size: 22px; }
    .panel-info p { font-size: 14px; }
    .panel-features li { font-size: 13px; }
    .panel-features { max-width: 100%; }
    /* Mini player touch-friendly */
    .mini-ctrl { padding: 8px; min-width: 40px; min-height: 40px; }
    .mini-ctrl.play { width: 36px; height: 36px; }
    /* Download section */
    .download-info h2 { font-size: 26px; }
    .download-info p { font-size: 15px; }
    .download-lebron-img { width: 140px; height: 140px; }
    /* Breakdown tabs scroll if needed */
    .breakdown-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .tab-btn { white-space: nowrap; flex-shrink: 0; }
}

@media (max-width: 360px) {
    .hero { padding: 80px 12px 40px; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-badge { font-size: 9px; padding: 5px 12px; letter-spacing: 2px; }
    .section-header h2 { font-size: 22px; }
    .section-header p { font-size: 13px; }
    .container { padding: 0 12px; }
    .fun-card { padding: 16px; gap: 16px; }
    .phone-mockup { max-width: 70vw; }
    .phone-mockup.small { max-width: 65vw; }
    .s5-slot { width: 44px; }
    .s5-art { width: 36px; height: 36px; }
    .s5-rank { font-size: 8px; padding: 1px 6px; }
}

/* Safari-specific landing page fixes */
@supports (-webkit-touch-callout: none) {
    .navbar.scrolled {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
