/* ==========================================================================
   STRIPE PLANET RECORDS - MASTER DESIGN SYSTEM & STYLESHEET
   Aesthetics: Luxury Dark Mode, Gold & Cyan Neon Accents, Glassmorphism
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #07080c;
    --bg-surface: #0f1118;
    --bg-card: rgba(18, 21, 31, 0.7);
    --bg-card-hover: rgba(28, 33, 50, 0.85);

    --primary-gold: #e5b842;
    --primary-gold-glow: rgba(229, 184, 66, 0.4);
    --primary-gold-gradient: linear-gradient(135deg, #f7d070 0%, #e5b842 50%, #9e7616 100%);
    
    --accent-cyan: #00f2fe;
    --accent-cyan-glow: rgba(0, 242, 254, 0.4);
    --accent-cyan-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    --accent-red: #ff3366;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --border-glass: rgba(255, 255, 255, 0.08);
    --border-gold-glass: rgba(229, 184, 66, 0.25);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow-gold: 0 10px 30px -10px rgba(229, 184, 66, 0.3);
    --box-shadow-cyan: 0 10px 30px -10px rgba(0, 242, 254, 0.3);
    --glass-backdrop: blur(16px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(229, 184, 66, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(0, 242, 254, 0.04) 0%, transparent 45%);
    background-attachment: fixed;
}

/* Typography Utility */
h1, h2, h3, h4, .brand-font {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.subhead {
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.gradient-text-gold {
    background: var(--primary-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
    background: var(--accent-cyan-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-subheading);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 12, 0.82);
    backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(7, 8, 12, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 48px;
    width: 48px;
    border-radius: 10px;
    object-fit: cover;
    background: #141414;
    padding: 0;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-gold-glow);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.brand-logo-link:hover .brand-logo-img {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(254, 213, 0, 0.45);
}

.brand-name-box {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-family: var(--font-subheading);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    background: var(--primary-gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.4rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 184, 66, 0.5);
    background: linear-gradient(135deg, #fff 0%, #e5b842 100%);
}

.btn-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.3rem;
    border-radius: 30px;
    border: 1px solid var(--border-gold-glass);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(229, 184, 66, 0.08);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: #fff;
    font-size: 1.8rem;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1100;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border-left: 1px solid var(--border-glass);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-close-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 2rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
}

/* Overlay Backdrop */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   HERO SLIDESHOW (6 SLIDES)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s ease-out;
    transform: scale(1.05);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Slide Background Layers */
.slide-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.45) contrast(1.1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 8, 12, 0.7) 0%,
        rgba(7, 8, 12, 0.3) 50%,
        rgba(7, 8, 12, 0.95) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 780px;
    padding-top: 5rem;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(229, 184, 66, 0.15);
    border: 1px solid var(--border-gold-glass);
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.slide-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 620px;
    line-height: 1.7;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Slider Controls */
.slider-nav-arrows {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 30;
    display: flex;
    gap: 0.75rem;
}

.slider-arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.slider-arrow-btn:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: var(--box-shadow-gold);
}

.slider-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 12px;
}

.indicator-dot {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    width: 60px;
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold-glow);
}

/* Slide Counter Badge */
.slide-counter {
    position: absolute;
    top: 6.5rem;
    right: 3rem;
    z-index: 30;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
}

.slide-counter span.current {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 2rem;
}

/* ==========================================================================
   QUICK STATS BAR & SLOGAN BANNER
   ========================================================================== */
.stats-banner-section {
    background: rgba(15, 17, 24, 0.95);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 2.5rem 0;
    position: relative;
    z-index: 40;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
    border-right: 1px solid var(--border-glass);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Master Brand Slogan Ticker */
.slogan-ticker {
    background: var(--primary-gold-gradient);
    color: #000;
    padding: 0.75rem 0;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-subheading);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.ticker-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT US & BRAND STORY SECTION
   ========================================================================== */
.section-padding {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(7, 8, 12, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold-glass);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.vision-mission-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.vm-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
}

.vm-card h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vm-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Core Values Grid */
.values-wrapper {
    margin-top: 4rem;
}

.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-cyan);
}

.value-icon {
    font-size: 2.2rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   WHAT WE DO (SERVICES SPECTRUM)
   ========================================================================== */
.services-section {
    background: rgba(12, 14, 21, 0.6);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.25rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold-gradient);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(229, 184, 66, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(229, 184, 66, 0.1);
    border: 1px solid var(--border-gold-glass);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-bullets li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-bullets li i {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

/* ==========================================================================
   OUR ARTISTS ROSTER SECTION
   ========================================================================== */
.artist-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.artist-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.artist-card-main:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.artist-photo-gallery {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.artist-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.artist-card-main:hover .artist-main-img {
    transform: scale(1.05);
}

.artist-badge-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(7, 8, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold-glass);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-gallery-thumbs {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.thumb-item {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.artist-details-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artist-name {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.artist-genre {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.artist-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.artist-discography-chips {
    margin-bottom: 1.75rem;
}

.chip-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.track-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.track-chip:hover {
    background: rgba(229, 184, 66, 0.15);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.artist-footer-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-glass);
}

.artist-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    color: #fff;
    background: var(--primary-gold);
    color: #000;
}

/* ==========================================================================
   OUR MUSIC & AUDIO PLAYER DISCOGRAPHY
   ========================================================================== */
.music-discography-section {
    background: rgba(10, 12, 18, 0.8);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.discography-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.filter-tab-btn.active, .filter-tab-btn:hover {
    background: var(--primary-gold-gradient);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: var(--box-shadow-gold);
}

.tracklist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.track-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-fast);
    position: relative;
}

.track-item-card:hover {
    border-color: var(--primary-gold);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.track-item-card.playing {
    border-color: var(--accent-cyan);
    box-shadow: var(--box-shadow-cyan);
}

.track-cover-box {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-cover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.play-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.track-item-card:hover .play-overlay-btn, .track-item-card.playing .play-overlay-btn {
    opacity: 1;
}

.track-info-meta {
    flex-grow: 1;
    overflow: hidden;
}

.track-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dsp-stream-links {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.dsp-link {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dsp-link:hover {
    color: var(--primary-gold);
}

/* Floating Audio Player Sticky Bar */
.sticky-audio-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-gold-glass);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

.sticky-audio-bar.active {
    transform: translateY(0);
}

.player-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.player-track-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 250px;
}

.player-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.player-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.player-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-controls-central {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-grow: 1;
    max-width: 550px;
}

.controls-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.control-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.control-btn:hover {
    color: #fff;
}

.control-btn.play-main {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gold-gradient);
    color: #000;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-gold);
}

.progress-timeline {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.time-bar-bg {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.time-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* Animated Equalizer Visualizer */
.equalizer-box {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.eq-bar {
    width: 3px;
    background: var(--accent-cyan);
    height: 4px;
    border-radius: 2px;
}

.sticky-audio-bar.playing .eq-bar:nth-child(1) { animation: eqAnim 0.6s ease infinite alternate; }
.sticky-audio-bar.playing .eq-bar:nth-child(2) { animation: eqAnim 0.9s ease infinite alternate; }
.sticky-audio-bar.playing .eq-bar:nth-child(3) { animation: eqAnim 0.4s ease infinite alternate; }
.sticky-audio-bar.playing .eq-bar:nth-child(4) { animation: eqAnim 0.7s ease infinite alternate; }

@keyframes eqAnim {
    0% { height: 4px; }
    100% { height: 18px; }
}

/* ==========================================================================
   MOVIES & VIDEOS PAGE / SHOWCASE
   ========================================================================== */
.videos-section {
    background: var(--bg-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-cyan);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 220px;
    background: #000;
}

.video-thumbnail-container video, .video-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.video-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.85);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--accent-cyan-glow);
    transition: var(--transition-fast);
}

.video-card:hover .video-play-badge {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--accent-cyan);
}

.video-duration-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #fff;
}

.video-meta-body {
    padding: 1.5rem;
}

.video-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.video-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.video-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   PARTNERSHIPS & DIGITAL FUTURE
   ========================================================================== */
.partnerships-section {
    background: linear-gradient(180deg, rgba(15, 17, 24, 0.8) 0%, rgba(7, 8, 12, 0.95) 100%);
    border-top: 1px solid var(--border-glass);
}

.partner-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.partner-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.partner-box:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

/* CTA BANNER CARD */
.action-banner-card {
    background: linear-gradient(135deg, rgba(229, 184, 66, 0.12) 0%, rgba(0, 242, 254, 0.08) 100%);
    border: 1px solid var(--border-gold-glass);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.action-banner-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
}

/* ==========================================================================
   INTERACTIVE MODALS (SUBMIT MUSIC, PARTNERSHIP, MEDIA, VIDEO PLAYER)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #0f1118;
    border: 1px solid var(--border-gold-glass);
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: #fff;
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.modal-header-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-header-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

/* Forms */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-input, .form-textarea, .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(229, 184, 66, 0.05);
    box-shadow: 0 0 10px var(--primary-gold-glow);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

/* Video Player Modal Content */
.video-modal-box {
    max-width: 900px;
    padding: 1rem;
    background: #000;
}

.video-modal-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-modal-container video {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background: #040508;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2rem 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 1.25rem 0 1.5rem 0;
    max-width: 320px;
}

.footer-col-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--primary-gold);
}

.footer-contact-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info p i {
    color: var(--primary-gold);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .nav-links, .nav-cta-group {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .about-grid, .artist-showcase-grid {
        grid-template-columns: 1fr;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-slider-section {
        height: 85vh;
    }

    .slide-counter, .slider-indicators {
        display: none;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .vision-mission-boxes {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SUB-PAGE HERO BANNER & BREADCRUMBS
   ========================================================================== */
.page-hero-banner {
    position: relative;
    padding: 9rem 0 4rem 0;
    background: linear-gradient(180deg, rgba(15, 17, 24, 0.95) 0%, rgba(7, 8, 12, 1) 100%);
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-family: var(--font-subheading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav a {
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-dim);
}

