/* Mozay Calloway — Shared Styles
 * Brand: deep blue (#3b82f6) on dark, Outfit font
 * Adapted from mentalstamina.world pattern
 */

:root {
    /* ── Site contract variables (--site-* canonical) ── */
    --site-hue: 43;
    --site-primary: #C9A000;
    --site-primary-dark: #A8790A;
    --site-text-on-primary: #000000;
    --site-accent: #E86A2E;
    --site-bg: #090909;
    --site-surface: #1C2E40;
    --site-text: #F0EDE8;
    --site-text-muted: #9a9490;
    --site-border: #2a2510;
    --site-font-body: 'Outfit', system-ui, sans-serif;
    --site-font-heading: 'Outfit', system-ui, sans-serif;
    --site-font-display: 'Barlow Condensed', sans-serif;
    --site-font-script: 'Pinyon Script', cursive;
    --site-radius: 8px;
    --site-shadow: 0 4px 24px rgba(0,0,0,0.5);
    /* ── member-kit aliases ── */
    --mk-accent: var(--site-primary);
    --mk-radius: var(--site-radius);
    --mk-font: var(--site-font-body);
    --mk-transition: 0.2s ease;
    /* ── gold semantic tokens ── */
    --gold: #C9A000;
    --gold-light: #F5D37A;
    --gold-dark: #A8790A;
    --gold-glow-sm: rgba(201,160,0,0.3);
    --gold-glow-md: rgba(201,160,0,0.45);
    --gold-tint: rgba(201,160,0,0.1);
    --gold-border: rgba(201,160,0,0.2);
    --gold-border-strong: rgba(201,160,0,0.4);
    /* ── legacy brand vars (updated to gold) ── */
    --accent-light: #F5D37A;
    --accent: #C9A000;
    --accent-dark: #A8790A;
    --accent-gradient: linear-gradient(135deg, #C9A000 0%, #F5D37A 50%, #A8790A 100%);
    --accent-text: linear-gradient(135deg, #C9A000, #F5D37A, #A8790A);
    --frame-width: 0px;
    --site-color-gold: #C9A000;
    --site-color-badge-gold: #F5D37A;
    /* ── Miami ambient ── */
    --miami-sky: linear-gradient(180deg, #090909 0%, #1C2E40 60%, #2A1800 100%);
    --miami-glow: radial-gradient(ellipse at 70% 80%, rgba(232,106,46,0.2) 0%, transparent 60%);
    /* ── Semantic theme tokens ── */
    --bg: #090909;
    --bg-card: #0E0E0E;
    --bg-soft: #141414;
    --text: #F0EDE8;
    --text-dark: #000000;
    --text-muted: rgba(240,237,232,0.6);
    --text-dim: rgba(240,237,232,0.4);
    --border: rgba(201,160,0,0.15);
    --border-strong: rgba(201,160,0,0.3);
    --overlay: rgba(0,0,0,0.6);
    /* ── hhw-* semantic tokens (DO NOT CHANGE) ── */
    --hhw-success: #22c55e;
    --hhw-success-bg: rgba(34,197,94,0.1);
    --hhw-error: #ef4444;
    --hhw-error-bg: rgba(239,68,68,0.1);
    --hhw-warning: #f59e0b;
    --hhw-info: #3b82f6;
    /* ── color aliases ── */
    --color-primary-glow-sm: rgba(201,160,0,0.3);
    --color-primary-glow-md: rgba(201,160,0,0.45);
    --color-primary-tint: rgba(201,160,0,0.1);
    --overlay-heavy: rgba(0,0,0,0.85);
    --nav-bg: rgba(9,9,9,0.96);
    --player-bg: rgba(0,0,0,0.97);
    --input-bg: rgba(255,255,255,0.05);
    --error: #ff6b6b;
    --nav-height: 56px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    background-color: var(--site-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--site-font-heading); }

a { color: inherit; text-decoration: none; }

input, select, textarea { font-size: 1rem; }

/* ===== GLOBAL FOCUS STYLES ===== */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10001;
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0 0 8px 0;
}
.skip-to-content:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    overflow: visible;
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== NAV ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.site-nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--site-bg);
    color: var(--site-color-badge-gold);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', system-ui, sans-serif;
    flex-shrink: 0;
}

.nav-logo-name {
    font-weight: 700;
}

.nav-admin-link {
    color: var(--hhw-warning) !important;
}

/* Secondary nav items (de-emphasised, smaller) */
.nav-link-secondary {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    opacity: 0.75;
}

/* Miami nav link badge chips */
.nav-miami-link { position: relative; }
.nav-badge-live {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 1px 5px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 4px;
    text-transform: uppercase;
}
.nav-badge-upcoming {
    display: inline-block;
    background: var(--gold-tint);
    color: var(--gold);
    border: 1px solid var(--gold-border-strong);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 1px 5px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 4px;
    text-transform: uppercase;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.site-nav-links a[aria-current="page"] {
    color: var(--accent);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .site-nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--nav-bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        gap: 0;
    }
    .site-nav-links.open {
        display: flex;
    }
    .site-nav-links a {
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
}

/* ===== FOOTER ===== */
footer {
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: var(--transition);
}
.social-link:hover {
    color: var(--accent);
    transform: scale(1.15);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.powered-by {
    font-size: 0.7rem;
    color: var(--text-dim);
}
.powered-by a {
    color: var(--accent);
    text-decoration: none;
}
.powered-by a:hover {
    text-decoration: underline;
}

/* ===== STREAMING LINKS ===== */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
}

.streaming-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--border-strong);
    background: var(--bg-soft);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.streaming-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--border);
}
.streaming-link i {
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
}

.mk-tab {
    min-height: 44px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 6px 20px var(--color-primary-glow-sm);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-primary-glow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-height: 44px;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    color: var(--text);
    background: transparent;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--border);
    transform: translateY(-3px);
}

/* ===== PERSISTENT AUDIO PLAYER ===== */
.mc-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--player-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.mc-player.visible {
    transform: translateY(0);
}

.mc-player-art-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}
.mc-player-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mc-player-info {
    flex: 1;
    min-width: 0;
}
.mc-player-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mc-player-artist {
    font-size: 0.65rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mc-player-controls {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.mc-player-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    font-size: 0.85rem;
}
.mc-player-btn:hover {
    color: var(--accent);
}

.mc-btn-play {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    color: var(--accent);
}
.mc-btn-play:hover {
    background: var(--accent);
    color: var(--bg);
}
.mc-btn-play svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.mc-player-progress {
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    cursor: pointer;
}
.mc-player-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
}
.mc-player-progress:hover {
    height: 6px;
    top: -6px;
}

.mc-player-time {
    font-size: 0.65rem;
    color: var(--text-dim);
    white-space: nowrap;
    flex-shrink: 0;
}

.mc-volume-slider {
    width: 60px;
    accent-color: var(--accent);
}

.mc-btn-shuffle.active {
    color: var(--accent);
}

@media (max-width: 600px) {
    .mc-player-time,
    .mc-btn-shuffle,
    .mc-volume-slider,
    .mc-btn-volume {
        display: none;
    }
}

/* ===== PAGE CONTENT SPACING (account for nav + player) ===== */
.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 2rem) 2rem 5rem;
}

/* ===== SECTION HEADINGS ===== */
.page-heading {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-count {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ===== CARD STYLES ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--site-shadow);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== REGIONAL SEO PAGES ===== */
.regional-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg));
    text-align: center;
}
.regional-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.regional-hero .hero-subtitle {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}
.regional-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.regional-content {
    padding: 3rem 0;
}
.content-body {
    max-width: 740px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-muted);
}
.content-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.5rem 0 1rem;
}
.content-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}
.content-body p {
    margin-bottom: 1.25rem;
}
.content-body strong {
    color: var(--accent-light);
}
.content-body em {
    color: var(--accent-light);
    font-style: italic;
}
.content-body ul, .content-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.content-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.content-body li strong {
    color: var(--text);
}
.regional-streaming {
    padding: 3rem 0;
    background: var(--bg-soft);
    text-align: center;
}
.regional-streaming h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.regional-related {
    padding: 3rem 0;
    text-align: center;
}
.regional-related h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.related-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-strong);
    border-radius: 2rem;
    color: var(--accent-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.related-link:hover {
    background: var(--accent);
    color: var(--text);
    border-color: var(--accent);
}
.regional-cta {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg));
    text-align: center;
}
.regional-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.regional-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: var(--accent-light);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--accent);
}

/* ===== BLOG ===== */
.blog-hero {
    padding: 6rem 0 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg));
}
.blog-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--accent-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.blog-hero p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.blog-listing {
    padding: 2rem 0 4rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card-body {
    padding: 1.25rem;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: block;
    margin-bottom: 0.5rem;
}
.blog-card-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.blog-card-body h2 a {
    color: var(--text);
    text-decoration: none;
}
.blog-card-body h2 a:hover {
    color: var(--accent-light);
}
.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.blog-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--color-primary-tint);
    border: 1px solid var(--border);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--accent-light);
}
.blog-read-more {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.blog-read-more:hover {
    color: var(--accent-light);
}
.blog-empty {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-muted);
}
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}
.page-info {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Blog Post Page */
.blog-post-header {
    padding: 6rem 0 2rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg));
}
.blog-post-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    max-width: 740px;
    margin: 0 auto 1rem;
}
.blog-post-meta {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.meta-sep {
    margin: 0 0.5rem;
    color: var(--border-strong);
}
.blog-featured-image {
    padding: 1rem 0;
}
.blog-featured-image img {
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 1rem;
}
.blog-post-content {
    padding: 2rem 0 3rem;
}
.blog-related {
    padding: 3rem 0;
    background: var(--bg-soft);
    text-align: center;
}
.blog-related h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.related-post-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}
.related-post-link:hover {
    border-color: var(--accent);
    background: var(--bg-card);
}
.related-post-title {
    color: var(--text);
    font-weight: 500;
}
.related-post-link time {
    color: var(--text-dim);
    font-size: 0.8rem;
}
.blog-back {
    padding: 2rem 0 4rem;
    text-align: center;
}

/* ===== HHW BADGE COMPONENTS ===== */
.hhw-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}
.hhw-badge--ok    { background: var(--hhw-success-bg); color: var(--hhw-success); }
.hhw-badge--warn  { background: rgba(245,158,11,0.1);  color: var(--hhw-warning); }
.hhw-badge--error { background: var(--hhw-error-bg);   color: var(--hhw-error); }
.hhw-badge--info  { background: rgba(59,130,246,0.1);  color: var(--hhw-info); }

/* ===== HHW 2FA INPUT ===== */
.hhw-2fa-input {
    width: 3rem;
    height: 3.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--site-border);
    border-radius: var(--site-radius);
    background: var(--site-surface);
    color: var(--site-text);
}
.hhw-2fa-input:focus {
    outline: none;
    border-color: var(--site-primary);
}

/* ===== 480px BREAKPOINT — single-column grid collapse ===== */
@media (max-width: 480px) {
    .card-grid, .stats-grid, [class*="grid-cols"],
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    .page-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== TIER COLOR CLASSES (E15 — replaces inline hex) ===== */
.tier-color-0 { color: var(--site-text-muted); }
.tier-color-1 { color: var(--site-accent); }
.tier-color-2 { color: var(--site-primary); }
.tier-color-3 { color: var(--site-color-gold); } /* gold for VIP */

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --site-bg: #090909;
        --site-surface: #1C2E40;
        --site-text: #F0EDE8;
        --site-text-muted: #9a9490;
        --site-border: #2a2510;
        --site-primary: #D4AA00;
        --site-accent: #F07A3E;
    }
}

/* ===== MIAMI EXECUTIVE DESIGN SYSTEM ===== */

/* Display headline — Barlow Condensed, poster-style */
.display-headline {
    font-family: var(--site-font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
}

/* Script accent — Pinyon Script */
.script-accent {
    font-family: var(--site-font-script);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Gold gradient text clip */
.gold-gradient-text {
    background: linear-gradient(135deg, hsl(var(--site-hue), 90%, 35%) 0%, hsl(var(--site-hue), 80%, 55%) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold CTA button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--gold);
    color: var(--text-dark, #000000);
    font-weight: 700;
    box-shadow: 0 0 24px var(--gold-glow-md);
    min-height: 44px;
    border: none;
    cursor: pointer;
    border-radius: var(--site-radius);
    padding: 0 1.5rem;
    font-family: var(--site-font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 32px var(--gold-glow-md);
}

/* Miami Presence section */
.miami-presence {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}
.miami-presence::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--miami-glow);
    pointer-events: none;
}

/* Poster card — vertical on mobile, side-by-side at 768px+ */
.miami-poster-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 48px var(--gold-glow-sm), 0 8px 32px rgba(0,0,0,0.6);
}
@media (min-width: 768px) {
    .miami-poster-card {
        grid-template-columns: 1fr 1fr;
    }
}

/* Poster image */
.miami-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    display: block;
}
@media (min-width: 768px) {
    .miami-poster-img {
        aspect-ratio: auto;
        min-height: 520px;
    }
}

/* Event details panel */
.miami-event-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
@media (min-width: 768px) {
    .miami-event-details {
        padding: 3rem;
    }
}

/* Gold label chip */
.miami-label {
    display: inline-block;
    font-family: var(--site-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    border: 1px solid var(--gold-border-strong);
    border-radius: 4px;
    padding: 0.3rem 0.75rem;
    text-transform: uppercase;
    background: var(--gold-tint);
    width: fit-content;
}

/* Miami headline sizing */
.miami-event-details .display-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0;
}

.miami-org {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.miami-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin: 0;
}

.miami-cta-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Hero gradient vignette — must be absolute to cover hero-bg */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(9,9,9,0.2) 0%,
        rgba(9,9,9,0.05) 40%,
        rgba(168,121,10,0.12) 80%,
        rgba(9,9,9,0.75) 100%
    );
}

/* Movement Section */
.movement-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.movement-section .section-title {
    margin-bottom: 2.5rem;
}
.movement-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.movement-feature {
    flex: 1 1 220px;
    max-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--site-radius);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.movement-feature:hover {
    border-color: var(--gold-border-strong);
    transform: translateY(-4px);
}
.movement-feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.movement-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}
.movement-feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.movement-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 480px) {
    .movement-features {
        flex-direction: column;
        align-items: center;
    }
    .movement-feature {
        max-width: 100%;
        width: 100%;
    }
    .movement-cta {
        flex-direction: column;
        align-items: center;
    }
    .movement-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Contact / Newsletter email input */
.contact-email-input {
    flex: 1;
    min-width: 0;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    color: var(--text);
    outline: none;
    min-height: 44px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}
.contact-email-input:focus {
    border-color: var(--gold-border-strong);
}
.contact-email-input::placeholder {
    color: var(--text-muted);
}

/* Video thumbnail cards (homepage + videos page — no iframe) */
.video-thumb-link {
    display: block;
    text-decoration: none;
}
.video-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--site-radius) var(--site-radius) 0 0;
    background: var(--bg-soft);
}
.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.video-thumb-link:hover .video-thumb-img,
.video-thumb-link:focus-visible .video-thumb-img {
    transform: scale(1.04);
}
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.video-thumb-link:hover .video-play-overlay,
.video-thumb-link:focus-visible .video-play-overlay {
    opacity: 0.85;
}

/* ===== HOMEPAGE SECTIONS ===== */

/* ── Container ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (max-width: 320px) {
    .container {
        padding: 0 1rem;
    }
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100dvh;
    min-height: 100vh; /* fallback */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
}

.hero-tag {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-name {
    font-family: var(--site-font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-name span {
    display: block;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Latest Release ── */
.latest-release {
    padding: 5rem 1rem;
    background: var(--bg-soft);
}

.release-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .release-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.release-cover {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--site-shadow);
}
.release-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.release-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.release-info h3 {
    font-family: var(--site-font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Section Titles ── */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-family: var(--site-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}
.section-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Videos Grid ── */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 480px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--site-radius);
    overflow: hidden;
    transition: var(--transition);
}
.video-card:hover {
    border-color: var(--gold-border-strong);
    transform: translateY(-4px);
    box-shadow: var(--site-shadow);
}

.video-content {
    padding: 0.75rem 1rem;
}
.video-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.video-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    border-radius: var(--site-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.04);
}

/* ── Fade-in scroll reveal ── */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HOMEPAGE v2 (MS-PATTERN) ===== */

/* ── Hero bg image with slowZoom ── */
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}

/* ── Hero content stagger fade-up ── */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpHero 0.8s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content > *:nth-child(2) { animation-delay: 0.6s; }
.hero-content > *:nth-child(3) { animation-delay: 0.9s; }
.hero-content > *:nth-child(4) { animation-delay: 1.2s; }
.hero-content > *:nth-child(5) { animation-delay: 1.4s; }

@keyframes fadeUpHero {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Tagline ── */
.tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* ── Hero artist name display ── */
.hero-artist-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    gap: 0;
}
.hero-name-first {
    font-family: var(--site-font-display);
    font-size: clamp(4rem, 16vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.hero-name-last {
    font-family: var(--site-font-display);
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}
@media (max-width: 480px) {
    .hero-name-first { font-size: clamp(3rem, 14vw, 5rem); }
    .hero-name-last  { font-size: clamp(1.4rem, 6vw, 2.4rem); }
}

/* ── Hero social icon row ── */
.hero-streaming {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.hero-streaming .social-link {
    font-size: 1.5rem;
    color: var(--text-muted);
    background: var(--input-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.hero-streaming .social-link:hover {
    color: var(--gold);
    background: var(--border);
}

/* ── Hero CTA movement button ── */
.btn-movement {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 44px;
    margin-top: 1.2rem;
    border: none;
}
.btn-movement:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ── Hero fan count ── */
.hero-fan-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ── Latest Release Banner ── */
.latest-release-banner {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    background: var(--bg-soft);
}

.latest-release-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.latest-release-art {
    flex-shrink: 0;
    width: 320px;
}
.latest-release-art img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 48px var(--border);
    display: block;
}

.latest-release-info {
    flex: 1;
}

.latest-release-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.latest-release-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.latest-release-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.latest-release-credit {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.latest-release-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Section heading (MS-pattern standalone, no .section-title wrapper needed) ── */
.section-heading {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    background: var(--accent-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Section label (eyebrow text above heading) ── */
.section-label {
    text-align: center;
    font-family: var(--site-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* ── Latest Music ── */
.latest-music {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    background: var(--bg);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
/* Single album: center and cap at 320px so it doesn't stretch full-width */
.album-grid:has(> .album-card:only-child) {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
}

.album-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* scroll-reveal defaults */
    opacity: 0;
    transform: translateY(20px);
}
.album-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.album-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 40px var(--border);
}

.album-card-img-wrap {
    position: relative;
    display: block;
}

.album-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.album-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}
.album-card:hover .album-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.album-play-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--bg-soft);
    margin-left: 3px;
}

.album-card-title {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-align: center;
}

/* ── Join Movement ── */
.join-movement {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-card) 100%);
    text-align: center;
    /* scroll-reveal */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.join-movement.visible {
    opacity: 1;
    transform: translateY(0);
}

.join-movement-inner {
    max-width: 640px;
    margin: 0 auto;
}

.join-movement-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.join-movement-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.join-movement-sub {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.join-movement-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.join-movement-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
}
.join-movement-feature .feature-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.join-movement-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.join-movement-social-proof {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

/* ── Music Videos Section ── */
.music-videos-section {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    background: var(--bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 2rem;
}
@media (min-width: 769px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-thumb {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* scroll-reveal */
    opacity: 0;
    transform: translateY(20px);
}
.video-thumb.visible {
    opacity: 1;
    transform: translateY(0);
}
.video-thumb:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 12px 32px var(--border);
}

.video-thumb-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.video-thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}
.video-thumb:hover .video-thumb-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.video-thumb-play::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--bg-soft);
    margin-left: 2px;
}

.video-thumb-title {
    padding: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-align: center;
}

.view-all-link {
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
    min-height: 44px;
    line-height: 44px;
}
.view-all-link:hover {
    color: var(--gold-light);
}

/* ── Live / Miami Callout ── */
.live-callout {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    background: var(--bg);
}

.live-callout-card {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 16px;
    box-shadow: 0 0 40px var(--border);
    /* scroll-reveal */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.live-callout-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.live-callout-art {
    flex-shrink: 0;
    width: 100px;
}
.live-callout-art img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.live-callout-info {
    flex: 1;
}

.live-callout-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.live-callout-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.live-callout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
    min-height: 44px;
}
.live-callout-btn:hover {
    color: var(--gold-light);
}

/* ── Streaming Section ── */
.streaming-section {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem 5rem;
    background: var(--bg);
    text-align: center;
    /* scroll-reveal */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.streaming-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.streaming-section .section-heading {
    margin-bottom: 2rem;
}

/* ── Latest release banner scroll-reveal ── */
.latest-release-banner {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.latest-release-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive breakpoints ── */
@media (max-width: 768px) {
    .latest-release-banner { padding: 3rem 1rem; }
    .latest-release-inner {
        flex-direction: column;
        text-align: center;
    }
    .latest-release-art { width: 240px; }
    .latest-release-buttons { justify-content: center; }

    .latest-music { padding: 3rem 1rem; }

    .music-videos-section { padding: 3rem 1rem; }

    .live-callout { padding: 2rem 1rem; }
    .live-callout-card {
        flex-direction: column;
        text-align: center;
    }
    .live-callout-art { width: 80px; }

    .streaming-section { padding: 2rem 1rem 3rem; }

    .join-movement { padding: 3rem 1.25rem; }
    .join-movement-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .join-movement-buttons {
        flex-direction: column;
        align-items: center;
    }
    .join-movement-buttons .btn,
    .join-movement-buttons .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .album-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 320px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .tagline {
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
}

/* ===== MIAMI EVENT BANNER (site-wide announcement bar) ===== */
.miami-event-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(168,121,10,0.25) 0%, rgba(201,160,0,0.15) 100%);
    border-bottom: 1px solid var(--gold-border-strong);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text);
    position: relative;
    z-index: 999;
}
.miami-event-banner.hidden { display: none; }
.miami-banner-icon { font-style: normal; flex-shrink: 0; }
.miami-banner-text { flex: 1; }
.miami-banner-cta {
    color: var(--gold);
    font-weight: 700;
    margin-left: 0.5rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.miami-banner-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    flex-shrink: 0;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.miami-banner-close:hover { color: var(--text); }

/* ===== FOOTER EXTENDED ===== */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.25rem 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.footer-link {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.25rem;
}
.footer-link:hover { color: var(--gold); }
.footer-sep {
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    user-select: none;
}
.footer-miami-link {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

/* ===== COMMUNITY PAGE ===== */
.comm-wrap { max-width: 1000px; margin: 0 auto; padding: calc(var(--nav-height, 56px) + 3rem) 1rem 4rem; }
.comm-hero { text-align: center; margin-bottom: 3.5rem; }
.comm-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; line-height: 1.15;
    background: var(--accent-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.comm-hero p { color: var(--text-muted); font-size: 1rem; margin-top: 0.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.tier-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 4rem; }
@media (min-width: 600px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }

.tier-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.75rem 1.25rem 1.5rem;
    display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s;
}
.tier-card:hover { transform: translateY(-3px); }
.tier-card.featured { border-color: var(--gold); position: relative; }
.tier-card.featured::before {
    content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000; font-size: 0.72rem; font-weight: 700;
    padding: 0.2rem 0.9rem; border-radius: 0 0 8px 8px;
}
.tier-card.current { border-color: rgba(201,160,0,0.6); }

.tier-emotion { font-size: 1.15rem; font-weight: 900; line-height: 1.25; color: var(--text); margin-bottom: 0.75rem; }
.tier-card.featured .tier-emotion { color: var(--gold-light); }

.tier-name-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-dim); background: var(--bg-soft); border: 1px solid var(--border);
    padding: 0.2rem 0.6rem; border-radius: 50px; margin-bottom: 1rem;
}
.tier-card.featured .tier-name-badge { color: var(--gold); border-color: rgba(201,160,0,0.35); }

.tier-benefits { list-style: none; margin-bottom: 1.25rem; flex: 1; }
.tier-benefits li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: var(--text-muted); padding: 0.32rem 0; font-weight: 500; }
.tier-benefits li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.tier-price-row { margin-bottom: 1rem; }
.tier-price { font-size: 1.15rem; font-weight: 900; color: var(--gold); }
.tier-price span { font-size: 0.78rem; font-weight: 400; color: var(--text-dim); }

.btn-tier {
    display: block; text-align: center; border-radius: 8px;
    padding: 0.7rem 1rem; min-height: 44px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.18s;
    cursor: pointer; border: none; font-family: 'Outfit', sans-serif;
}
.btn-tier-primary { background: var(--gold); color: #000; }
.btn-tier-primary:hover { opacity: 0.88; }
.btn-tier-outline { border: 1px solid var(--border-strong); background: transparent; color: var(--text-muted); }
.btn-tier-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-tier-current  { border: 1px solid rgba(201,160,0,0.4); background: rgba(201,160,0,0.08); color: var(--gold); cursor: default; }
.btn-tier-disabled { opacity: 0.5; cursor: default; }

.sticky-join-bar {
    position: sticky; bottom: 0; z-index: 100;
    background: var(--accent-gradient); color: #000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem; gap: 1rem;
}
@media (max-width: 480px) { .sticky-join-bar { padding: 0.85rem 1rem; } }
.sticky-join-text { font-size: 0.9rem; font-weight: 700; color: #000; }
.sticky-join-btn {
    background: #000; color: var(--gold); font-weight: 900;
    padding: 0.6rem 1.5rem; border-radius: 6px; min-height: 44px;
    white-space: nowrap; text-decoration: none; font-size: 0.9rem;
    transition: opacity 0.18s; display: inline-flex; align-items: center;
    font-family: 'Outfit', sans-serif;
}
.sticky-join-btn:hover { opacity: 0.85; }

.latest-section { margin-top: 2rem; }
.latest-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.latest-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .latest-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .latest-grid { grid-template-columns: repeat(3, 1fr); } }
.latest-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit;
    transition: border-color 0.2s, transform 0.15s;
}
.latest-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.latest-card-thumb { aspect-ratio: 16/9; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.latest-card-thumb i { font-size: 2rem; color: var(--gold); opacity: 0.5; }
.latest-card-body { padding: 0.85rem; }
.latest-card-type { font-size: 0.75rem; color: var(--gold); font-weight: 600; margin-bottom: 0.3rem; }
.latest-card-title { font-size: 0.9rem; font-weight: 700; }
.no-content { text-align: center; color: var(--text-muted); padding: 3rem 1rem; }
.no-content i { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 0.75rem; }
.section-icon-gold { color: var(--gold); margin-right: 0.5rem; }
.latest-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.view-all-centered { text-align: center; margin-top: 1.5rem; }
.view-all-centered a { color: var(--gold); text-decoration: underline; font-size: 0.9rem; text-underline-offset: 3px; }

/* ===== CONTACT PAGE ===== */
.contact-wrap { max-width: 720px; margin: 0 auto; padding: calc(var(--nav-height, 56px) + 3rem) 1rem 4rem; }
.contact-hero { text-align: center; margin-bottom: 2.5rem; }
.contact-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 900;
    background: var(--accent-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-hero p { color: var(--text-muted); margin-top: 0.5rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 2rem 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; font-size: 16px;
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 8px; color: var(--site-text); font-family: inherit;
    min-height: 44px; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.btn-submit {
    width: 100%; padding: 0.9rem 1.5rem; font-size: 1rem; font-weight: 700;
    background: var(--accent); color: #fff; border: none; border-radius: 8px;
    cursor: pointer; min-height: 44px; transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }
.alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.92rem; }
.alert-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); color: #f87171; }
.contact-direct { text-align: center; margin-top: 2rem; color: var(--text-muted); font-size: 0.9rem; }
.contact-direct a { color: var(--accent); }


/* ============================================================================
   PAGE-LEVEL STYLES — migrated from per-page <style> blocks 2026-05-07 (#433)
   23 pages: about, blog, blog-post, cart, checkout, dashboard, exclusive,
   lyrics, members, miami-event, music (2 blocks), onboard, order-confirmation,
   order-status, press, product, shop, shows, sponsor, sponsors, upgrade,
   videos, voice
   ============================================================================ */

/* === migrated from about.php (1 block) === */
    .about-hero {
        padding: calc(var(--nav-height, 56px) + 3rem) 0 4rem;
        background: linear-gradient(180deg, var(--gold-tint) 0%, transparent 100%);
    }
    .about-hero-grid {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 3rem;
        align-items: center;
    }
    .about-hero-img img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .hero-tag {
        display: inline-block;
        padding: 0.375rem 0.875rem;
        background: var(--gold-tint);
        border: 1px solid var(--gold-border);
        border-radius: 50px;
        color: var(--site-primary);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    .about-hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        font-weight: 900;
        margin-bottom: 0.5rem;
        color: var(--text);
        line-height: 1;
    }
    .tagline {
        font-size: 1.25rem;
        color: var(--text-muted);
        font-style: italic;
        margin-bottom: 2rem;
    }
    .hero-meta {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        color: var(--text-muted);
    }
    .hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
    .hero-meta i { color: var(--site-primary); }
    .about-bio {
        padding: 4rem 0;
    }
    .about-bio h2, .discography h2, .milestones h2, .about-cta h2 {
        font-size: 2rem;
        color: var(--text);
        margin-bottom: 2rem;
        text-align: center;
    }
    .bio-content {
        max-width: 780px;
        margin: 0 auto;
    }
    .bio-content p {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 1.0625rem;
    }
    .bio-content strong { color: var(--text); }
    .discography {
        padding: 4rem 0;
        background: var(--bg-card);
    }
    .discography-timeline {
        max-width: 720px;
        margin: 0 auto;
    }
    .album-card {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 2rem;
        background: var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 2rem;
    }
    .album-art img {
        width: 100%;
        border-radius: 8px;
    }
    .album-year {
        color: var(--site-primary);
        font-weight: 700;
        font-size: 0.875rem;
        letter-spacing: 1px;
    }
    .album-info h3 {
        font-size: 1.75rem;
        color: var(--text);
        margin: 0.5rem 0 1rem;
    }
    .album-info p {
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .album-tracks {
        color: var(--text-dim);
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    .album-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .milestones {
        padding: 4rem 0;
    }
    .milestones-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
        gap: 1.5rem;
    }
    .milestone {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s;
    }
    .milestone:hover {
        border-color: var(--border-strong);
        transform: translateY(-4px);
    }
    .milestone i {
        font-size: 2rem;
        color: var(--site-primary);
        margin-bottom: 1rem;
    }
    .milestone h3 {
        color: var(--text);
        margin-bottom: 0.5rem;
    }
    .milestone p {
        color: var(--text-muted);
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .about-cta {
        padding: 4rem 0;
        text-align: center;
        background: linear-gradient(135deg, var(--gold-tint) 0%, transparent 100%);
    }
    .about-cta p {
        color: var(--text-muted);
        margin-bottom: 2rem;
    }
    .cta-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    @media (max-width: 780px) {
        .about-hero-grid { grid-template-columns: 1fr; text-align: center; }
        .about-hero-img { max-width: 280px; margin: 0 auto; }
        .hero-meta { justify-content: center; }
        .album-card { grid-template-columns: 1fr; text-align: center; }
        .album-actions { justify-content: center; }
    }

/* === migrated from blog.php (1 block) === */
    /* Blog listing — mobile-first */
    .blog-hero {
        padding-top: 6rem; /* clears fixed nav (80px+) */
        padding-bottom: 2rem;
        text-align: center;
    }
    .blog-hero h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        letter-spacing: 0.03em;
        margin: 0 0 0.5rem;
    }
    .blog-hero p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Search + filter bar */
    .blog-controls {
        max-width: 900px;
        margin: 0 auto 2rem;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .blog-search {
        display: flex;
        gap: 0.5rem;
    }
    .blog-search input {
        flex: 1;
        min-height: 44px;
        padding: 0 1rem;
        border-radius: 6px;
        border: 1px solid var(--border, #333);
        background: var(--card-bg, #1a1a1a);
        color: var(--text, #fff);
        font-size: 1rem;
        box-sizing: border-box;
    }
    .blog-search input:focus {
        outline: 2px solid var(--gold, #C9A000);
        outline-offset: 1px;
    }
    .blog-search button {
        min-height: 44px;
        min-width: 44px;
        padding: 0 1.2rem;
        border-radius: 6px;
        border: none;
        background: var(--gold, #C9A000);
        color: #000;
        font-weight: 700;
        cursor: pointer;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    .blog-search button:hover { opacity: 0.85; }

    .blog-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
    }
    .blog-tag {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0 0.85rem;
        border-radius: 100px;
        border: 1px solid var(--border, #333);
        background: transparent;
        color: var(--text-muted, #aaa);
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        transition: border-color 0.2s, color 0.2s;
        cursor: pointer;
    }
    .blog-tag:hover,
    .blog-tag.active {
        border-color: var(--gold, #C9A000);
        color: var(--gold, #C9A000);
    }

    /* Grid */
    .blog-grid {
        max-width: 900px;
        margin: 0 auto 3rem;
        padding: 0 1rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    @media (min-width: 480px) {
        .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 768px) {
        .blog-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .blog-card {
        background: var(--card-bg, #1a1a1a);
        border: 1px solid var(--border, #2a2a2a);
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: border-color 0.2s, transform 0.2s;
    }
    .blog-card:hover {
        border-color: var(--gold, #C9A000);
        transform: translateY(-2px);
    }
    .blog-card-img {
        aspect-ratio: 16/9;
        overflow: hidden;
        background: #111;
        flex-shrink: 0;
    }
    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .blog-card-img-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        color: var(--gold, #C9A000);
        font-size: 2rem;
    }
    .blog-card-body {
        padding: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .blog-card-meta {
        font-size: 0.75rem;
        color: var(--text-muted, #888);
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .blog-card-title {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.3;
        margin: 0;
    }
    .blog-card-title a {
        color: var(--text, #fff);
        text-decoration: none;
    }
    .blog-card-title a:hover { color: var(--gold, #C9A000); }
    .blog-card-excerpt {
        font-size: 0.875rem;
        color: var(--text-muted, #aaa);
        line-height: 1.5;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog-card-read {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        min-height: 44px;
        padding: 0.5rem 0;
        color: var(--gold, #C9A000);
        font-size: 0.85rem;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: auto;
    }
    .blog-card-read:hover { opacity: 0.75; }
    .blog-card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    .blog-card-tag {
        font-size: 0.7rem;
        background: rgba(201,160,0,0.12);
        color: var(--gold, #C9A000);
        border-radius: 4px;
        padding: 2px 7px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    /* Empty state */
    .blog-empty {
        text-align: center;
        padding: 3rem 1rem;
        color: var(--text-muted, #888);
        grid-column: 1 / -1;
    }
    .blog-empty i { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

    /* Pagination */
    .blog-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 0 1rem 3rem;
        flex-wrap: wrap;
    }
    .blog-pager {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        min-width: 44px;
        padding: 0 0.75rem;
        border-radius: 6px;
        border: 1px solid var(--border, #333);
        background: transparent;
        color: var(--text, #fff);
        font-size: 0.9rem;
        text-decoration: none;
        transition: border-color 0.2s, background 0.2s;
    }
    .blog-pager:hover,
    .blog-pager.active {
        border-color: var(--gold, #C9A000);
        background: rgba(201,160,0,0.1);
        color: var(--gold, #C9A000);
    }
    .blog-pager[disabled],
    .blog-pager.disabled {
        opacity: 0.35;
        pointer-events: none;
    }

    /* No overflow on mobile */
    @media (max-width: 320px) {
        .blog-controls, .blog-grid { padding: 0 0.5rem; }
        .blog-card-body { padding: 0.75rem; }
    }

/* === migrated from blog-post.php (1 block) === */
    /* Blog post — mobile-first */
    .post-wrap {
        padding-top: 6rem; /* clears fixed nav */
        padding-bottom: 4rem;
        min-height: 70vh;
    }
    .post-container {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    /* Breadcrumb */
    .post-breadcrumb {
        font-size: 0.8rem;
        color: var(--text-muted, #888);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    .post-breadcrumb a {
        color: var(--text-muted, #888);
        text-decoration: none;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .post-breadcrumb a:hover { color: var(--gold, #C9A000); }

    /* Header */
    .post-header { margin-bottom: 2rem; }
    .post-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    .post-tag {
        font-size: 0.7rem;
        background: rgba(201,160,0,0.12);
        color: var(--gold, #C9A000);
        border-radius: 4px;
        padding: 2px 8px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .post-tag:hover { background: rgba(201,160,0,0.2); }
    .post-title {
        font-size: clamp(1.7rem, 5vw, 2.8rem);
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        letter-spacing: 0.02em;
        line-height: 1.15;
        margin: 0 0 1rem;
    }
    .post-meta {
        font-size: 0.85rem;
        color: var(--text-muted, #888);
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
        align-items: center;
    }
    .post-meta time { font-weight: 500; }

    /* Featured image */
    .post-featured-img {
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 2rem;
        aspect-ratio: 16/9;
        background: #111;
    }
    .post-featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Content */
    .post-content {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.8;
        color: var(--text, #e0e0e0);
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .post-content h2, .post-content h3, .post-content h4 {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 800;
        margin-top: 2rem;
        margin-bottom: 0.5rem;
        color: var(--text, #fff);
    }
    .post-content h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
    .post-content h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
    .post-content p { margin: 0 0 1.2rem; }
    .post-content a { color: var(--gold, #C9A000); }
    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
        margin: 1.5rem auto;
    }
    .post-content blockquote {
        border-left: 3px solid var(--gold, #C9A000);
        padding: 0.5rem 1rem;
        margin: 1.5rem 0;
        color: var(--text-muted, #aaa);
        font-style: italic;
    }
    .post-content pre {
        background: #111;
        border-radius: 6px;
        padding: 1rem;
        overflow-x: auto;
        font-size: 0.9rem;
        margin: 1.5rem 0;
    }
    .post-content ul, .post-content ol {
        padding-left: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .post-content li { margin-bottom: 0.4rem; }

    /* Back link */
    .post-back {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        min-height: 44px;
        color: var(--gold, #C9A000);
        font-size: 0.875rem;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: 2.5rem;
        padding: 0.5rem 0;
    }
    .post-back:hover { opacity: 0.75; }

    /* No horizontal overflow */
    @media (max-width: 320px) {
        .post-container { padding: 0 0.5rem; }
        .post-title { font-size: 1.5rem; }
    }

/* === migrated from cart.php (1 block) === */
        body { padding-top: 5rem; }
        .cart-layout {
            max-width: 900px; margin: 0 auto; padding: 1.5rem 1rem;
        }
        @media (min-width: 768px) { .cart-layout { padding: 2.5rem 1.5rem; } }
        h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
        .cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
        .cart-item {
            display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem; align-items: center;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
            border-radius: 10px; padding: 0.75rem;
        }
        @media (min-width: 480px) { .cart-item { grid-template-columns: 80px 1fr auto; } }
        .cart-item-img {
            width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
            background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
        }
        @media (min-width: 480px) { .cart-item-img { width: 80px; height: 80px; } }
        .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
        .cart-item-name { font-weight: 600; margin-bottom: 0.2rem; font-size: 0.95rem; }
        .cart-item-variant { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
        .cart-item-price { font-size: 0.9rem; color: var(--gold); font-weight: 600; }
        .cart-qty-row { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; }
        .qty-btn-sm {
            width: 30px; height: 30px; min-height: 44px; min-width: 30px;
            border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
            background: none; color: var(--text); font-size: 1rem; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
        }
        .qty-btn-sm:hover { border-color: var(--gold); color: var(--gold); }
        .qty-num { font-size: 0.9rem; min-width: 1.5rem; text-align: center; }
        .remove-btn {
            background: none; border: none; color: var(--text-dim); cursor: pointer;
            font-size: 1rem; min-height: 44px; min-width: 44px;
            display: flex; align-items: center; justify-content: center;
            transition: color 0.15s; border-radius: 6px;
        }
        .remove-btn:hover { color: #e74c3c; }
        .cart-summary {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 1.25rem;
        }
        .summary-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.95rem; }
        .summary-row.total { font-weight: 800; font-size: 1.1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.75rem; margin-top: 0.5rem; }
        .discount-row { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .discount-input {
            flex: 1; padding: 0.6rem 0.75rem; background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text);
            font-size: 0.9rem; min-height: 44px; text-transform: uppercase;
        }
        .discount-input:focus { outline: none; border-color: var(--gold); }
        .apply-btn {
            padding: 0 1rem; background: rgba(201,160,0,0.2); color: var(--gold);
            border: 1px solid rgba(201,160,0,0.4); border-radius: 8px; cursor: pointer;
            font-weight: 700; min-height: 44px; font-size: 0.85rem;
        }
        .apply-btn:hover { background: rgba(201,160,0,0.3); }
        .discount-msg { font-size: 0.8rem; margin-bottom: 0.5rem; }
        .discount-ok { color: #2ecc71; }
        .discount-err { color: #e74c3c; }
        .checkout-btn {
            width: 100%; padding: 0.9rem; background: var(--gold); color: #000;
            border: none; border-radius: 10px; font-size: 1rem; font-weight: 800;
            cursor: pointer; min-height: 44px; margin-top: 1rem; transition: opacity 0.2s;
        }
        .checkout-btn:hover { opacity: 0.85; }
        .cart-empty { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
        .cart-loading { text-align: center; padding: 3rem; color: var(--text-muted); }

/* === migrated from checkout.php (1 block) === */
        body { padding-top: 5rem; }
        .checkout-layout {
            max-width: 800px; margin: 0 auto; padding: 1.5rem 1rem;
        }
        @media (min-width: 768px) { .checkout-layout { padding: 2.5rem 1.5rem; } }
        h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
        .checkout-grid {
            display: grid; gap: 1.5rem;
        }
        @media (min-width: 640px) { .checkout-grid { grid-template-columns: 1fr 340px; } }
        .form-section {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px; padding: 1.25rem;
        }
        .form-section h2 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
        .form-row { display: grid; gap: 0.75rem; margin-bottom: 0.75rem; }
        @media (min-width: 480px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
        label { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
        input[type="text"], input[type="email"], select {
            width: 100%; padding: 0.65rem 0.75rem; background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: var(--text);
            font-size: 0.95rem; min-height: 44px; box-sizing: border-box;
        }
        input:focus, select:focus { outline: none; border-color: var(--gold); }
        select option { background: #1a1a2e; }
        .payment-options { display: flex; flex-direction: column; gap: 0.75rem; }
        .payment-option {
            display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem;
            border: 2px solid rgba(255,255,255,0.1); border-radius: 10px; cursor: pointer;
            min-height: 56px; transition: border-color 0.15s;
        }
        .payment-option:hover { border-color: rgba(201,160,0,0.4); }
        .payment-option input[type="radio"] { accent-color: var(--gold); width: 18px; height: 18px; min-height: auto; }
        .payment-option.selected { border-color: var(--gold); background: rgba(201,160,0,0.06); }
        .payment-label { font-weight: 600; }
        .payment-icon { font-size: 1.3rem; }
        .order-summary-box h2 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
        .summary-items { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
        .summary-item { display: flex; justify-content: space-between; font-size: 0.9rem; }
        .summary-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.25rem 0; }
        .summary-total { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 0.75rem; margin-top: 0.5rem; font-weight: 800; font-size: 1.05rem; }
        .place-order-btn {
            width: 100%; padding: 0.9rem; background: var(--gold); color: #000;
            border: none; border-radius: 10px; font-size: 1rem; font-weight: 800;
            cursor: pointer; min-height: 44px; margin-top: 1rem; transition: opacity 0.2s;
        }
        .place-order-btn:hover { opacity: 0.85; }
        .place-order-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .form-error { color: #e74c3c; font-size: 0.85rem; margin-top: 0.75rem; display: none; }

/* === migrated from dashboard.php (1 block) === */
        .dash-wrap { max-width: 960px; margin: 0 auto; padding: 6rem 1rem 4rem; }
        .dash-greeting { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; margin-bottom: 0.25rem; }
        .tier-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
        }
        .tier-badge--1 { background: rgba(255,255,255,0.08); color: #ffffff; border: 1px solid rgba(255,255,255,0.2); }
        .tier-badge--2 { background: rgba(221,185,68,0.12); color: #DDB944; border: 1px solid rgba(221,185,68,0.35); }
        .tier-badge--3 { background: rgba(221,185,68,0.18); color: #F9E2AF; border: 1px solid rgba(221,185,68,0.6); }
        .tier-name--1 { color: #ffffff; }
        .tier-name--2 { color: #DDB944; }
        .tier-name--3 { color: #F9E2AF; }
        .dash-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
        @media(min-width: 640px) { .dash-grid { grid-template-columns: 1fr 1fr; } }
        .dash-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 12px; padding: 1.5rem;
        }
        .dash-card h2 { font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 1rem; }
        .benefit-list { list-style: none; }
        .benefit-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem;
            color: var(--text-muted); padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
        .benefit-list li:last-child { border-bottom: none; }
        .benefit-list li i { color: var(--gold); width: 16px; }
        .content-preview { display: flex; flex-direction: column; gap: 0.75rem; }
        .content-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0;
            border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; }
        .content-item:last-child { border-bottom: none; }
        .content-item i { color: var(--gold); width: 20px; text-align: center; }
        .content-item-info { flex: 1; min-width: 0; }
        .content-item-title { font-size: 0.9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .content-item-meta { font-size: 0.78rem; color: var(--text-muted); }
        .activity-list { display: flex; flex-direction: column; gap: 0; }
        .activity-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0;
            border-bottom: 1px solid var(--border); font-size: 0.88rem; }
        .activity-item:last-child { border-bottom: none; }
        .activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
        .activity-label { flex: 1; color: var(--text-muted); }
        .activity-time { font-size: 0.78rem; color: var(--text-dim); }
        .empty-state { text-align: center; color: var(--text-muted); font-size: 0.9rem; padding: 1.5rem 0; }
        .vip-msg-form { display: flex; flex-direction: column; gap: 0.75rem; }
        .vip-msg-form input, .vip-msg-form textarea {
            background: var(--input-bg); border: 1px solid var(--border-strong);
            border-radius: 8px; padding: 0.65rem 0.85rem; color: var(--text);
            font-family: inherit; font-size: 16px; width: 100%; resize: vertical;
            min-height: 44px;
        }
        .vip-msg-form textarea { min-height: 80px; }
        .btn-gold {
            background: var(--gold); color: #000; border: none; border-radius: 8px;
            padding: 0.65rem 1.5rem; font-weight: 700; cursor: pointer; font-size: 0.9rem;
            min-height: 44px; transition: opacity 0.2s;
        }
        .btn-gold:hover { opacity: 0.88; }
        .btn-gold:disabled { opacity: 0.5; cursor: not-allowed; }
        .upgrade-cta { text-align: center; padding: 1.25rem 0; }
        .upgrade-cta p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.75rem; }
        .btn-outline {
            display: inline-flex; align-items: center; justify-content: center;
            border: 1px solid var(--gold); color: var(--gold);
            border-radius: 8px; padding: 0.55rem 1.25rem; font-size: 0.88rem; font-weight: 600;
            min-height: 44px; text-decoration: none; transition: background 0.2s, color 0.2s;
        }
        .btn-outline:hover { background: var(--gold); color: #000; }
        .msg-limit { font-size: 0.78rem; color: var(--text-muted); text-align: right; }
        #msg-feedback { font-size: 0.85rem; margin-top: 0.25rem; }
        .span-full { grid-column: 1 / -1; }
        /* Welcome card */
        .welcome-card {
            background: linear-gradient(135deg, var(--site-primary, #3b82f6) 0%, var(--site-accent, #7c3aed) 100%);
            border-radius: 12px; padding: 1.75rem 1.5rem; margin-bottom: 1.75rem;
            position: relative; overflow: hidden;
        }
        .welcome-card::before {
            content: ''; position: absolute; inset: 0;
            background: rgba(10,10,15,0.45); border-radius: inherit;
        }
        .welcome-card-inner { position: relative; z-index: 1; }
        .welcome-card h2 {
            font-size: clamp(1.1rem, 3.5vw, 1.5rem); font-weight: 800;
            color: #fff; margin-bottom: 1rem; line-height: 1.3;
        }
        .welcome-card ul {
            list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
            margin-bottom: 1.25rem;
        }
        .welcome-card ul li {
            color: rgba(255,255,255,0.9); font-size: 0.9rem;
            display: flex; align-items: flex-start; gap: 0.5rem;
        }
        .welcome-card ul li::before {
            content: '✓'; color: #fff; font-weight: 700;
            flex-shrink: 0; margin-top: 0.05rem;
        }
        .welcome-card-actions {
            display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;
        }
        .btn-welcome-cta {
            display: inline-flex; align-items: center; justify-content: center;
            background: #fff; color: var(--site-primary, #3b82f6);
            border: none; border-radius: 8px;
            padding: 0.75rem 1.5rem; min-height: 44px;
            font-weight: 700; font-size: 0.95rem;
            text-decoration: none; cursor: pointer;
            transition: opacity 0.2s; white-space: nowrap;
        }
        .btn-welcome-cta:hover { opacity: 0.88; }
        .btn-welcome-dismiss {
            display: inline-flex; align-items: center; justify-content: center;
            background: transparent; color: rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.4); border-radius: 8px;
            padding: 0.75rem 1.25rem; min-height: 44px;
            font-size: 0.88rem; cursor: pointer;
            transition: border-color 0.2s, color 0.2s; white-space: nowrap;
        }
        .btn-welcome-dismiss:hover { border-color: rgba(255,255,255,0.8); color: #fff; }

/* === migrated from exclusive.php (1 block) === */
        .excl-wrap { max-width: 1100px; margin: 0 auto; padding: 6rem 1rem 4rem; }
        .excl-header { margin-bottom: 2rem; }
        .excl-header h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 900; }
        .excl-header p { color: var(--text-muted); margin-top: 0.4rem; font-size: 0.95rem; }
        .type-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
        .pill {
            display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 1rem;
            min-height: 44px;
            border-radius: 20px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
            border: 1px solid var(--border-strong); background: transparent; color: var(--text-muted);
            text-decoration: none; transition: all 0.18s;
        }
        .pill:hover, .pill.active {
            background: var(--gold); color: #000; border-color: var(--gold);
        }
        .content-grid {
            display: grid; grid-template-columns: 1fr; gap: 1rem;
        }
        @media(min-width: 480px)  { .content-grid { grid-template-columns: 1fr 1fr; } }
        @media(min-width: 900px)  { .content-grid { grid-template-columns: repeat(3, 1fr); } }
        .content-card {
            background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 12px; overflow: hidden; position: relative;
            transition: border-color 0.2s, transform 0.2s;
        }
        .content-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
        .content-card.locked { opacity: 0.7; }
        .card-thumb {
            aspect-ratio: 16/9; background: var(--bg-soft); display: flex;
            align-items: center; justify-content: center; position: relative; overflow: hidden;
        }
        .card-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .card-thumb-icon { font-size: 2.5rem; color: var(--gold); opacity: 0.5; }
        .lock-overlay {
            position: absolute; inset: 0; background: rgba(0,0,0,0.6);
            display: flex; align-items: center; justify-content: center;
            flex-direction: column; gap: 0.4rem;
        }
        .lock-overlay i { font-size: 2rem; color: var(--gold); }
        .lock-overlay span { font-size: 0.78rem; color: var(--text-muted); }
        .card-body { padding: 1rem; }
        .card-type-badge {
            display: inline-flex; align-items: center; gap: 0.35rem;
            font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.55rem;
            border-radius: 12px; background: rgba(221,185,68,0.12); color: var(--gold);
            margin-bottom: 0.5rem;
        }
        .card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem;
            overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
        .card-desc { font-size: 0.82rem; color: var(--text-muted);
            overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
            -webkit-box-orient: vertical; }
        .tier-gate-badge {
            position: absolute; top: 0.6rem; right: 0.6rem;
            background: rgba(0,0,0,0.8); border: 1px solid var(--border-strong);
            border-radius: 12px; padding: 0.2rem 0.55rem;
            font-size: 0.72rem; font-weight: 600; color: var(--gold);
            display: flex; align-items: center; gap: 0.3rem;
        }
        .empty-state { grid-column: 1/-1; text-align: center; padding: 4rem 1rem;
            color: var(--text-muted); }
        .empty-state i { font-size: 3rem; color: var(--gold); display: block; margin-bottom: 1rem; }
        #loading { grid-column: 1/-1; text-align: center; padding: 2rem; color: var(--text-muted); }
        .pagination { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
        .page-btn {
            padding: 0.5rem 1.1rem; border-radius: 8px; border: 1px solid var(--border-strong);
            background: var(--bg-card); color: var(--text-muted); cursor: pointer;
            font-size: 0.88rem; transition: all 0.18s;
        }
        .page-btn:hover { border-color: var(--gold); color: var(--gold); }
        .page-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
        .page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* === migrated from lyrics.php (1 block) === */
.lyrics-wrap { padding: 6rem 1rem 4rem; max-width: 720px; margin: 0 auto; }
.lyrics-section-marker { color: var(--gold); font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; font-size: 0.8rem; margin: 1.5rem 0 0.5rem; }
.lyrics-line { line-height: 2; }

/* members.php block re-routed to members-custom.css (members.php does not load style.css) */

/* === migrated from miami-event.php (1 block) === */
        .miami-page { padding-top: 56px; }

        /* Hero split layout */
        .miami-hero {
            display: grid;
            grid-template-columns: 1fr;
            min-height: 100svh;
        }
        @media (min-width: 768px) {
            .miami-hero { grid-template-columns: 1fr 1fr; }
        }

        /* Poster pane */
        .miami-hero-poster {
            position: relative;
            overflow: hidden;
            min-height: 60vw;
            background: #090909;
        }
        @media (min-width: 768px) {
            .miami-hero-poster { min-height: 100svh; }
        }
        .miami-hero-poster img {
            width: 100%; height: 100%;
            object-fit: cover; object-position: top;
            display: block;
        }
        .miami-poster-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(9,9,9,0.7) 100%);
        }

        /* Content pane */
        .miami-hero-content {
            background: var(--bg);
            padding: 3rem 1.5rem;
            display: flex; flex-direction: column; justify-content: center;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .miami-hero-content { padding: 4rem 3rem; }
        }

        .miami-event-tag {
            display: inline-flex; align-items: center; gap: 0.5rem;
            font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
            color: var(--gold); text-transform: uppercase;
        }
        .miami-event-tag::before {
            content: ''; display: block; width: 8px; height: 8px;
            border-radius: 50%; background: var(--gold);
        }
        .miami-event-tag.is-live::before {
            animation: pulse-gold 1.5s ease-in-out infinite;
        }
        @keyframes pulse-gold {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .miami-headline {
            font-family: var(--site-font-display);
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900; text-transform: uppercase;
            line-height: 0.92; letter-spacing: 0.02em;
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            background-clip: text; margin: 0;
        }

        .miami-sub {
            font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin: 0;
        }

        .miami-meta { display: flex; flex-direction: column; gap: 0.4rem; }
        .miami-meta-row {
            font-size: 0.9rem; color: var(--text-muted);
            display: flex; align-items: center; gap: 0.5rem;
        }
        .miami-meta-row strong { color: var(--text); }

        /* Status state cards */
        .miami-status-card {
            padding: 1.5rem; border-radius: 12px;
            border: 1px solid var(--gold-border); background: var(--bg-card);
            text-align: center;
        }
        .miami-status-card h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
        .miami-status-card p { color: var(--text-muted); font-size: 0.9rem; }

        /* Booking form */
        .miami-form {
            background: var(--bg-card); border: 1px solid var(--gold-border);
            border-radius: 14px; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.1rem;
        }
        .miami-form h2 { font-size: 1.2rem; font-weight: 700; margin: 0 0 0.25rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
        .form-group label {
            font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
            text-transform: uppercase; letter-spacing: 0.05em;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%; padding: 0.75rem 1rem; font-size: 16px;
            background: var(--bg-soft); border: 1px solid var(--border);
            border-radius: 8px; color: var(--text); font-family: inherit;
            min-height: 44px; transition: border-color 0.2s; appearance: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus { outline: none; border-color: var(--gold); }
        .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A000' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

        .btn-book {
            background: var(--gold); color: #000; font-weight: 700;
            padding: 0.9rem 1.5rem; border: none; border-radius: 8px;
            font-size: 1rem; cursor: pointer; min-height: 44px; width: 100%;
            font-family: var(--site-font-display); font-size: 1.1rem; letter-spacing: 0.05em;
            text-transform: uppercase; transition: var(--transition);
            box-shadow: 0 0 20px var(--gold-glow-md);
        }
        .btn-book:hover { background: var(--gold-light); transform: translateY(-2px); }

        .honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }

        .alert {
            padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.92rem;
        }
        .alert-success {
            background: rgba(201,160,0,0.12); border: 1px solid rgba(201,160,0,0.4);
            color: var(--gold-light);
        }
        .alert-error {
            background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4);
            color: #f87171;
        }

        /* Logos row */
        .miami-logos {
            display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
        }
        .miami-logo-tag {
            font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
            color: var(--text-muted); text-transform: uppercase; padding: 0.3rem 0.6rem;
            border: 1px solid var(--border-strong); border-radius: 4px;
        }

/* === migrated from music.php (2 block) === */
        /* ===== ACCENT OVERRIDE: use --accent (#9d50bb purple) as the gold replacement ===== */
        :root {
            --nav-height: 56px;
            --pill-height: 40px;
            /* Mozay accent — purple #9d50bb overrides MS gold #D4AF37 */
            --gold: #9d50bb;
            --black: #050508;
        }

        /* ===== ALBUM PILLS ===== */
        .quick-nav {
            position: fixed;
            top: calc(var(--frame-width, 0px) + var(--nav-height));
            left: var(--frame-width, 0px);
            right: var(--frame-width, 0px);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            height: var(--pill-height);
            padding: 0 1rem;
            background: var(--nav-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        @media (prefers-reduced-motion: no-preference) {
            html { scroll-behavior: smooth; }
        }

        .quick-nav button {
            padding: 0.3rem 0.9rem;
            min-height: 44px;
            border-radius: 50px;
            border: 1px solid var(--border-strong);
            color: var(--gold);
            background: transparent;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            white-space: nowrap;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
        }
        .quick-nav button:hover,
        .quick-nav button.active {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
        }

        /* ===== MAIN ===== */
        .page-content {
            max-width: 960px;
            margin: 0 auto;
            padding: calc(var(--frame-width, 0px) + var(--nav-height) + var(--pill-height) + 1rem)
                     calc(var(--frame-width, 0px) + 1rem)
                     calc(var(--frame-width, 0px) + 5rem);
        }

        /* ===== SEARCH ===== */
        .search-wrap {
            max-width: 100%;
            margin: 0 0 1.25rem;
            position: relative;
        }
        .search-wrap i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 0.85rem;
        }
        #searchInput {
            width: 100%;
            padding: 0.65rem 2.8rem 0.65rem 2.6rem;
            border-radius: 50px;
            border: 1px solid var(--border-strong);
            background: var(--bg-soft);
            color: var(--text);
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
        }
        #searchInput:focus {
            border-color: var(--gold);
            box-shadow: 0 0 15px var(--border);
        }
        #searchInput::placeholder { color: var(--text-dim); }
        .search-clear {
            position: absolute;
            right: 0.25rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            font-size: 0.9rem;
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
        }
        .search-clear:hover { color: var(--gold); }

        /* ===== MAIN PLAYER AREA ===== */
        .main-player { margin-bottom: 1.25rem; }
        .main-video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: var(--bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            cursor: pointer;
        }
        .main-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .main-video-container video[src=""] { display: none; }

        /* YouTube iframe embed */
        .main-yt-wrap {
            position: absolute;
            inset: 0;
            display: none;
        }
        .main-yt-wrap.visible { display: block; }
        .main-yt-wrap iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .main-artwork-wrap {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-card);
        }
        .main-artwork-wrap.hidden { display: none; }
        .main-artwork-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: blur(40px) brightness(0.3);
            transform: scale(1.2);
        }
        .main-artwork-img {
            position: relative;
            width: 55%;
            max-width: 280px;
            border-radius: 12px;
            box-shadow: 0 8px 40px var(--overlay);
        }

        /* EQ bars for audio-only */
        .audio-eq {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: none;
            align-items: flex-end;
            gap: 4px;
            height: 32px;
        }
        .audio-eq.active { display: flex; }
        .audio-eq .eq-bar {
            width: 4px;
            background: var(--gold);
            border-radius: 2px;
            opacity: 0.7;
        }
        .eq-bar:nth-child(1) { animation: eqBounce 0.8s ease-in-out infinite alternate; }
        .eq-bar:nth-child(2) { animation: eqBounce 0.6s ease-in-out infinite alternate 0.1s; }
        .eq-bar:nth-child(3) { animation: eqBounce 0.9s ease-in-out infinite alternate 0.2s; }
        .eq-bar:nth-child(4) { animation: eqBounce 0.5s ease-in-out infinite alternate 0.05s; }
        .eq-bar:nth-child(5) { animation: eqBounce 0.7s ease-in-out infinite alternate 0.15s; }
        @keyframes eqBounce {
            0%   { height: 6px; }
            100% { height: 28px; }
        }

        /* Play overlay */
        .main-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s;
            pointer-events: none;
        }
        .main-video-container:hover .main-play-overlay { opacity: 1; }
        .main-play-circle {
            width: 72px;
            height: 72px;
            background: var(--overlay);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .main-video-container:hover .main-play-circle { background: var(--gold); border-color: var(--gold); }
        .main-play-circle i { color: var(--gold); font-size: 1.5rem; margin-left: 3px; }
        .main-video-container:hover .main-play-circle i { color: #fff; }

        /* Track info bar */
        .main-track-info {
            padding: 0.75rem 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .main-track-num {
            font-size: 0.8rem;
            font-weight: 900;
            color: var(--gold);
            min-width: 1.5rem;
        }
        .main-track-details { flex: 1; min-width: 0; }
        .main-track-details h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
            margin: 0;
        }
        .main-track-details .features { font-size: 0.8rem; color: var(--gold); font-weight: 400; }
        .main-track-details .album-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 400; }
        .main-track-actions { display: flex; gap: 0.4rem; flex-shrink: 0; }

        /* Action buttons */
        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.4rem 0.75rem;
            min-height: 44px;
            border-radius: 50px;
            border: 1px solid var(--border);
            background: var(--input-bg);
            color: var(--text-muted);
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.25s;
            font-family: 'Outfit', sans-serif;
        }
        .action-btn:hover { border-color: var(--border-strong); color: var(--gold); background: var(--border); }
        .action-btn.active { border-color: var(--gold); color: var(--gold); background: var(--border); }
        .action-btn i { font-size: 0.75rem; }

        /* YouTube button */
        .yt-watch-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            min-height: 44px;
            border-radius: 50px;
            background: #ff0000;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: opacity 0.25s;
        }
        .yt-watch-btn:hover { opacity: 0.85; }
        .yt-watch-btn i { font-size: 0.75rem; }

        /* ===== LYRICS DRAWER ===== */
        .lyrics-drawer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .lyrics-drawer.open {
            max-height: 8000px;
            transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .lyrics-inner { padding: 1rem 0.25rem 1.5rem; border-top: 1px solid var(--border); }
        .lyrics-content { font-size: 0.95rem; line-height: 1.9; color: var(--text-muted); letter-spacing: 0.1px; }
        .section-marker {
            display: inline-block;
            background: var(--border);
            color: var(--gold);
            font-weight: 700;
            font-size: 0.65rem;
            padding: 0.2rem 0.6rem;
            border-radius: 50px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0.8rem 0 0.3rem;
        }

        /* ===== TRACK GRID (3x3) ===== */
        .track-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }
        .grid-item {
            position: relative;
            aspect-ratio: 16/9;
            min-height: 80px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--border);
            transition: all 0.3s;
            background: var(--bg-soft);
        }
        .grid-item:hover { border-color: var(--border-strong); transform: scale(1.03); }
        .grid-item.is-current { border-color: var(--gold); box-shadow: 0 0 16px var(--border); }
        .grid-item img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            filter: brightness(0.8); transition: filter 0.3s;
        }
        .grid-item:hover img { filter: brightness(1); }
        .grid-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 1.5rem 0.5rem 0.4rem;
            background: linear-gradient(transparent, var(--overlay-heavy));
            display: flex;
            align-items: flex-end;
            gap: 0.35rem;
        }
        .grid-overlay .grid-num { font-size: 0.65rem; font-weight: 900; color: var(--gold); }
        .grid-overlay .grid-title {
            font-size: 0.7rem; font-weight: 600; color: var(--text);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0;
        }
        .video-badge {
            position: absolute; top: 0.35rem; right: 0.35rem;
            width: 20px; height: 20px; background: var(--overlay);
            border-radius: 4px; display: flex; align-items: center; justify-content: center;
        }
        .video-badge i { font-size: 0.55rem; color: var(--gold); opacity: 0.7; }

        /* ===== SEARCH RESULTS ===== */
        .search-results { display: none; }
        .search-results.active { display: block; }
        .search-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
        .search-result-item {
            position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden;
            cursor: pointer; border: 1px solid var(--border); transition: all 0.3s; background: var(--bg-soft);
        }
        .search-result-item:hover { border-color: var(--border-strong); transform: scale(1.03); }
        .search-result-item img {
            width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.75);
        }
        .search-result-item:hover img { filter: brightness(1); }
        .search-result-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.5rem 0.5rem 0.4rem;
            background: linear-gradient(transparent, var(--overlay-heavy));
        }
        .search-result-overlay .sr-title {
            font-size: 0.72rem; font-weight: 600; color: var(--text);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .search-result-overlay .sr-album {
            font-size: 0.6rem; color: var(--gold);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .no-results { display: none; text-align: center; padding: 3rem 1rem; color: var(--text-dim); font-size: 1rem; }
        .no-results.visible { display: block; }
        .no-results i { display: block; font-size: 2.5rem; color: var(--border); margin-bottom: 0.8rem; }
        .clear-search-action {
            display: inline-block; margin-top: 0.8rem; padding: 0.5rem 1.5rem;
            background: var(--border); border: 1px solid var(--border-strong);
            border-radius: 50px; color: var(--gold); font-family: 'Outfit', sans-serif;
            font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.3s;
        }
        .clear-search-action:hover { background: var(--border-strong); border-color: var(--gold); }
        .album-view.hidden { display: none; }

        /* ===== SHARE TOAST ===== */
        .share-toast {
            position: fixed; bottom: 5rem; left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--gold); color: #fff;
            padding: 0.6rem 1.4rem; border-radius: 50px;
            font-size: 0.85rem; font-weight: 700; font-family: 'Outfit', sans-serif;
            z-index: 10000; opacity: 0; pointer-events: none;
            animation: toastIn 2s ease forwards;
        }
        @keyframes toastIn {
            0%   { opacity: 0; transform: translateX(-50%) translateY(20px); }
            15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
            75%  { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
        }

        /* ===== ALL TRACKS GRID ===== */
        .all-tracks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
        .all-track-card {
            background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
            overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
            cursor: pointer; opacity: 0; transform: translateY(15px);
        }
        .all-track-card.visible { opacity: 1; transform: translateY(0); }
        .all-track-card:hover { border-color: var(--border-strong); box-shadow: 0 8px 30px var(--border); transform: translateY(-2px); }
        .all-track-card .card-poster { position: relative; aspect-ratio: 16/9; background: var(--bg); overflow: hidden; }
        .all-track-card .card-poster img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            filter: brightness(0.8); transition: transform 0.5s, filter 0.5s;
        }
        .all-track-card:hover .card-poster img { transform: scale(1.05); filter: brightness(1); }
        .all-track-card .card-play-overlay {
            position: absolute; inset: 0; display: flex;
            align-items: center; justify-content: center; pointer-events: none;
        }
        .all-track-card .card-play-btn {
            width: 48px; height: 48px; background: var(--overlay);
            border: 2px solid var(--gold); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s; opacity: 0;
        }
        .all-track-card:hover .card-play-btn { opacity: 1; background: var(--gold); border-color: var(--gold); }
        .all-track-card .card-play-btn i { color: var(--gold); font-size: 1rem; margin-left: 2px; }
        .all-track-card:hover .card-play-btn i { color: #fff; }
        .all-track-card .card-info { padding: 0.75rem 1rem; }
        .all-track-card .card-title {
            font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.3;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .all-track-card .card-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
        .all-track-card .card-album { font-size: 0.72rem; color: var(--gold); font-weight: 500; }
        .all-track-card .card-features { font-size: 0.72rem; color: var(--text-dim); }
        .all-track-card .card-badges { display: flex; gap: 0.3rem; position: absolute; top: 0.4rem; right: 0.4rem; }
        .all-track-card .card-badge {
            width: 22px; height: 22px; background: var(--overlay);
            border-radius: 4px; display: flex; align-items: center; justify-content: center;
        }
        .all-track-card .card-badge i { font-size: 0.55rem; color: var(--gold); opacity: 0.7; }
        .all-view.hidden { display: none; }

        /* ===== ALBUM PLAY BUTTON ===== */
        .album-play-btn {
            width: 28px; height: 28px; border-radius: 50%;
            border: 1px solid var(--gold); background: transparent; color: var(--gold);
            font-size: 0.55rem; cursor: pointer;
            display: inline-flex; align-items: center; justify-content: center;
            transition: all 0.25s; padding: 0; margin-left: 0.15rem; vertical-align: middle; flex-shrink: 0;
        }
        .album-play-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

        /* ===== NOW-PLAYING INDICATORS ===== */
        .main-video-container.is-actively-playing {
            border: 2px solid var(--gold);
            box-shadow: 0 0 20px rgba(157,80,187,0.35), 0 0 60px rgba(157,80,187,0.12);
            animation: nowPlayingGlow 2.5s ease-in-out infinite;
        }
        @keyframes nowPlayingGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(157,80,187,0.35), 0 0 60px rgba(157,80,187,0.12); }
            50%       { box-shadow: 0 0 30px rgba(157,80,187,0.55), 0 0 80px rgba(157,80,187,0.2); }
        }
        .now-playing-label {
            display: none; align-items: center; gap: 0.4rem;
            padding: 0.2rem 0.6rem; border-radius: 50px;
            background: var(--gold); color: #fff;
            font-size: 0.55rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: 1.2px; white-space: nowrap;
            animation: nowPlayingPulse 2s ease-in-out infinite;
        }
        .now-playing-label .np-eq { display: flex; align-items: flex-end; gap: 1.5px; height: 10px; }
        .now-playing-label .np-eq-bar { width: 2px; background: #fff; border-radius: 1px; }
        .now-playing-label .np-eq-bar:nth-child(1) { animation: npEqBar 0.8s ease-in-out infinite alternate; }
        .now-playing-label .np-eq-bar:nth-child(2) { animation: npEqBar 0.55s ease-in-out infinite alternate 0.1s; }
        .now-playing-label .np-eq-bar:nth-child(3) { animation: npEqBar 0.7s ease-in-out infinite alternate 0.2s; }
        @keyframes npEqBar { 0% { height: 3px; } 100% { height: 10px; } }
        @keyframes nowPlayingPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.75; } }
        .is-actively-playing ~ .main-track-info .now-playing-label { display: inline-flex; }
        .is-actively-playing ~ .main-track-info .main-track-num { display: none; }

        .grid-item .now-playing-badge {
            position: absolute; top: 0; left: 0; right: 0;
            display: none; align-items: center; justify-content: center;
            gap: 0.3rem; padding: 0.25rem 0; z-index: 3;
            background: linear-gradient(180deg, rgba(157,80,187,0.92) 0%, rgba(157,80,187,0) 100%);
            font-size: 0.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #fff;
        }
        .grid-item.is-now-playing .now-playing-badge { display: flex; }
        .grid-item.is-now-playing {
            border-color: var(--gold);
            box-shadow: 0 0 16px rgba(157,80,187,0.3), 0 0 4px rgba(157,80,187,0.5);
            animation: gridItemGlow 2.5s ease-in-out infinite; z-index: 2; transform: scale(1.03);
        }
        .grid-item.is-now-playing img { filter: brightness(1); }
        @keyframes gridItemGlow {
            0%, 100% { box-shadow: 0 0 16px rgba(157,80,187,0.3), 0 0 4px rgba(157,80,187,0.5); }
            50%       { box-shadow: 0 0 24px rgba(157,80,187,0.45), 0 0 6px rgba(157,80,187,0.7); }
        }
        .all-track-card.is-now-playing {
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(157,80,187,0.3), 0 0 4px rgba(157,80,187,0.5);
            animation: gridItemGlow 2.5s ease-in-out infinite;
        }
        .all-track-card.is-now-playing .card-poster::after {
            content: "NOW PLAYING";
            position: absolute; top: 0.4rem; left: 0.4rem;
            padding: 0.15rem 0.5rem; border-radius: 50px;
            background: var(--gold); color: #fff;
            font-size: 0.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
            z-index: 3; animation: nowPlayingPulse 2s ease-in-out infinite;
        }

        /* Album switch fade */
        .track-grid { transition: opacity 0.2s ease; }
        .main-video-container { transition: opacity 0.2s ease; }
        .main-track-info { transition: opacity 0.2s ease; }

        /* Search backdrop */
        .search-backdrop { display: none; position: fixed; inset: 0; background: var(--overlay); z-index: 10; }
        .search-backdrop.active { display: block; }
        .search-results { position: relative; z-index: 11; }

        /* Video loading spinner */
        .main-video-container.video-loading::after {
            content: ""; position: absolute; inset: 0;
            background: var(--overlay); z-index: 5;
        }
        .main-video-container.video-loading::before {
            content: ""; position: absolute; top: 50%; left: 50%;
            width: 40px; height: 40px; margin: -20px 0 0 -20px;
            border: 3px solid var(--border-strong); border-top-color: var(--gold);
            border-radius: 50%; animation: video-spin 0.8s linear infinite; z-index: 6;
        }
        @keyframes video-spin { to { transform: rotate(360deg); } }

        /* Keyboard hint */
        .keyboard-hint {
            text-align: center; margin-top: 0.6rem;
            font-size: 0.7rem; color: var(--text-dim); font-weight: 400;
        }
        .keyboard-hint kbd {
            display: inline-block; padding: 0.1rem 0.4rem;
            border: 1px solid var(--border); border-radius: 4px;
            background: var(--input-bg); font-family: 'Outfit', sans-serif;
            font-size: 0.65rem; color: var(--text-dim); margin: 0 0.1rem;
        }

        /* ===== RESPONSIVE (320px+) ===== */
        @media (max-width: 700px) {
            :root { --nav-height: 50px; --pill-height: 36px; }
            .quick-nav {
                gap: 0.3rem; padding: 0 0.5rem;
                overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch;
            }
            .quick-nav button { font-size: 0.62rem; padding: 0.25rem 0.7rem; min-height: 44px; }
            .main-track-details h3 { font-size: 0.95rem; }
            .main-track-actions { gap: 0.25rem; }
            .action-btn { padding: 0.35rem 0.6rem; font-size: 0.65rem; }
            .action-btn .btn-label { display: none; }
            .main-play-circle { width: 56px; height: 56px; }
            .main-play-circle i { font-size: 1.2rem; }
            .grid-overlay .grid-title { font-size: 0.6rem; }
            .grid-overlay .grid-num { font-size: 0.55rem; }
        }
        @media (max-width: 480px) {
            .track-grid, .search-results-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 400px) {
            .page-content { padding-left: 0.75rem; padding-right: 0.75rem; }
        }
        @media (max-width: 320px) {
            .track-grid, .search-results-grid { grid-template-columns: 1fr; }
            .main-track-actions { flex-wrap: wrap; }
        }
        @media (max-width: 900px) {
            .all-tracks-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        }
        @media (max-width: 550px) {
            .all-tracks-grid { grid-template-columns: 1fr; gap: 0.75rem; }
        }
    .members-teaser {
        background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
        padding: 5rem 2rem;
        text-align: center;
    }
    .members-teaser-inner {
        max-width: 800px;
        margin: 0 auto;
    }
    .members-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--gold);
        color: #000;
        font-size: 0.7rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 0.35rem 1rem;
        border-radius: 50px;
        margin-bottom: 1.25rem;
    }
    .members-teaser h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        font-weight: 900;
        line-height: 1.15;
        background: var(--accent-text);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.75rem;
    }
    .members-teaser-sub {
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 520px;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }
    /* Locked cards */
    .locked-cards-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
        position: relative;
        overflow: hidden;
    }
    @media (max-width: 540px) {
        .locked-cards-wrap { grid-template-columns: 1fr; }
    }
    .locked-card {
        position: relative;
        min-height: 120px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
        pointer-events: none;
        filter: blur(4px);
    }
    .locked-card-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--bg-soft) 0%, var(--border) 100%);
        opacity: 0.6;
    }
    .locked-card-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        background: rgba(0, 0, 0, 0.55);
        padding: 1rem;
    }
    .locked-type-icon {
        font-size: 1.5rem;
        color: var(--gold);
        opacity: 0.7;
    }
    .locked-label {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-muted);
        text-align: center;
    }
    .locked-lock-icon {
        font-size: 1rem;
        color: var(--text-dim);
        margin-top: 0.2rem;
    }
    /* CTA */
    .btn-teaser-cta {
        display: inline-block;
        background: var(--gold);
        color: #000;
        font-weight: 900;
        font-size: 1rem;
        padding: 0.85rem 2.25rem;
        border-radius: 8px;
        text-decoration: none;
        min-height: 44px;
        line-height: 1.4;
        transition: opacity 0.18s;
        font-family: 'Outfit', sans-serif;
    }
    .btn-teaser-cta:hover { opacity: 0.88; }
    .members-teaser-signin {
        margin-top: 1.25rem;
        font-size: 0.85rem;
        color: var(--text-dim);
    }
    .members-teaser-signin a {
        color: var(--text-muted);
        text-decoration: underline;
    }
    .members-teaser-signin a:hover { color: var(--gold); }

/* === migrated from onboard.php (1 block) === */
    .onboard-page {
        padding-top: 5.5rem; /* clears fixed nav (~80px) */
        padding-bottom: 4rem;
        min-height: 100vh;
        background: var(--site-bg, #090909);
        color: var(--text, #e0e0e0);
    }
    .page-header {
        background: linear-gradient(135deg, var(--site-surface, #1a1a2e) 0%, var(--site-bg, #090909) 100%);
        border-bottom: 1px solid var(--site-border, rgba(255,255,255,0.08));
        padding: 2rem 1rem;
        text-align: center;
    }
    .page-header h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        color: var(--text, #fff);
        margin-bottom: 0.5rem;
    }
    .page-header p {
        color: var(--site-text-muted, #94a3b8);
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }
    .progress-container {
        max-width: 600px;
        margin: 0 auto;
        background: rgba(255,255,255,0.06);
        border-radius: 99px;
        height: 8px;
        overflow: hidden;
    }
    #progressBar {
        height: 100%;
        background: linear-gradient(90deg, var(--gold, #C9A000), var(--gold-light, #F5D37A));
        border-radius: 99px;
        width: 0%;
        transition: width 0.4s ease;
    }
    #progressText {
        text-align: center;
        color: var(--site-text-muted, #94a3b8);
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
    .onboard-main {
        max-width: 1100px;
        margin: 2rem auto;
        padding: 0 1rem;
    }
    @media (min-width: 480px) { .onboard-main { padding: 0 1.5rem; } }
    #sectionGrid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
    /* 320px baseline */
    @media (max-width: 320px) {
        #sectionGrid { grid-template-columns: 1fr; }
        .onboard-main { padding: 0 0.5rem; }
    }
    .section-card {
        background: var(--site-surface, #1a1a2e);
        border: 1px solid var(--site-border, rgba(255,255,255,0.08));
        border-radius: 16px;
        padding: 1.5rem;
        cursor: pointer;
        transition: border-color 0.2s, transform 0.15s;
        position: relative;
    }
    .section-card:hover {
        border-color: var(--gold, #C9A000);
        transform: translateY(-2px);
    }
    .section-card.active {
        border-color: var(--gold, #C9A000);
    }
    .card-icon {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.75rem;
    }
    .card-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text, #fff);
        margin-bottom: 0.375rem;
    }
    .card-desc {
        font-size: 0.875rem;
        color: var(--site-text-muted, #94a3b8);
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    .status-badge {
        display: inline-block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 700;
        padding: 0.25rem 0.625rem;
        border-radius: 99px;
    }
    .badge-not-started { background: rgba(100,116,139,0.15); color: var(--site-text-muted, #94a3b8); }
    .badge-draft       { background: rgba(245,158,11,0.15);  color: #f59e0b; }
    .badge-submitted   { background: rgba(59,130,246,0.15);  color: #60a5fa; }
    .badge-reviewed    { background: rgba(16,185,129,0.15);  color: #10b981; }
    .form-panel {
        grid-column: 1 / -1;
        background: var(--site-surface, #1a1a2e);
        border: 1px solid var(--gold, rgba(201,160,0,0.3));
        border-radius: 16px;
        padding: 2rem;
        animation: slideDown 0.2s ease;
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .form-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }
    .form-panel-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text, #fff);
    }
    .btn-close-panel {
        background: none;
        border: none;
        color: var(--site-text-muted, #94a3b8);
        font-size: 1.5rem;
        cursor: pointer;
        line-height: 1;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn-close-panel:hover { color: var(--text, #fff); background: rgba(255,255,255,0.08); }
    .admin-notes-box {
        background: rgba(16,185,129,0.07);
        border-left: 3px solid #10b981;
        border-radius: 4px;
        padding: 0.75rem 1rem;
        margin-bottom: 1.25rem;
        font-size: 0.875rem;
        color: var(--text, #cbd5e1);
    }
    .save-indicator {
        font-size: 0.8rem;
        min-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--site-text-muted, #94a3b8);
    }
    .save-indicator.saving { color: #f59e0b; }
    .save-indicator.saved  { color: #10b981; }
    .save-indicator.error  { color: #f87171; }
    .form-group {
        margin-bottom: 1.25rem;
    }
    .form-group label {
        display: block;
        font-size: 0.875rem;
        color: var(--text, #cbd5e1);
        margin-bottom: 0.375rem;
        font-weight: 500;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        background: var(--input-bg, rgba(0,0,0,0.3));
        border: 1px solid var(--site-border, rgba(255,255,255,0.12));
        border-radius: 8px;
        padding: 0.625rem 0.875rem;
        color: var(--text, #fff);
        font-family: inherit;
        font-size: 0.9375rem;
        min-height: 44px;
        box-sizing: border-box;
        transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: 2px solid var(--gold, #C9A000);
        outline-offset: 1px;
        border-color: var(--gold, #C9A000);
    }
    .form-group select option { background: var(--site-surface, #1a1a2e); }
    .form-actions {
        margin-top: 1.5rem;
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    .btn-submit-section {
        padding: 0.75rem 2rem;
        background: var(--gold, #C9A000);
        color: #000;
        border: none;
        border-radius: 8px;
        font-size: 0.9375rem;
        font-weight: 700;
        cursor: pointer;
        min-height: 44px;
        transition: opacity 0.2s;
    }
    .btn-submit-section:hover:not(:disabled) { opacity: 0.85; }
    .btn-submit-section:disabled {
        opacity: 0.6;
        cursor: default;
    }

/* === migrated from order-confirmation.php (1 block) === */
        body { padding-top: 5rem; }
        .confirm-layout {
            max-width: 680px; margin: 0 auto; padding: 2rem 1rem; text-align: center;
        }
        @media (min-width: 640px) { .confirm-layout { padding: 3rem 1.5rem; } }
        .confirm-icon { font-size: 3.5rem; color: #2ecc71; margin-bottom: 1rem; }
        h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
        .order-ref { font-size: 1.1rem; color: var(--gold); font-weight: 700; margin-bottom: 2rem; }
        .order-card {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 1.25rem; text-align: left; margin-bottom: 1.5rem;
        }
        .order-card h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.75rem; }
        .order-items { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
        .order-item { display: flex; justify-content: space-between; font-size: 0.9rem; }
        .order-total-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.25rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
        .order-total-line.bold { font-weight: 800; }
        .ship-address { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
        .cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
        .btn-primary {
            padding: 0.75rem 1.5rem; background: var(--gold); color: #000; border-radius: 8px;
            font-weight: 700; text-decoration: none; min-height: 44px; display: inline-flex;
            align-items: center; font-size: 0.9rem;
        }
        .btn-secondary {
            padding: 0.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.2); color: var(--text);
            border-radius: 8px; font-weight: 600; text-decoration: none; min-height: 44px;
            display: inline-flex; align-items: center; font-size: 0.9rem;
        }

/* === migrated from order-status.php (1 block) === */
        body { padding-top: 5rem; }
        .status-layout {
            max-width: 680px; margin: 0 auto; padding: 2rem 1rem;
        }
        @media (min-width: 640px) { .status-layout { padding: 3rem 1.5rem; } }
        h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
        .status-form {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem;
        }
        .status-form p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
        .input-group { margin-bottom: 1rem; }
        .input-group label { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 0.3rem; }
        .input-group input {
            width: 100%; padding: 0.65rem 0.75rem; background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; color: var(--text);
            font-size: 0.95rem; min-height: 44px; box-sizing: border-box;
        }
        .input-group input:focus { outline: none; border-color: var(--gold); }
        .divider { text-align: center; color: var(--text-dim); font-size: 0.8rem; margin: 0.75rem 0; }
        .lookup-btn {
            width: 100%; padding: 0.8rem; background: var(--gold); color: #000;
            border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 800;
            cursor: pointer; min-height: 44px;
        }
        .lookup-btn:hover { opacity: 0.85; }
        .lookup-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .result-area { margin-top: 1.5rem; }
        .order-card {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem;
        }
        .order-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
        .order-ref-badge { font-weight: 800; color: var(--gold); font-size: 1.05rem; }
        .status-badge {
            padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.06em;
        }
        .status-pending    { background: rgba(255,193,7,0.2);  color: #ffc107; }
        .status-paid       { background: rgba(46,204,113,0.2); color: #2ecc71; }
        .status-processing { background: rgba(52,152,219,0.2); color: #3498db; }
        .status-shipped    { background: rgba(155,89,182,0.2); color: #9b59b6; }
        .status-delivered  { background: rgba(46,204,113,0.3); color: #2ecc71; }
        .status-cancelled  { background: rgba(231,76,60,0.2);  color: #e74c3c; }
        .status-refunded   { background: rgba(149,165,166,0.2);color: #95a5a6; }
        .order-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
        .tracking-info { font-size: 0.85rem; color: var(--gold); margin-top: 0.5rem; }
        .error-msg { color: #e74c3c; font-size: 0.9rem; margin-top: 0.75rem; display: none; }

/* === migrated from press.php (1 block) === */
.epk-wrap { padding: 6rem 1rem 4rem; max-width: 900px; margin: 0 auto; }
.epk-section { margin-bottom: 3rem; }
.press-photos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.press-photos img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.press-quotes blockquote { border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1rem 0; font-style: italic; }
.download-btn { display: inline-flex; align-items: center; min-height: 44px; padding: 0 1.5rem;
    background: var(--gold); color: #000; border-radius: 6px; text-decoration: none; font-weight: 700;
    margin: 0.5rem 0.5rem 0 0; font-size: 0.9rem; }
.download-btn:hover { opacity: 0.85; }
@media print {
    .site-nav, footer, .download-btn { display: none !important; }
    .epk-wrap { padding: 1rem; }
    body { background: #fff; color: #000; }
}

/* === migrated from product.php (1 block) === */
        body { padding-top: 5rem; }
        .product-detail {
            max-width: 1000px; margin: 0 auto; padding: 1.5rem 1rem;
            display: grid; gap: 2rem;
        }
        @media (min-width: 640px) {
            .product-detail { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; }
        }
        .gallery { display: flex; flex-direction: column; gap: 0.75rem; }
        .gallery-main {
            width: 100%; aspect-ratio: 1; background: rgba(255,255,255,0.05);
            border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center;
        }
        .gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
        .gallery-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .gallery-thumb {
            width: 60px; height: 60px; background: rgba(255,255,255,0.05);
            border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent;
            min-height: 44px; min-width: 44px;
        }
        .gallery-thumb.active { border-color: var(--gold); }
        .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .product-info-col {}
        .breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
        .breadcrumb a { color: var(--text-muted); text-decoration: none; }
        .breadcrumb a:hover { color: var(--gold); }
        .product-name-h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
        .product-price-row { margin-bottom: 1rem; }
        .product-price-big { font-size: 1.75rem; font-weight: 700; color: var(--gold); }
        .product-compare-big { text-decoration: line-through; color: var(--text-dim); font-size: 1rem; margin-left: 0.5rem; }
        .product-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }
        .variant-group { margin-bottom: 1rem; }
        .variant-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 0.4rem; }
        .variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .variant-btn {
            padding: 0.4rem 0.9rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
            background: none; color: var(--text); cursor: pointer; font-size: 0.85rem;
            min-height: 44px; transition: border-color 0.15s, background 0.15s;
        }
        .variant-btn:hover { border-color: var(--gold); }
        .variant-btn.selected { border-color: var(--gold); background: rgba(201,160,0,0.12); color: var(--gold); }
        .qty-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
        .qty-btn {
            width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
            background: none; color: var(--text); font-size: 1.2rem; cursor: pointer; display: flex;
            align-items: center; justify-content: center; transition: border-color 0.15s;
        }
        .qty-btn:hover { border-color: var(--gold); color: var(--gold); }
        .qty-display { font-size: 1.1rem; font-weight: 600; min-width: 2rem; text-align: center; }
        .add-cart-btn {
            width: 100%; padding: 0.85rem 1.5rem; background: var(--gold); color: #000;
            border: none; border-radius: 10px; font-size: 1rem; font-weight: 800;
            cursor: pointer; min-height: 44px; transition: opacity 0.2s;
        }
        .add-cart-btn:hover { opacity: 0.85; }
        .add-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        .add-cart-success { color: #2ecc71; font-size: 0.85rem; margin-top: 0.5rem; display: none; }
        .no-product { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }

/* === migrated from shop.php (1 block) === */
        body { padding-top: 5rem; }
        .shop-layout {
            max-width: 1200px; margin: 0 auto; padding: 1rem;
            display: grid; gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .shop-layout { grid-template-columns: 220px 1fr; padding: 2rem 1.5rem; }
        }
        .shop-sidebar {}
        .shop-sidebar h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.75rem; }
        .category-filter { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
        .category-btn {
            background: none; border: none; text-align: left; padding: 0.6rem 0.75rem;
            border-radius: 6px; cursor: pointer; font-size: 0.9rem; color: var(--text);
            min-height: 44px; transition: background 0.15s;
        }
        .category-btn:hover, .category-btn.active { background: rgba(201,160,0,0.12); color: var(--gold); }
        .search-bar { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
        .search-bar input {
            flex: 1; padding: 0.6rem 0.75rem; background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text);
            font-size: 0.9rem; min-height: 44px;
        }
        .search-bar input:focus { outline: none; border-color: var(--gold); }
        .search-bar button {
            padding: 0 1rem; background: var(--gold); color: #000; border: none;
            border-radius: 8px; cursor: pointer; font-weight: 700; min-height: 44px;
        }
        .product-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
        }
        @media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
        .product-card {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px; overflow: hidden; transition: transform 0.2s, border-color 0.2s;
        }
        .product-card:hover { transform: translateY(-2px); border-color: rgba(201,160,0,0.3); }
        .product-card a { text-decoration: none; color: inherit; display: block; }
        .product-image { width: 100%; aspect-ratio: 1; background: rgba(255,255,255,0.05); overflow: hidden; position: relative; }
        .product-image img { width: 100%; height: 100%; object-fit: cover; }
        .product-image .placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-dim); font-size: 2.5rem; }
        .featured-badge {
            position: absolute; top: 0.5rem; left: 0.5rem;
            background: var(--gold); color: #000; font-size: 0.65rem;
            font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
            padding: 2px 7px; border-radius: 4px;
        }
        .product-info { padding: 0.75rem; }
        .product-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
        .product-category { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.4rem; }
        .product-price { font-size: 1rem; font-weight: 700; color: var(--gold); }
        .product-compare { text-decoration: line-through; color: var(--text-dim); font-size: 0.8rem; margin-left: 0.4rem; }
        .shop-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); grid-column: 1/-1; }
        .shop-loading { text-align: center; padding: 3rem 1rem; color: var(--text-muted); grid-column: 1/-1; }

/* === migrated from shows.php (1 block) === */
    .shows-hero {
        padding: calc(var(--nav-height, 56px) + 3rem) 0 3rem;
        text-align: center;
        background: linear-gradient(180deg, var(--gold-tint) 0%, transparent 100%);
    }
    .shows-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1rem;
        color: var(--text);
    }
    .shows-hero .subtitle {
        color: var(--text-muted);
        font-size: 1.125rem;
    }
    .shows-section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .section-title i { color: var(--site-primary); }
    .shows-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
        gap: 2rem;
    }
    .show-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s;
    }
    .show-card:hover {
        transform: translateY(-4px);
        border-color: var(--border-strong);
        box-shadow: 0 12px 32px var(--gold-glow-sm);
    }
    .show-poster img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
    .show-details {
        padding: 1.5rem;
        position: relative;
    }
    .show-date {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        background: var(--site-primary);
        color: #000;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        line-height: 1;
    }
    .show-month {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .show-day {
        font-size: 1.75rem;
        font-weight: 900;
        margin: 0.25rem 0;
    }
    .show-year {
        font-size: 0.75rem;
        opacity: 0.8;
    }
    .show-title {
        font-size: 1.25rem;
        color: var(--text);
        margin-bottom: 0.75rem;
    }
    .show-venue, .show-time {
        color: var(--text-muted);
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    .show-venue i, .show-time i {
        color: var(--site-primary);
        margin-right: 0.5rem;
    }
    .show-details .btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .shows-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .show-item {
        display: grid;
        grid-template-columns: 140px 1fr auto;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        align-items: center;
    }
    .show-item-date {
        color: var(--text-dim);
        font-size: 0.875rem;
        font-weight: 600;
    }
    .show-item-title {
        color: var(--text);
        font-weight: 600;
    }
    .show-item-venue {
        color: var(--text-muted);
        font-size: 0.875rem;
    }
    .no-shows {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--bg-card);
        border-radius: 12px;
    }
    .no-shows i {
        font-size: 3rem;
        color: var(--text-dim);
        margin-bottom: 1rem;
    }
    .no-shows p {
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }
    .booking-cta {
        padding: 4rem 0;
        text-align: center;
        background: linear-gradient(135deg, var(--gold-tint) 0%, transparent 100%);
        margin-top: 2rem;
    }
    .booking-cta h2 {
        font-size: 2rem;
        color: var(--text);
        margin-bottom: 1rem;
    }
    .booking-cta p {
        color: var(--text-muted);
        margin-bottom: 2rem;
    }
    .cta-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    @media (max-width: 700px) {
        .show-item {
            grid-template-columns: 1fr;
            gap: 0.25rem;
        }
    }
    .presale-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: rgba(34,197,94,0.15);
        color: #4ade80;
        border: 1px solid rgba(74,222,128,0.35);
        border-radius: 20px;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        margin-bottom: 0.75rem;
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
    .presale-badge i { font-size: 0.65rem; flex-shrink: 0; }

/* === migrated from sponsor.php (1 block) === */
        /* ===== SPONSOR PAGE ===== */

        .sponsor-hero {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem 5rem;
            background: linear-gradient(160deg, var(--site-bg,#090909) 0%, var(--site-surface,#1C2E40) 60%, var(--site-bg,#090909) 100%);
            text-align: center;
            overflow: hidden;
        }
        .sponsor-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,160,0,0.07) 0%, transparent 70%);
            pointer-events: none;
        }
        .sponsor-hero-badge {
            display: inline-block;
            padding: 0.35rem 1.1rem;
            background: linear-gradient(135deg, var(--gold,#C9A000), var(--gold-light,#F5D37A));
            color: #090909;
            font-size: 0.7rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            border-radius: 50px;
            margin-bottom: 1.4rem;
        }
        .sponsor-hero-title {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, var(--gold,#C9A000) 0%, var(--gold-light,#F5D37A) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .sponsor-hero-sub {
            max-width: 600px;
            margin: 0 auto 2.2rem;
            color: var(--site-text-muted,#9a9490);
            font-size: 1.05rem;
            font-weight: 300;
            line-height: 1.7;
        }
        .sponsor-hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.95rem 2.2rem;
            background: linear-gradient(135deg, var(--gold,#C9A000), var(--gold-light,#F5D37A));
            color: #090909;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            text-decoration: none;
            transition: opacity 0.25s, transform 0.25s;
            min-height: 44px;
        }
        .sponsor-hero-cta:hover { opacity: 0.88; transform: translateY(-2px); }

        .sponsor-stats {
            padding: 4rem 2rem;
            background: var(--site-surface,#1C2E40);
            border-top: 1px solid var(--site-border,#2a2510);
            border-bottom: 1px solid var(--site-border,#2a2510);
        }
        .sponsor-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-item {
            padding: 1.5rem 1rem;
            background: var(--site-bg,#090909);
            border: 1px solid var(--site-border,#2a2510);
            border-radius: 12px;
        }
        .stat-number {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold,#C9A000), var(--gold-light,#F5D37A));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            margin-bottom: 0.4rem;
        }
        .stat-label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--site-text-muted,#9a9490);
        }

        .sponsor-tiers {
            padding: 5rem 2rem;
            background: var(--site-bg,#090909);
        }
        .section-title {
            text-align: center;
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--gold,#C9A000), var(--gold-light,#F5D37A));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
            align-items: start;
        }
        .tier-card {
            background: var(--site-surface,#1C2E40);
            border: 1px solid var(--site-border,#2a2510);
            border-radius: 16px;
            padding: 2rem 1.8rem;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
        }
        .tier-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-strong,rgba(201,160,0,0.3));
            box-shadow: 0 16px 40px rgba(0,0,0,0.4);
        }
        .tier-card--popular {
            border-color: var(--gold,#C9A000);
            box-shadow: 0 0 30px rgba(201,160,0,0.12);
        }
        .tier-badge {
            display: inline-block;
            padding: 0.3rem 0.9rem;
            background: linear-gradient(135deg, var(--gold,#C9A000), var(--gold-light,#F5D37A));
            color: #090909;
            font-size: 0.65rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            align-self: flex-start;
        }
        .tier-popular-label {
            display: inline-block;
            padding: 0.25rem 0.8rem;
            background: var(--gold,#C9A000);
            color: #090909;
            font-size: 0.6rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 50px;
            align-self: flex-start;
            margin-left: 0.4rem;
        }
        .tier-header { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
        .tier-name { font-size: 1.25rem; font-weight: 900; color: var(--gold-light,#F5D37A); text-transform: uppercase; letter-spacing: 0.5px; }
        .tier-price { font-size: 1rem; font-weight: 700; color: var(--gold,#C9A000); }
        .tier-price-sub { font-size: 0.75rem; color: var(--text-dim,rgba(240,237,232,0.4)); font-weight: 400; }
        .tier-perks { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
        .tier-perks li {
            display: flex; align-items: flex-start; gap: 0.6rem;
            font-size: 0.88rem; color: var(--site-text-muted,#9a9490); line-height: 1.45;
        }
        .tier-perks li::before {
            content: ''; flex-shrink: 0; margin-top: 0.35em;
            width: 6px; height: 6px; border-radius: 50%; background: var(--gold,#C9A000);
        }
        .btn-sp {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 0.85rem 1.8rem;
            background: linear-gradient(135deg, var(--gold,#C9A000), var(--gold-light,#F5D37A));
            color: #090909;
            font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.9rem;
            text-transform: uppercase; letter-spacing: 1px; border-radius: 8px;
            text-decoration: none; border: none; cursor: pointer;
            transition: opacity 0.25s, transform 0.25s; min-height: 44px;
        }
        .btn-sp:hover { opacity: 0.88; transform: translateY(-2px); }
        .btn-sp-outline {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 0.85rem 1.8rem;
            background: transparent; border: 2px solid var(--gold,#C9A000);
            color: var(--gold,#C9A000);
            font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
            text-transform: uppercase; letter-spacing: 1px; border-radius: 8px;
            text-decoration: none; cursor: pointer;
            transition: background 0.25s, color 0.25s, transform 0.25s; min-height: 44px;
        }
        .btn-sp-outline:hover { background: var(--gold,#C9A000); color: #090909; transform: translateY(-2px); }

        .sponsor-why {
            padding: 5rem 2rem;
            background: var(--site-surface,#1C2E40);
            border-top: 1px solid var(--site-border,#2a2510);
        }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
        .why-card { text-align: center; padding: 2rem 1.5rem; }
        .why-icon { font-size: 2rem; color: var(--gold,#C9A000); margin-bottom: 1rem; display: block; }
        .why-title { font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-light,#F5D37A); margin-bottom: 0.6rem; }
        .why-desc { font-size: 0.88rem; color: var(--site-text-muted,#9a9490); line-height: 1.65; font-weight: 300; }

        .sister-banner {
            text-align: center;
            padding: 1.5rem 2rem;
            background: rgba(201,160,0,0.06);
            border-top: 1px solid rgba(201,160,0,0.15);
            border-bottom: 1px solid rgba(201,160,0,0.15);
            font-size: 0.88rem;
            color: var(--site-text-muted,#9a9490);
        }
        .sister-banner a { color: var(--gold,#C9A000); text-decoration: none; font-weight: 700; }
        .sister-banner a:hover { text-decoration: underline; }

        .sponsor-inquire {
            padding: 5rem 2rem 6rem;
            background: var(--site-bg,#090909);
            border-top: 1px solid var(--site-border,#2a2510);
        }
        .sponsor-form-wrap { max-width: 680px; margin: 0 auto; }
        .form-section-sub { text-align: center; color: var(--site-text-muted,#9a9490); font-size: 0.95rem; font-weight: 300; margin-bottom: 2.5rem; line-height: 1.6; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
        .form-group label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--site-text-muted,#9a9490); }
        .required-mark { color: var(--gold,#C9A000); margin-left: 2px; }
        .form-control {
            width: 100%; padding: 0.8rem 1rem;
            background: var(--input-bg,rgba(255,255,255,0.05));
            border: 1px solid var(--site-border,#2a2510);
            border-radius: 8px; color: var(--text,#F0EDE8);
            font-family: 'Outfit', sans-serif; font-size: 16px;
            transition: border-color 0.25s; appearance: none; -webkit-appearance: none; min-height: 44px;
        }
        .form-control:focus { outline: none; border-color: var(--gold,#C9A000); }
        .form-control::placeholder { color: var(--text-dim,rgba(240,237,232,0.4)); }
        textarea.form-control { min-height: 120px; resize: vertical; line-height: 1.6; }
        select.form-control {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A000' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
        }
        select.form-control option { background: var(--site-surface,#1C2E40); color: var(--text,#F0EDE8); }
        .form-submit-wrap { margin-top: 1.5rem; text-align: center; }
        #sponsorSubmitBtn { padding: 1rem 3rem; font-size: 1rem; }
        #sponsor-form-feedback {
            margin-top: 1.2rem; padding: 0.9rem 1.2rem; border-radius: 8px;
            font-size: 0.9rem; font-weight: 600; text-align: center; display: none;
        }
        #sponsor-form-feedback.success { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
        #sponsor-form-feedback.error   { background: rgba(239,68,68,0.1);  color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

        .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            .sponsor-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
            .tiers-grid { grid-template-columns: 1fr; max-width: 480px; }
            .why-grid { grid-template-columns: 1fr; max-width: 400px; }
            .form-row { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .sponsor-stats-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
        }

/* === migrated from sponsors.php (1 block) === */
        .sp-wrap { max-width: 1060px; margin: 0 auto; padding: 5.5rem 1rem 4rem; }
        .sp-hero { text-align: center; margin-bottom: 3rem; }
        .sp-hero h1 { font-size: clamp(1.8rem,5vw,2.8rem); font-weight: 900; line-height: 1.15;
            background: var(--accent-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
        .sp-hero p { color: var(--text-muted); font-size: 1rem; margin-top: .75rem;
            max-width: 580px; margin-left: auto; margin-right: auto; }
        .tier-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 4rem; }
        @media(min-width:560px){.tier-grid{grid-template-columns:repeat(2,1fr);}}
        @media(min-width:900px){.tier-grid{grid-template-columns:repeat(4,1fr);}}
        .tier-card { background:var(--bg-card); border:1px solid var(--border); border-radius:14px;
            padding:1.5rem 1.25rem; display:flex; flex-direction:column; transition:transform .2s,border-color .2s; }
        .tier-card:hover { transform:translateY(-3px); }
        .tier-badge { display:inline-flex; align-items:center; gap:.35rem; font-size:.68rem; font-weight:700;
            text-transform:uppercase; letter-spacing:.8px; padding:.22rem .65rem; border-radius:50px;
            border:1px solid currentColor; margin-bottom:.85rem; width:fit-content; }
        .tier-name { font-size:1.05rem; font-weight:900; color:var(--text); margin-bottom:.45rem; }
        .tier-desc { font-size:.82rem; color:var(--text-muted); margin-bottom:1rem; line-height:1.5; flex:1; }
        .tier-price { font-size:1.3rem; font-weight:900; color:var(--gold); margin-bottom:.25rem; }
        .tier-price-label { font-size:.72rem; color:var(--text-dim); margin-bottom:1rem; }
        .tier-benefits { list-style:none; margin-bottom:1.25rem; }
        .tier-benefits li { display:flex; align-items:flex-start; gap:.5rem; font-size:.82rem;
            color:var(--text-muted); padding:.28rem 0; }
        .tier-benefits li i { color:var(--gold); margin-top:3px; flex-shrink:0; font-size:.72rem; }
        .btn-tier { display:block; text-align:center; padding:.75rem 1rem; background:transparent;
            border:1px solid var(--border); border-radius:8px; color:var(--text); font-size:.85rem;
            font-weight:700; cursor:pointer; transition:background .15s,border-color .15s;
            text-decoration:none; min-height:44px; line-height:1.4; }
        .btn-tier:hover { background:var(--bg-soft); border-color:var(--gold); color:var(--gold); }
        .section-head { text-align:center; margin-bottom:2rem; }
        .section-head h2 { font-size:clamp(1.3rem,4vw,1.9rem); font-weight:900; color:var(--text); }
        .section-head p { color:var(--text-muted); font-size:.9rem; margin-top:.5rem;
            max-width:520px; margin-left:auto; margin-right:auto; }
        .inquiry-section { margin-bottom:4rem; }
        .inquiry-form { background:var(--bg-card); border:1px solid var(--border); border-radius:14px;
            padding:2rem 1.5rem; max-width:680px; margin:0 auto; }
        .form-row { display:grid; grid-template-columns:1fr; gap:1rem; margin-bottom:1rem; }
        @media(min-width:560px){.form-row.two-col{grid-template-columns:1fr 1fr;}}
        .form-group { display:flex; flex-direction:column; gap:.35rem; }
        .form-group label { font-size:.82rem; font-weight:700; color:var(--text-muted); }
        .form-group input,.form-group select,.form-group textarea {
            background:var(--bg-soft); border:1px solid var(--border); border-radius:8px;
            color:var(--text); font-size:1rem; padding:.7rem .85rem;
            width:100%; box-sizing:border-box; min-height:44px; transition:border-color .15s; }
        .form-group textarea { min-height:100px; resize:vertical; }
        .form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline:none; border-color:var(--gold); }
        .btn-submit { width:100%; padding:.85rem; background:var(--gold); color:#000;
            font-size:.95rem; font-weight:900; border:none; border-radius:8px;
            cursor:pointer; min-height:44px; transition:opacity .15s; margin-top:.5rem; }
        .btn-submit:hover { opacity:.88; }
        .form-msg { margin-top:1rem; padding:.75rem 1rem; border-radius:8px; font-size:.85rem;
            font-weight:600; display:none; }
        .form-msg.success { background:rgba(34,197,94,.12); color:#22c55e; border:1px solid rgba(34,197,94,.25); }
        .form-msg.error   { background:rgba(239,68,68,.12); color:#ef4444; border:1px solid rgba(239,68,68,.25); }
        .sponsor-wall { margin-bottom:4rem; }
        .sponsor-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
        @media(min-width:560px){.sponsor-grid{grid-template-columns:repeat(3,1fr);}}
        @media(min-width:900px){.sponsor-grid{grid-template-columns:repeat(4,1fr);}}
        .sponsor-card { background:var(--bg-card); border:1px solid var(--border); border-radius:10px;
            padding:1.25rem 1rem; text-align:center; display:flex; flex-direction:column;
            align-items:center; gap:.5rem; }
        .sponsor-logo { width:60px; height:60px; object-fit:contain; border-radius:8px; }
        .sponsor-logo-ph { width:60px; height:60px; background:var(--bg-soft); border-radius:8px;
            display:flex; align-items:center; justify-content:center; color:var(--text-dim); font-size:1.4rem; }
        .sponsor-name { font-size:.85rem; font-weight:700; color:var(--text); }
        .sponsor-tier  { font-size:.68rem; font-weight:600; text-transform:uppercase; letter-spacing:.7px; color:var(--text-dim); }
        .sponsor-empty { text-align:center; color:var(--text-muted); font-size:.9rem;
            padding:2.5rem 1rem; background:var(--bg-card); border:1px dashed var(--border); border-radius:10px; }
        .media-kit-section { margin-bottom:4rem; }
        .media-kit-card { background:var(--bg-card); border:1px solid var(--border); border-radius:14px;
            padding:2rem 1.5rem; max-width:560px; margin:0 auto; text-align:center; }
        .media-kit-card i { font-size:2.5rem; color:var(--gold); margin-bottom:1rem; display:block; }
        .media-kit-card h3 { font-size:1.1rem; font-weight:900; color:var(--text); margin-bottom:.5rem; }
        .media-kit-card p { font-size:.85rem; color:var(--text-muted); margin-bottom:1.25rem; }
        .btn-media-kit { display:inline-flex; align-items:center; gap:.5rem; padding:.75rem 1.5rem;
            background:var(--gold); color:#000; font-size:.9rem; font-weight:900; border:none;
            border-radius:8px; cursor:pointer; min-height:44px; text-decoration:none; transition:opacity .15s; }
        .btn-media-kit:hover { opacity:.88; }

/* === migrated from upgrade.php (1 block) === */
        /* ── Layout ───────────────────────────────────────────────── */
        .upg-wrap {
            max-width: 520px;
            margin: 0 auto;
            padding: 5rem 1rem 4rem;
        }

        /* ── Flash messages ───────────────────────────────────────── */
        .flash {
            border-radius: 8px;
            padding: 0.85rem 1rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        .flash-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.35); color: #4ade80; }
        .flash-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.35);  color: #f87171; }
        .flash-info    { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.35); color: #60a5fa; }

        /* ── Already-upgraded card ─────────────────────────────────── */
        .already-card {
            background: var(--bg-card);
            border: 1px solid rgba(221,185,68,0.4);
            border-radius: 14px;
            padding: 2.5rem 1.5rem;
            text-align: center;
        }
        .already-card i { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 1rem; }
        .already-card h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
        .already-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

        /* ── Conversion card ──────────────────────────────────────── */
        .upg-card {
            background: var(--bg-card);
            border: 1px solid var(--gold);
            border-radius: 14px;
            padding: 2rem 1.5rem;
            position: relative;
        }
        .upg-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: #000;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 0.2rem 1rem;
            border-radius: 0 0 8px 8px;
            white-space: nowrap;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .upg-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
        .upg-headline {
            font-size: clamp(1.5rem, 5vw, 2rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 0.4rem;
            background: var(--gold-text);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .upg-price {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 1.75rem;
        }
        .upg-price strong {
            color: var(--gold);
            font-size: 1.35rem;
            font-weight: 900;
        }

        /* ── Benefit list ─────────────────────────────────────────── */
        .upg-benefits {
            list-style: none;
            margin: 0 0 1.75rem;
            padding: 0;
        }
        .upg-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.92rem;
            color: var(--text-muted);
            padding: 0.4rem 0;
            border-bottom: 1px solid var(--border);
        }
        .upg-benefits li:last-child { border-bottom: none; }
        .upg-benefits li i {
            color: var(--gold);
            margin-top: 2px;
            flex-shrink: 0;
            width: 14px;
        }

        /* ── CTA button ───────────────────────────────────────────── */
        .btn-upgrade {
            display: block;
            width: 100%;
            background: var(--gold);
            color: #000;
            border: none;
            border-radius: 10px;
            padding: 0.9rem 1rem;
            font-size: 1rem;
            font-weight: 800;
            font-family: inherit;
            text-align: center;
            cursor: pointer;
            min-height: 44px;
            transition: opacity 0.18s;
        }
        .btn-upgrade:hover { opacity: 0.88; }
        .btn-upgrade:disabled { opacity: 0.5; cursor: not-allowed; }

        /* ── Maybe Later link ─────────────────────────────────────── */
        .maybe-later {
            display: block;
            text-align: center;
            margin-top: 1.1rem;
            font-size: 0.875rem;
            color: var(--text-muted);
            text-decoration: none;
            min-height: 44px;
            line-height: 44px;
            transition: color 0.15s;
        }
        .maybe-later:hover { color: var(--text); }

        /* ── Back link (already-upgraded) ─────────────────────────── */
        .btn-outline-gold {
            display: inline-block;
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 8px;
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            min-height: 44px;
            line-height: 1.4;
            transition: background 0.18s, color 0.18s;
        }
        .btn-outline-gold:hover { background: var(--gold); color: #000; }

        /* ── Guarantee line ───────────────────────────────────────── */
        .upg-guarantee {
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-dim);
            margin-top: 0.9rem;
        }
        .upg-guarantee i { color: var(--gold); margin-right: 0.25rem; }

/* === migrated from videos.php (1 block) === */
    /* Videos page — mobile-first 320px+, fixed-nav clearance, WCAG AA */
    .videos-page-main {
        padding-top: calc(var(--nav-height, 56px) + 5rem);
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 5rem;
        max-width: 1280px;
        margin: 0 auto;
    }
    .videos-hero {
        text-align: center;
        margin-bottom: 3rem;
    }
    .videos-hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        margin: 0 0 1rem;
        background: var(--accent-text);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: var(--accent);
    }
    .videos-hero p {
        font-size: 1.05rem;
        color: var(--text-muted);
        max-width: 56ch;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Grid: 1col @320px, 2col @481px, 3col @768px, 4col @1024px */
    .videos-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    @media (min-width: 481px) {
        .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    }
    @media (min-width: 768px) {
        .videos-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1024px) {
        .videos-grid { grid-template-columns: repeat(4, 1fr); }
    }

    .video-card {
        display: flex;
        flex-direction: column;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--site-radius);
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        min-height: 44px;
        transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        opacity: 0;
        transform: translateY(20px);
    }
    .video-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    .video-card:hover,
    .video-card:focus-visible {
        transform: translateY(-4px);
        border-color: var(--border-strong);
        box-shadow: var(--site-shadow);
        outline: none;
    }
    .video-card:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    .video-wrapper {
        position: relative;
        aspect-ratio: 16 / 9;
        background: var(--bg-soft);
        overflow: hidden;
    }
    .video-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }
    .video-card:hover .video-wrapper img,
    .video-card:focus-visible .video-wrapper img {
        transform: scale(1.04);
    }
    .video-play-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.25);
        transition: background 0.25s ease;
        pointer-events: none;
    }
    .video-card:hover .video-play-overlay,
    .video-card:focus-visible .video-play-overlay {
        background: rgba(0, 0, 0, 0.45);
    }
    .video-play-icon {
        width: 64px;
        height: 64px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 50%;
        background: var(--accent);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        transition: transform 0.25s ease, background 0.25s ease;
    }
    .video-card:hover .video-play-icon,
    .video-card:focus-visible .video-play-icon {
        transform: scale(1.1);
        background: var(--accent-light);
    }

    .video-content {
        padding: 1rem 1.25rem 1.25rem;
        flex: 1;
    }
    .video-content h3 {
        margin: 0 0 0.35rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.3;
    }
    .video-content p {
        margin: 0;
        font-size: 0.875rem;
        color: var(--text-muted);
    }

    .videos-empty {
        text-align: center;
        padding: 3rem 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--site-radius);
        color: var(--text-muted);
    }
    .videos-empty a {
        color: var(--accent);
        text-decoration: underline;
    }
    .videos-empty a:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    /* prefers-reduced-motion: skip the fade-in animation entirely */
    @media (prefers-reduced-motion: reduce) {
        .video-card {
            opacity: 1;
            transform: none;
            transition: none;
        }
        .video-card:hover,
        .video-card:focus-visible {
            transform: none;
        }
        .video-card:hover .video-wrapper img,
        .video-card:focus-visible .video-wrapper img {
            transform: none;
        }
    }

/* === migrated from voice.php (1 block) === */
.voice-wrap { padding: 6rem 1rem 4rem; max-width: 860px; margin: 0 auto; }
.voice-category { margin-bottom: 3rem; }
.voice-category h2 { font-size: 1.2rem; color: var(--gold); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1rem; }
.voice-item { background: var(--card-bg); border-radius: 8px; padding: 1.25rem; margin-bottom: 1rem; }
.voice-question { font-weight: 600; margin-bottom: 0.5rem; }
.voice-answer { color: var(--text-muted); line-height: 1.7; }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.hhw-cta { display: inline-flex; align-items: center; min-height: 44px; padding: 0 1.5rem;
    background: var(--gold); color: #000; border-radius: 6px; font-weight: 700;
    text-decoration: none; margin-top: 1.5rem; }

/* === UI wiring utilities (2026-05-11) === */
:root {
    --brand-paypal: #169BD7;
    --brand-stripe: #6772E5;
    --success: #2ecc71;
    --danger: #ff6b6b;
}
.icon-mr { margin-right: 0.4rem; }
.text-muted { color: var(--text-muted); }
.download-btn--inline { display: inline-flex; }
.download-btn--block { margin-bottom: 2rem; }
.msg-feedback--success { color: var(--accent, #DDB944); }
.msg-feedback--error { color: var(--danger, #ff6b6b); }
.order-total-line--discount { color: var(--success, #2ecc71); }
.text-brand-paypal { color: var(--brand-paypal); }
.text-brand-stripe { color: var(--brand-stripe); }

/* dashboard.php structural classes (replace inline style=) */
.dash-section-spacer { margin-bottom: 1.5rem; }
.dash-tier-block { margin-bottom: 1rem; }
.dash-tier-name { font-size: 1.15rem; font-weight: 700; }
.dash-tier-price { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
.dash-upgrade-wrap { margin-top: 1rem; }
.dash-upgrade-link { display: block; text-align: center; }
.dash-view-all-wrap { margin-top: 1rem; text-align: center; }
.dash-view-all-link { font-size: 0.82rem; }
.dash-empty-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.dash-msg-row { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.dash-upgrade-cta-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.dash-activity-list { list-style: none; }
.welcome-hide { display: none; }

/* cart.php / order-confirmation.php helpers */
.cart-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-empty-h2 { margin-bottom: 0.5rem; }
.cart-empty-link { color: var(--gold); }
.confirm-icon--gold { color: var(--gold); }
.confirm-note { color: var(--text-muted); margin-bottom: 1.5rem; }
.no-product-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.no-product-h1 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.no-product-link { color: var(--gold); }
.product-tshirt-ph { font-size: 4rem; color: var(--text-dim); }

/* checkout.php helpers */
.form-section--spaced { margin-bottom: 1rem; }
.summary-loading { color: var(--text-muted); font-size: 0.85rem; }
.checkout-col, .field-wrap { /* hookable wrappers — defined for selector targeting */ }

/* press.php helpers */
.press-photo-item { /* photo wrapper inside .press-photos-grid */ }
.press-intro { color: var(--text-muted); margin-bottom: 2rem; }

/* sponsors.php dynamic badge color */
.tier-badge { border-color: var(--badge-color, currentColor); color: var(--badge-color, currentColor); }
.sponsor-empty-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 0.75rem; }

/* exclusive.php / lyrics.php helpers */
.excl-tier-label { color: var(--gold); }
.excl-upgrade-link { color: var(--gold); text-decoration: underline; }
.excl-header-icon { color: var(--gold); margin-right: 0.5rem; }
.lyrics-music-link { color: var(--gold); min-height: 44px; display: inline-flex; align-items: center; }

/* miami-event.php helpers */
.miami-form-note { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.miami-status-link { color: var(--gold); }

/* music.php streaming wrapper container reused */
.yt-watch-bar { margin-top: 0.5rem; }
.copy-lyrics-btn { margin-top: 0.8rem; }

/* === 404 error page === */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}
.error-container {
    max-width: 600px;
    text-align: center;
}
.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
.error-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.error-message {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.error-suggestions {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.error-suggestions p {
    color: #64748b;
    margin-bottom: 1rem;
}
.error-suggestions ul {
    list-style: none;
    padding: 0;
}
.error-suggestions li {
    margin: 0.5rem 0;
}
.error-suggestions a {
    color: var(--site-primary);
    text-decoration: none;
}
.error-suggestions a:hover {
    text-decoration: underline;
}
