/* Base Reset & Variables */
:root {
    --bg-color: #090705;
    --text-primary: #ffffff;
    --text-secondary: #DDD;
    --bronze-primary: #cd7f32;
    --bronze-glow: #ffae42;
    --bronze-muted: #4a3728;
    --accent-glow: rgba(205, 127, 50, 0.3);
    --surface-dark: #0a0a0a;
    --font-title: 'Bebas Neue', cursiv;
    --font-body: 'Barlow Condensed', sans-serif;
    --primary-font: var(--font-body);
    /* For backward compatibility if needed */
    /* Fallback for the bold industrial look */
    --section-spacing: 60px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@view-transition {
    navigation: auto;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky nav */
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
} */

/* Bronze Glow Typography & Utilities */
.bronze-text {
    background: linear-gradient(90deg, #cb7d34 0%, #edc182 25%, #cb7d34 50%, #edc182 75%, #cb7d34 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.animate-shimmer {
    animation: shimmer 4s linear infinite;
}

.animate-shimmer-slow {
    animation: shimmer 18s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Reusable Metallic Shimmer Utility (for non-text elements) */
.shimmer-bronze {
    position: relative;
    overflow: hidden;
}

.shimmer-bronze::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1) 45%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 55%,
            transparent);
    transform: skewX(-20deg);
    animation: shimmer-swipe 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shimmer-swipe {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.bronze-glow-effect:hover {
    filter: drop-shadow(0 0 30px var(--bronze-glow));
    animation-play-state: paused;
}

/* Typography Hierarchy */
h1,
h2,
h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Layout Blocks */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-spacing);
}

/* Vertical spacing/padding handled by .content-container */

/* Overrides for specific containers */
.hero .content-container,
.main-footer .content-container,
.nav-bar .content-container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-bar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(205, 127, 50, 0.1);
    height: 70px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--bronze-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer Styles */
.main-footer {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo-box .logo {
    font-size: 3rem;
    margin-bottom: 5px;
}

.footer-logo-box p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
}

.footer-emails {
    text-align: right;
}

.footer-emails a {
    display: block;
    color: var(--bronze-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-divider {
    height: 1px;
    background: rgba(205, 127, 50, 0.2);
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--bronze-primary);
}

.footer-tagline {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.4em;
    word-spacing: 1em;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-emails {
        text-align: center;
    }

    .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-booking-mobile {
    display: none;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--bronze-primary);
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bronze-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--bronze-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 40px;
        gap: 12px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-links a.nav-booking-mobile {
        display: block;
        margin-top: 20px;
        padding: 12px 30px;
        border: 1px solid var(--bronze-primary);
        color: var(--bronze-primary);
        font-size: 1.2rem;
    }

    .nav-links a.nav-booking-mobile::after {
        display: none;
    }


    .nav-bar .btn-karta {
        display: none;
    }
}

/* Buttons */
.btn {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 14px 34px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--bronze-primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--bronze-glow);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--bronze-primary);
    color: var(--bronze-primary);
}

.btn-karta {
    padding: 8px 18px;
    font-size: 0.7rem;
    border: 1px solid var(--bronze-primary);
    color: var(--bronze-primary);
}

/* Section Headers (Consolidated) */
.section-header {
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 1px;
    background: var(--bronze-primary);
}

.text-center .section-header::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header .label {
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--bronze-primary);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-header h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1;
    text-wrap: balance;
}

/* Specific Header Adjustments */
.press-header {
    margin-bottom: 5rem;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;

    +.press-grid {
        margin-top: 40px;
    }
}

.press-item {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.press-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.press-item h3 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: normal;
}

.press-item p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.press-footer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.press-source {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    display: flex;
    gap: 8px;
}

.press-source span {
    color: var(--bronze-primary);
}

/* Social CTA in Reactions Section */
.press-social-cta {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.press-social-cta h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #0a0a0a;
    border: 1px solid rgba(205, 127, 50, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border-radius: 2px;
}

.cta-social-btn svg {
    transition: transform 0.4s ease;
}

.cta-social-btn:hover {
    border-color: var(--bronze-primary);
    background: #111;
    color: var(--bronze-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.cta-social-btn:hover svg {
    transform: scale(1.15);
}

/* Specific Hover State Glows */
.cta-social-btn.spotify:hover {
    box-shadow: 0 0 20px rgba(30, 215, 96, 0.2);
}

.cta-social-btn.tiktok:hover {
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.15), 0 0 10px rgba(255, 0, 80, 0.15);
}

.cta-social-btn.instagram:hover {
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
}

.cta-social-btn.facebook:hover {
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}

.cta-social-btn.youtube:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .press-item {
        padding: 0;
        border-right: none !important;
    }

    .press-social-cta {
        padding: 3rem 1.5rem;
    }

    .cta-social-buttons {
        gap: 12px;
    }

    .cta-social-btn {
        width: calc(50% - 6px);
        padding: 12px 15px;
        font-size: 0.7rem;
        justify-content: center;
        gap: 8px;
    }
}

/* About Section / O Meni */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-visual {
    position: relative;
    width: 100%;
}

.about-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.1) brightness(0.9);
}

/*
.about-img-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 80px;
    border: 1px solid rgba(205, 127, 50, 0.2);
    z-index: -1;
}
*/

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content .bio-line {
    width: 60px;
    height: 1px;
    background: var(--bronze-primary);
    margin-bottom: 3rem;
}

.bio-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-quote {
    border-left: 2px solid var(--bronze-primary);
    padding-left: 30px;
    margin: 2.5rem 0;
}

.about-quote p {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.main-logo {
    font-family: var(--font-title);
    text-transform: uppercase;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
}

.tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border: 1px solid rgba(205, 127, 50, 0.3);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.tag:hover {
    border-color: var(--bronze-primary);
    color: var(--bronze-primary);
}

.about-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 2rem;
}

.about-socials a {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.15em;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.about-socials a:hover {
    color: var(--bronze-primary);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        display: block;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 30px;
}

.intro-header-side .section-header {
    margin-bottom: 2rem;
}

.intro-tagline-small {
    font-size: 1.1rem;
    color: var(--bronze-primary);
    font-style: italic;
    font-weight: 300;
}

.intro-content-side p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.intro-quote-box {
    border-left: 2px solid var(--bronze-primary);
    padding-left: 30px;
    margin: 2.5rem 0;
}

.intro-quote-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: static;
    /* Reset if needed */
    margin-bottom: 0;
}

.intro-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: 4px;
    margin-bottom: 5px;
    animation-duration: 15s !important;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Album Description */
.album-desc {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 1px solid var(--bronze-primary);
}

.album-desc p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legacy-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 900px;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legacy-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legacy-year {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--bronze-primary);
    line-height: 1;
}

.legacy-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;

    &::after {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--accent-glow);
        margin: 1rem 0 0;
    }

    small {
        font-weight: 300;
        font-size: 1rem;
        opacity: 0.7;
        display: block;
    }
}

@media (max-width: 992px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .legacy-item {
        padding: 20px 0;
        border-right: none !important;
    }
}



/* Collaborators Box (Booking Section) */


.collab-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 30px;
}

.collab-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.collab-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--bronze-primary);
    font-size: 0.6rem;
    top: 4px;
}

@media (max-width: 768px) {

    .news-ticker,
    .collab-list {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Base background is just the image (no gradient) */
    background: url('assets/hero_full_nije_htjela.webp') no-repeat center center;
    background-size: cover;
    background-position: right center;
}

/* Layer 1: Persistent Gradient (Below the opaque fade layer) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.85));
}

/* Layer 2: Initial Opaque Fade Layer (Above everything but content) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: #050505;
    opacity: 1;
    /* Wait 1s, then fade out opacity smoothly over 2s */
    animation: heroFadeRevealOverlay 2s forwards 1s ease-in-out;
}

@keyframes heroFadeRevealOverlay {
    to {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('assets/hero_mobile_nije_htjela.jpg');
        background-position: center;
    }

    .hero::after {
        background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9));
    }
}


.hero .content-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-visual {
    width: 40%;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(205, 127, 50, 0.1) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual img {
    height: 90%;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.1);
}

.hero-label {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1,
.h1-style {
    font-size: clamp(2.5rem, 10vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
    text-transform: uppercase;
}


.hero-subtitle {
    color: white;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 500px;
    font-weight: 300;
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 50px;
    }

    .content-container {
        padding: var(--section-spacing) 30px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-label {
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}


/* Hero States */
.hero-early-access,
.hero-post-release {
    display: none;
}

.hero.is-early-access .hero-pre-release {
    display: none;
}

.hero.is-early-access .hero-early-access {
    display: block;
}

.hero.is-released .hero-pre-release,
.hero.is-released .hero-early-access {
    display: none;
}

.hero.is-released .hero-post-release {
    display: block;
}

/* Gated Song Styles & YouTube Drivers */
.track-item.gated-lock .track-play-btn {
    width: auto;
    height: 38px;
    background: #ff0000;
    /* YouTube Red */
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0 15px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    cursor: pointer !important;
}

.track-item.gated-lock .track-play-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    color: #fff;
}

/* Promo Section (Typography Focus) */
/* Enhanced Promo Banner (Main Page) */
.promo-banner-container {

    padding: 40px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.promo-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.promo-banner-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.promo-banner-main {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    color: #fff;
    letter-spacing: 2px;
}

.promo-city {
    transition: var(--transition-smooth);
}

.promo-sep {
    color: var(--bronze-muted);
    font-weight: 300;
}

/* --- Immersive Promo Stage Redesign --- */
.promo-stage-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Scrolling Backdrop Movie Marquee */
.marquee-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 150%;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
}

.marquee-bg span {
    font-size: 15vw;
    font-family: var(--font-title);
    color: var(--bronze-primary);
    text-transform: uppercase;
    display: inline-block;
    padding-right: 50px;
    line-height: 1;
}

.animate-marquee {
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translate(-50%, -50%) rotate(-5deg) translateX(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-5deg) translateX(-50%);
    }
}

.promo-stage-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.promo-stage-header {
    margin-bottom: 40px;
    text-align: center;
}

.promo-label {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--bronze-primary);
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(205, 127, 50, 0.1);
    padding: 8px 20px;
    border: 1px solid rgba(205, 127, 50, 0.2);
}

.promo-panels {
    display: flex;
    gap: 15px;
    height: 400px;
}

.promo-panel {
    flex: 1;
    background: rgba(15, 12, 10, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.promo-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bronze-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.promo-panel.active,
.promo-panel:hover {
    flex: 2.5;
    background: rgba(20, 16, 14, 0.8);
    border-color: rgba(205, 127, 50, 0.3);
}

.promo-panel:hover::after {
    transform: scaleX(1);
}

.panel-num {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--bronze-primary);
    opacity: 0.3;
    letter-spacing: 0.2em;
}

.panel-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5.5vw, 3rem);
    color: #fff;
    margin: 15px 0;
    line-height: 0.85;
    transition: transform 0.6s ease;
    word-break: break-all;
}

.promo-panel:hover .panel-title {
    color: var(--bronze-primary);
    transform: scale(1.02);
}

.panel-meta {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.6s ease;
}

.promo-panel:hover .panel-meta {
    opacity: 1;
}

.panel-meta .arrow {
    margin-left: 10px;
    transition: transform 0.4s ease;
    display: inline-block;
    color: var(--bronze-primary);
}

.promo-panel:hover .panel-meta .arrow {
    transform: translateX(10px);
}

/* Mobile Fallback for Stage */
@media (max-width: 992px) {
    .promo-stage-section {
        padding: 30px 0;
    }

    .promo-panels {
        flex-direction: column;
        height: auto;
    }

    .promo-panel {
        flex: none;
        height: 140px;
        padding: 20px 30px;
    }

    .promo-panel.active,
    .promo-panel:hover {
        flex: none;
        height: 160px;
    }

    .panel-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin: 5px 0;
    }

    .panel-meta {
        font-size: 0.8rem;
    }
}


/* Countdown */
.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
}

.cd-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(205, 127, 50, 0.2);
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cd-box span:first-child {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bronze-primary);
    line-height: 1;
}

.cd-box span:last-child {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

.logo-box {
    height: 50px;
    margin-top: -8px;
}

.main-logo {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.2));
    transition: var(--transition-smooth);
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(205, 127, 50, 0.2));
    transition: var(--transition-smooth);
}

.main-logo:hover,
.footer-logo:hover {
    filter: drop-shadow(0 0 15px var(--bronze-glow));
}


.hero-actions {
    display: flex;
    gap: 20px;

    .hero-post-release & {
        margin-top: 40px;
    }
}

/* Album Section Refinement */
/* .album-header uses consolidated .section-header */

.album-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.album-cover-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}

.album-img-wrapper {
    width: 100%;
    display: flex;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.album-img-wrapper img {
    width: 100%;
    height: auto;
    filter: sepia(0.3) contrast(1.1) brightness(0.9);
}

.album-links {
    display: flex;
    gap: 20px;
}

.album-links a {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.album-links a:hover {
    color: var(--bronze-primary);
}

/* Tracklist Styles (Refined) */
.tracklist {
    display: flex;
    flex-direction: column;
}

.track-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    gap: 20px;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.track-item.available .track-title {
    color: var(--bronze-primary);
    font-weight: 400;
}

.track-number {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    opacity: 0.6;
}

.track-info {
    display: flex;
    flex-direction: column;
}

.track-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.track-title {
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.02em;
    font-weight: 300;
    text-transform: uppercase;
}

.singl-badge {
    background: var(--bronze-primary);
    color: #050505;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 2px;
    letter-spacing: 0.1em;
}

.uskoro-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    opacity: 0.8;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.track-duration {
    display: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 50px;
    text-align: right;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.btn-yt-track {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-yt-track:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.track-play-btn {
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid rgba(205, 127, 50, 0.3);
    color: var(--bronze-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    margin-left: auto;
    text-decoration: none;
}

.track-item.available .track-play-btn {
    background: var(--bronze-primary);
    color: #050505;
    border-color: var(--bronze-primary);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.track-item.available .track-play-btn:hover {
    background: var(--bronze-glow);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--bronze-glow);
}

.track-item.disabled {
    opacity: 0.8;
}

.track-item.disabled .track-play-btn {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

/* Responsive Playlist Logic */
@media (max-width: 768px) {
    .track-item {
        grid-template-columns: 35px 1fr;
        padding: 15px 0;
        gap: 10px;
        align-items: flex-start;
    }

    .track-title-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .track-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .track-actions {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 12px;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;

        .disabled & {
            display: none;
        }
    }

    .track-duration {
        font-size: 0.75rem;
        text-align: left;
        min-width: unset;
        opacity: 0.6;
    }

    .btn-yt-track {
        padding: 4px 10px;
        font-size: 0.55rem;
    }

    .track-item.gated-lock .track-play-btn {
        height: 34px;
        padding: 0 12px;
        font-size: 0.6rem;
        box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
    }
}

/* Performance List (NASTUPI) Refinement */
.perf-row {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    align-items: center;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    gap: 20px;
}

/* Performances / Nastupi - New Side-by-Side Layout */
.perf-tabs-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 3rem;
}

.perf-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 150px;
}

.perf-tab-btn {
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.perf-tab-btn:hover {
    opacity: 0.7;
    padding-left: 10px;
    color: var(--bronze-primary);
}

.perf-tab-btn.active {
    opacity: 1;
    color: var(--bronze-primary);
    padding-left: 15px;
    border-left: 3px solid var(--bronze-primary);
}

.perf-tabs-content {
    min-height: 400px;
}

.perf-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.perf-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .perf-tabs-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .perf-tabs-nav {
        flex-direction: row;
        position: static;
        overflow-x: auto;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .perf-tabs-nav::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .perf-tab-btn {
        font-size: 1.2rem;
        padding: 10px 20px;
        white-space: nowrap;
        opacity: 0.5;
    }

    .perf-tab-btn.active {
        padding-left: 20px;
        border-left: none;
        border-bottom: 2px solid var(--bronze-primary);
    }
}


.perf-row {
    display: grid;
    grid-template-columns: 80px 1fr 180px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    gap: 20px;
}

.perf-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.perf-row.is-private {
    opacity: 0.7;
}

.perf-date-day {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}


.perf-venue-info {
    display: flex;
    flex-direction: column;
}

.perf-venue {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.venue-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 2px;
}

.perf-city {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.perf-status {
    text-align: right;
}

.status-tag {
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 2px;
    display: inline-block;
    min-width: 110px;
}

.is-private .status-tag {
    border-style: dashed;
    opacity: 0.6;
}

/* Booking Section / Kontakt */
.booking-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.booking-intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.form-group label span {
    color: var(--bronze-primary);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze-primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-submit {
    grid-column: span 2;
    margin-top: 20px;
    justify-self: flex-start;
}

.booking-status-container {
    grid-column: span 2;
    margin-top: 10px;
}

.booking-success-msg,
.booking-error-msg {
    display: none;
    padding: 15px 20px;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: fadeInSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-success-msg {
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid var(--bronze-primary);
    color: var(--bronze-primary);
}

.booking-error-msg {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid #ff4444;
    color: #ff4444;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Riders Sidebar */
.team-section {
    display: flex;
    flex-direction: column;

    .label {
        color: var(--bronze-primary);
        letter-spacing: 0.3em;
    }

    h3 {
        font-size: 2rem;
    }
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: rgba(205, 127, 50, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--bronze-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze-primary);
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;

}

.contact-role {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 0.1em;
}

.contact-name {
    font-size: 1rem;
    color: var(--text-secondary);
}

.contact-email {
    color: var(--bronze-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;

    &:hover {
        text-decoration: underline;
        opacity: 0.8;
    }
}

.contact-note {
    margin-top: 2rem;
    padding-left: 20px;
    border-left: 3px solid var(--bronze-primary);
}

.contact-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}


@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-group {
        grid-column: span 2;
    }

    .booking-form .btn {
        grid-column: span 2;
    }
}

.floating-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 480px;
    background: #0a0a09;
    border: 1px solid rgba(205, 127, 50, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.floating-player.minimized {
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    pointer-events: none;
}

/* Progress Bar */
.player-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    transition: height 0.15s ease;
    flex-shrink: 0;
    background-clip: content-box;
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--bronze-primary), var(--bronze-glow));
    position: absolute;
    top: 0;
    left: 0;
    transition: none;
    border-radius: 0 1px 1px 0;
    pointer-events: none;
}

.player-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: var(--bronze-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.15s ease;
    box-shadow: 0 0 8px rgba(205, 127, 50, 0.5);
    pointer-events: none;
}

.player-progress-bar:hover .player-progress-handle,
.player-progress-bar:active .player-progress-handle {
    transform: translate(-50%, -50%) scale(1);
}

.player-tracklist {
    max-height: 280px;
    overflow-y: auto;
    background: #080808;
    border-bottom: 1px solid rgba(205, 127, 50, 0.1);
}

/* Simplified Tracklist inside Player */
#player-tracklist .track-item {
    grid-template-columns: 40px 1fr 50px;
    padding: 12px 20px;
}

#player-tracklist .track-number {
    font-size: 0.7rem;
    opacity: 0.5;
}

#player-tracklist .track-title {
    font-size: 0.9rem;
    font-weight: 500;
}

#player-tracklist .track-duration {
    font-size: 0.75rem;
    opacity: 0.6;
}

#player-tracklist .track-item.playing .track-title {
    color: var(--bronze-primary);
    font-weight: 700;
}

#player-tracklist .track-item.playing .track-number {
    color: var(--bronze-primary);
    opacity: 1;
    font-size: 0.8rem;
}

/* Player Header/Footer Layout */
.player-header {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
}


.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.player-info {
    width: 35%;
}

.player-info .track-name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
}

/* Video Section - Restructured Layout */
.video-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

/* Restore Button Styling */
/* Restore Button Styling */
.player-restore-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bronze-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(205, 127, 50, 0.4);
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.player-restore-btn.visible {
    display: flex;
    background: linear-gradient(135deg, #cb7f32, #edc182, #cb7f32, #965324);
    background-size: 300% auto;
    animation: slideUpIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        btn-shimmer 5s linear infinite;
}

/* Idle State: Attention Seeker (Float) */
.player-restore-btn.visible:not(.is-playing) {
    animation: slideUpIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        btn-shimmer 5s linear infinite,
        idle-attention 2.5s ease-in-out infinite alternate;
}

/* Playing State: Rhythmic Pulse Ripple */
.player-restore-btn.is-playing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bronze-primary);
    border-radius: 50%;
    z-index: -1;
    animation: player-pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes btn-shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes idle-attention {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 25px 50px rgba(205, 127, 50, 0.5);
    }
}

@keyframes player-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes slideUpIn {
    from {
        transform: translateY(120px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.player-restore-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: #edc182;
}

.player-restore-btn svg {
    width: 24px;
    height: 24px;
}

/* Horizontal Metadata Below */
.video-meta-horizontal {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);

    padding: 40px 0;
}

.video-meta-horizontal .meta-item {
    padding: 0 60px;
    display: flex;
    flex-direction: column;

}

.video-meta-horizontal .meta-item:first-child {
    padding-left: 0;
}

.video-meta-horizontal .meta-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.video-player-wrapper {
    position: relative;
}

/* Bronze Corners */
.video-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--bronze-primary);
    pointer-events: none;
    z-index: 10;
}

.video-corner-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.video-corner-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* YouTube & Local Video Lazy-Load Facade */
.youtube-facade,
.local-video-facade {
    cursor: pointer;
}

.yt-facade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-facade-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.youtube-facade:hover .yt-facade-play,
.local-video-facade:hover .yt-facade-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-facade:hover .yt-btn-bg,
.local-video-facade:hover .yt-btn-bg {
    fill: #ff0000;
    fill-opacity: 1;
}

/* Info Column */
.video-info-col {
    display: flex;
    flex-direction: column;
}

.video-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 80px;
}

.video-credits-narrative {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    opacity: 0.8;
}

.video-credits-narrative p {
    margin-bottom: 12px;
}

.video-credits-narrative strong {
    color: var(--bronze-primary);
    font-weight: 700;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bronze-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.meta-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .video-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-meta-horizontal {
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
    }

    .video-meta-horizontal .meta-item {
        padding: 20px 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .video-meta-horizontal .meta-item:last-child {
        border-bottom: none;
    }
}

.player-info .artist-name {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* Center Controls */
.mini-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Square Play Button */
.play-toggle {
    background: var(--bronze-primary);
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.play-toggle:hover {
    background: var(--bronze-glow);
    transform: scale(1.05);
}

/* Right side actions */
.player-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 35%;
    justify-content: flex-end;
}

.player-time-display {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.time-separator {
    opacity: 0.4;
}

.action-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.action-icon:hover {
    opacity: 1;
    color: var(--bronze-primary);
}

/* Removed Flicker Triggering Styles */
.close-player {
    display: none;
    /* Replaced by action-icon */
}

/* Video Experience Section */
/* Section Video Styles */

/* .video-header uses consolidated .section-header */

.director-info {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.director-info span {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 4px;
}

.video-player-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #080808;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border: 1px solid var(--bronze-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze-primary);
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    z-index: 10;
}

.video-player-placeholder:hover .video-play-btn {
    transform: scale(1.1);
    background: rgba(205, 127, 50, 0.1);
}

.video-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    text-align: left;
    z-index: 5;
}

.video-overlay-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.video-overlay-text p {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Video Meta Grid */
.video-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.meta-col {
    padding-left: 15px;
    border-left: 1px solid var(--bronze-primary);
}

.meta-label {
    text-transform: uppercase;
    font-size: 0.6rem;
    color: var(--bronze-primary);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.meta-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Gallery Section */

/* .gallery-header uses consolidated .section-header */

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    display: block;
    /* Disable grid for masonry */
}

.gallery-item {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    margin-bottom: 20px;
    break-inside: avoid;
    transform: translateZ(0);
    /* Fix for some browser rendering glitches with columns */
}

/* Bento Spans removed - using masonry */

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Purely as a fallback, masonry relies on height: auto */
    filter: grayscale(1) contrast(1.1) brightness(0.8);
    transition: var(--transition-smooth);
    display: block;
}


.gallery-item:hover img {
    filter: grayscale(0.2) contrast(1.1) brightness(1);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }


    .album-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .album-cover-column {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .video-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .director-info {
        text-align: left;
    }

    .video-meta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .press-header h2,
    .gallery-header h2,
    .video-header h2 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .about-content h2 {
        font-size: clamp(2.5rem, 10vw, 3rem);
    }
}

@media (max-width: 768px) {
    .floating-player {
        width: 100%;
        right: 0;
        bottom: 0;
        box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5);
    }

    .player-tracklist {
        max-height: 200px;
    }

    .perf-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .perf-status {
        text-align: left;
    }

}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 2;
    }


    .nav-bar {
        padding: 0 20px;
    }

    .footer-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.2em;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    z-index: 2010;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal.active .modal-content {
    transform: scale(1);
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2020;
    opacity: 0.6;
    transition: var(--transition-smooth);
}


.modal-close:hover {
    opacity: 1;
    color: var(--bronze-primary);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2020;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-nav:hover {
    background: var(--bronze-primary);
    color: #000;
    border-color: var(--bronze-primary);
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

/* .modal-actions removed as it is now in .modal-top-actions */


/* btn-download styles removed */


@media (max-width: 768px) {
    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .modal-prev {
        left: 15px;
    }

    .modal-next {
        right: 15px;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}


/* Hero States: Pre vs Post Release */
.hero-post-release {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero.is-released .hero-pre-release {
    display: none;
}

.hero.is-released .hero-post-release {
    display: block;
    animation: heroFadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Platform Links Styling */
.hero-platform-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-platform {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border-radius: 4px;
    gap: 12px;
}

.btn-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-platform.spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    color: #1ed760;
    border-color: #1ed760;
}

.btn-platform.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
    border-color: #ff0000;
}

.btn-platform.youtube-music:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border-color: #ff0000;
}

.btn-platform.apple:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
}

.platform-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.btn-platform:hover .platform-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .btn-platform {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

[data-reveal].revealed .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].revealed .reveal-child:nth-child(1) {
    transition-delay: 0.1s;
}

[data-reveal].revealed .reveal-child:nth-child(2) {
    transition-delay: 0.2s;
}

[data-reveal].revealed .reveal-child:nth-child(3) {
    transition-delay: 0.3s;
}

[data-reveal].revealed .reveal-child:nth-child(4) {
    transition-delay: 0.4s;
}

[data-reveal].revealed .reveal-child:nth-child(5) {
    transition-delay: 0.5s;
}