/* =========================================================================
   Gaby Ramírez | Celebrity Fan Site
   Design: Dark Neon — Electric Blues, Hot Pinks, Neon Purples
   ========================================================================= */

/* --- CSS Custom Properties --- */
:root {
    /* Core Palette */
    --bg-main: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #16161f;
    --bg-surface: #0e0e15;

    /* Neon Colors (named historically — actual values are blue tones) */
    --neon-pink: #2979ff;
    --neon-cyan: #00b0ff;
    --neon-purple: #448aff;
    --cta-pink: #2962ff;
    --neon-blue: #2979ff;

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #9898a6;
    --text-muted: #5a5a6e;

    /* Glow Shadows */
    --glow-pink: 0 0 20px rgba(41, 121, 255, 0.4), 0 0 60px rgba(41, 121, 255, 0.15);
    --glow-cyan: 0 0 20px rgba(0, 176, 255, 0.4), 0 0 60px rgba(0, 229, 255, 0.15);
    --glow-cta: 0 0 20px rgba(41, 98, 255, 0.5), 0 0 60px rgba(41, 98, 255, 0.2);
    --glow-pink-subtle: 0 0 10px rgba(41, 121, 255, 0.2);
    --glow-cyan-subtle: 0 0 10px rgba(0, 229, 255, 0.2);

    /* Typography */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-spring: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-pink) var(--bg-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2979ff, #00b0ff);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00b0ff, #2979ff);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Section Animations (GSAP targets) --- */
.section-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
}

.section-animate.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Neon Text Utilities --- */
.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(41, 121, 255, 0.6), 0 0 40px rgba(41, 121, 255, 0.3);
}

.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.3);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header .neon-underline {
    display: block;
    width: 80px;
    height: 3px;
    margin: 0 auto;
    background: linear-gradient(90deg, #2979ff, #00b0ff);
    border-radius: var(--radius-full);
    box-shadow: 0 0 12px rgba(41, 121, 255, 0.4);
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 8px rgba(41, 121, 255, 0.3);
        width: 80px;
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
        width: 120px;
    }
}

/* =========================================================================
   1. HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero_avatar_new.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #0a0a0f;
    z-index: 0;
    will-change: transform;
}

/* Gradient fade at bottom of hero */
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-main) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Dark overlay for text readability + subtle neon glow accents */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(41, 121, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 229, 255, 0.10) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(10, 10, 15, 0.45) 0%, rgba(10, 10, 15, 0.25) 40%, rgba(10, 10, 15, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
}

.hero-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-primary);
    text-shadow:
        0 0 20px rgba(41, 121, 255, 0.5),
        0 0 60px rgba(41, 121, 255, 0.2),
        0 0 120px rgba(0, 229, 255, 0.1);
    margin-bottom: 16px;
}

/* Neon flicker animation on load */
@keyframes neonFlicker {
    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 20px rgba(41, 121, 255, 0.5),
            0 0 60px rgba(41, 121, 255, 0.2),
            0 0 120px rgba(0, 229, 255, 0.1);
        opacity: 1;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
        opacity: 0.7;
    }
}

.hero-name.flicker {
    animation: neonFlicker 2s ease-in-out 1;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-pink), transparent);
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* =========================================================================
   2. SOCIAL LINKS / CTA BAR
   ========================================================================= */
.social-bar {
    padding: 80px 0;
    background: var(--bg-surface);
    position: relative;
}

.social-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-cyan), transparent);
    opacity: 0.3;
}

.social-bar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* OnlyFans Primary CTA */
.cta-onlyfans {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--cta-pink), var(--neon-pink));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--radius-full);
    border: 2px solid rgba(41, 98, 255, 0.5);
    box-shadow: var(--glow-cta);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-onlyfans::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-onlyfans:hover::before {
    left: 100%;
}

.cta-onlyfans:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 30px rgba(41, 98, 255, 0.6),
        0 0 80px rgba(41, 98, 255, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.4);
}

.cta-onlyfans .cta-icon {
    font-size: 1.5rem;
}

/* Social Icons Row */
.social-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
}

/* FIX: Merged duplicate .social-icon-link:hover rules into one */
.social-icon-link:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
    background: rgba(0, 229, 255, 0.06);
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
    }
}

/* Mailchimp Email Signup */
.email-signup {
    width: 100%;
    max-width: 500px;
}

.email-signup-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.email-signup-form:focus-within {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink-subtle);
}

.email-signup-input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.email-signup-input::placeholder {
    color: var(--text-muted);
}

.email-signup-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.email-signup-btn:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    box-shadow: var(--glow-cyan-subtle);
}

/* =========================================================================
   3. CUSTOM VIMEO CAROUSEL
   ========================================================================= */
.carousel-section {
    padding: 60px 0;
    --gold:        #2979ff;
    --gold-dim:    rgba(41,121,255,0.12);
    --gold-border: rgba(41,121,255,0.22);
    --crimson:     #0d47a1;
    --tile-w:      230px;
    --tile-h:      408px;
    --gap:         18px;
    --r:           10px;
    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-head {
    padding: 0 48px 24px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.carousel-track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px 48px 40px;
    cursor: grab;
}
.carousel-track:active { cursor: grabbing; }

.carousel-track::-webkit-scrollbar { height: 2px; display: none; }

.tile {
    position: relative;
    flex: 0 0 var(--tile-w);
    height: var(--tile-h);
    border-radius: var(--r);
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--bg-card);
    cursor: pointer;
    transform: scale(1) translateY(0);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    border: 1px solid var(--gold-border);
    user-select: none;
    display: block;
    text-decoration: none;
}

.tile:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow:
      0 20px 40px rgba(0,0,0,0.6),
      0 0 0 1px rgba(41,121,255,0.5),
      0 0 40px rgba(13,71,161,0.3);
    z-index: 20;
}

.tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
    z-index: 6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.tile:hover::before { transform: scaleX(1); }

.tile iframe {
    position: absolute;
    inset: -20%;
    width: 140%;
    height: 140%;
    border: none;
    pointer-events: none;
    background: #000;
}

/* FIX: Single definition of .tile-poster (removed duplicate) */
.tile-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.4s var(--ease);
}
.tile:hover .tile-poster {
    opacity: 0;
}

/* FIX: Single definition of .tile-grad (removed duplicate) */
.tile-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(4,2,2,0.97) 0%,
      rgba(4,2,2,0.55) 38%,
      rgba(4,2,2,0.1)  65%,
      transparent      100%
    );
    z-index: 2;
    transition: background 0.4s var(--ease);
}

.tile:hover .tile-grad {
    background: linear-gradient(
      to top,
      rgba(4,2,2,1)    0%,
      rgba(4,2,2,0.4)  50%,
      transparent      100%
    );
}

.tile-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Bebas Neue', var(--font-heading), cursive;
    font-size: 56px;
    line-height: 1;
    color: rgba(41,121,255,0.15);
    z-index: 3;
    transition: color 0.4s;
    pointer-events: none;
}
.tile:hover .tile-num { color: rgba(41,121,255,0.4); }

.tile-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(41,121,255,0.5);
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s;
}
.tile:hover .tile-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.tile-play:hover { background: rgba(41,121,255,0.15); }
.tile-play svg {
    width: 20px; height: 20px;
    fill: var(--gold);
    margin-left: 3px;
}

.tile-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 18px 20px;
    z-index: 5;
}

.tile-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 9px;
}

.tile-title {
    font-family: 'Bebas Neue', var(--font-heading), cursive;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
    transform: translateY(5px);
    transition: transform 0.4s var(--ease);
}
.tile:hover .tile-title { transform: translateY(0); }

.tile-artist {
    font-family: 'Crimson Pro', var(--font-body), serif;
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s 0.05s var(--ease), transform 0.4s 0.05s var(--ease);
}
.tile:hover .tile-artist { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
    .carousel-section {
        --tile-w: 185px;
        --tile-h: 328px;
    }
    .section-head, .carousel-track { padding-left: 24px; padding-right: 24px; }
}

/* SEE MORE link */
.see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 12px 0;
}

.see-more-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(41, 121, 255, 0.5);
}

.see-more-link .arrow-icon {
    transition: transform 0.3s ease;
}

.see-more-link:hover .arrow-icon {
    transform: translateX(6px);
}

.see-more-wrap {
    text-align: center;
    padding-top: 20px;
    position: relative;
}

.see-more-wrap::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.15), transparent);
    margin-bottom: 20px;
}

/* =========================================================================
   4. BIOGRAPHY SECTION
   ========================================================================= */
.bio-section {
    padding: var(--section-padding);
    position: relative;
}

.bio-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-purple));
}

.bio-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.bio-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.bio-text p {
    margin-bottom: 20px;
}

/* Drop cap */
.bio-text p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 8px;
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(41, 121, 255, 0.4);
}

.bio-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.bio-text em {
    color: var(--neon-cyan);
    font-style: normal;
}

/* Bio subsections */
.bio-subsection {
    margin-top: 32px;
}

.bio-subsection h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(41, 121, 255, 0.2);
}

.bio-subsection ul {
    list-style: none;
    padding: 0;
}

.bio-subsection ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bio-subsection ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* Bio portrait */
.bio-portrait {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bio-portrait img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(41, 121, 255, 0.2);
    pointer-events: none;
}

/* =========================================================================
   5. BLOG SECTION
   ========================================================================= */
.blog-section {
    padding: var(--section-padding);
    background: var(--bg-surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px;
    transition: var(--transition-spring);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(41, 121, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-pink-subtle);
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--neon-cyan);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-pink);
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.blog-read-more:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 176, 255, 0.4);
    gap: 10px;
}

/* =========================================================================
   6. GALLERY SECTION
   ========================================================================= */
.gallery-section {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

/* Masonry-like varying heights */
.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-item:nth-child(7) {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
    z-index: 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.08);
}

/* Color gradient variations */
.gallery-placeholder.gp-1 {
    background: linear-gradient(135deg, #1a0528, #e040fb40);
}

.gallery-placeholder.gp-2 {
    background: linear-gradient(135deg, #05152e, #00e5ff30);
}

.gallery-placeholder.gp-3 {
    background: linear-gradient(135deg, #2e0518, #ff408140);
}

.gallery-placeholder.gp-4 {
    background: linear-gradient(135deg, #0a0528, #b24bf340);
}

.gallery-placeholder.gp-5 {
    background: linear-gradient(135deg, #051a2e, #304ffe30);
}

.gallery-placeholder.gp-6 {
    background: linear-gradient(135deg, #1a0a28, #e040fb30, #00e5ff20);
}

.gallery-placeholder.gp-7 {
    background: linear-gradient(135deg, #0e0a20, #b24bf320);
}

.gallery-placeholder.gp-8 {
    background: linear-gradient(135deg, #200a18, #ff408130);
}

.gallery-placeholder .gp-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 8px;
}

.gallery-placeholder .gp-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-placeholder .gp-year {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .overlay-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.gallery-overlay .overlay-year {
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
    text-align: center;
}

.lightbox-content img,
.lightbox-content .lightbox-placeholder {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(41, 121, 255, 0.2);
    box-shadow: var(--glow-pink);
}

.lightbox-placeholder {
    width: 70vw;
    max-width: 800px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-secondary);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.lightbox-close:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: var(--glow-pink-subtle);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan-subtle);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* =========================================================================
   7. FOOTER
   ========================================================================= */
.site-footer {
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: var(--bg-surface);
}

.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink-subtle);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-legal a {
    color: var(--neon-cyan);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(41, 121, 255, 0.3);
}

/* =========================================================================
   MEDIA & DETAIL PAGES — Shared Header/Nav Styles
   ========================================================================= */
.page-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(41, 121, 255, 0.3);
}

.page-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.page-nav-back:hover {
    color: var(--neon-cyan);
}

/* Subpage hero */
.subpage-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.subpage-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.subpage-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* =========================================================================
   MEDIA LISTING GRID (media.html)
   ========================================================================= */
.media-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 80px;
}

/* FIX: Added missing .media-card styles */
.media-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-spring);
    text-decoration: none;
    color: inherit;
}

.media-card:hover {
    transform: translateY(-6px);
    border-color: rgba(41, 121, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), var(--glow-pink-subtle);
}

.media-card-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.media-card-info {
    padding: 20px;
}

.media-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.media-card-year {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Gradient thumbnails for media cards */
.gradient-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', var(--font-heading), cursive;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.4s ease;
}

.media-card:hover .gradient-thumb {
    transform: scale(1.05);
}

.gradient-thumb.grad-1 { background: linear-gradient(135deg, #1a237e, #2979ff); }
.gradient-thumb.grad-2 { background: linear-gradient(135deg, #004d40, #00b0ff); }
.gradient-thumb.grad-3 { background: linear-gradient(135deg, #b71c1c, #ff6f00); }
.gradient-thumb.grad-4 { background: linear-gradient(135deg, #4a148c, #7c4dff); }
.gradient-thumb.grad-5 { background: linear-gradient(135deg, #0d47a1, #00e5ff); }
.gradient-thumb.grad-6 { background: linear-gradient(135deg, #880e4f, #e040fb); }
.gradient-thumb.grad-7 { background: linear-gradient(135deg, #1b5e20, #76ff03); }
.gradient-thumb.grad-8 { background: linear-gradient(135deg, #e65100, #ffd600); }

/* =========================================================================
   VIDEO EMBED (media-detail.html)
   ========================================================================= */
.video-embed-container {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* FIX: Merged duplicate .detail-info definitions into one */
.detail-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    padding-bottom: 80px;
    text-align: center;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 16px;
    margin-top: 40px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.detail-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.detail-back-btn:hover {
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink-subtle);
}

/* Privacy page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.privacy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 40px 0 16px;
}

.privacy-content p,
.privacy-content ul {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-content ul {
    padding-left: 24px;
}

.privacy-content ul li {
    margin-bottom: 8px;
}

/* Blog post page */
.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin: 32px 0 12px;
}

.blog-post-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* =========================================================================
   RESPONSIVE — MOBILE FIRST
   ========================================================================= */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .bio-layout {
        grid-template-columns: 1fr;
    }

    .bio-portrait {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
    }

    .bio-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-row: span 1;
    }

    .gallery-item:nth-child(7) {
        grid-column: span 1;
    }

    .bio-card {
        padding: 28px;
    }

    .bio-text p:first-of-type::first-letter {
        font-size: 2.5em;
    }

    .media-card-thumb {
        height: 160px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cta-onlyfans {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .social-icon-link {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

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

    .hero-name {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .email-signup-form {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .email-signup-input {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .email-signup-btn {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        padding: 14px;
        text-align: center;
    }

    .lightbox-content {
        max-width: 95vw;
    }

    .social-icons-row {
        gap: 14px;
    }
}
/* =========================================================================
   4. SEO EDITORIAL SECTION
   ========================================================================= */
.editorial {
  border-top: 1px solid var(--dim, #3a3530);
  padding: 72px 48px 88px;
  max-width: 980px;
  margin: 0 auto;
}

.editorial > h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 38px;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.editorial > h2 span { color: #2979ff; }

.editorial > p {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 720px;
}

.editorial > p strong { color: var(--text-primary); font-weight: 600; }

.songs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0;
}

@media (max-width: 680px) { .songs-grid { grid-template-columns: 1fr; } }

.song-card {
  background: var(--bg-card);
  border: 1px solid var(--dim, #3a3530);
  border-left: 3px solid #2979ff;
  border-radius: 6px;
  padding: 24px 22px;
  transition: border-color 0.3s, background 0.3s;
}

.song-card:hover {
  border-color: #2979ff;
  background: #131313;
}

.song-card h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #2979ff;
  margin-bottom: 8px;
}

.song-card p {
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.song-card p strong { color: var(--text-primary); }

.faq-block {
  margin-top: 56px;
  border-top: 1px solid var(--dim, #3a3530);
  padding-top: 40px;
}

.faq-block > h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 34px;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.faq-block > h2 span { color: #2979ff; }

.faq-item {
  border-bottom: 1px solid var(--dim, #3a3530);
  padding: 22px 0;
}

.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-a {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq-a strong { color: var(--text-primary); }

/* =========================================================================
   VERTICAL NEON PLAYER
   ========================================================================= */
.vertical-player-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-top: 176.67%; /* 9:16 approx for Vimeo Vertical */
    border-radius: 20px;
    overflow: hidden;
    background: #000;

    /* Neon glow effect */
    box-shadow:
        0 0 20px rgba(41, 121, 255, 0.5),
        0 0 40px rgba(0, 176, 255, 0.4),
        0 0 80px rgba(41, 121, 255, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.vertical-player-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #2979ff, #00b0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 10;
    pointer-events: none;
}

.vertical-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* =========================================================================
   TRANSITIONAL IMAGE — FADING INTO BIO
   ========================================================================= */
.gaby-transition {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    margin-top: -2px;
}

.gaby-transition-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Top fade from dark background */
.gaby-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, var(--bg-main) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Bottom fade into bio section */
.gaby-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-main) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Neon blue glow accent overlay */
.gaby-transition-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(41, 121, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 40%, rgba(0, 176, 255, 0.1) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
}

/* Floating name text */
.gaby-transition-text {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    pointer-events: none;
}

.gaby-transition-text h2 {
    font-family: 'Bebas Neue', var(--font-heading), cursive;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(41, 121, 255, 0.6), 0 0 80px rgba(0, 176, 255, 0.3);
    line-height: 0.9;
}

.gaby-transition-text p {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(41, 121, 255, 0.7);
    margin-top: 8px;
    letter-spacing: 0.15em;
}

@media (max-width: 600px) {
    .gaby-transition {
        height: 50vh;
        min-height: 300px;
    }
}

/* =========================================================================
   404 PAGE
   ========================================================================= */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 24px;
}

.error-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.error-page p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.error-page a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    color: #fff;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.error-page a:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-pink);
}
