/* ==========================================================================
   ARJUNA HARJAI - Portfolio Website
   Design System & Main Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Dark Cinematic Palette */
    --color-bg: #0a0a0a;
    --color-bg-alt: #0f0f0f;
    --color-surface: #141414;
    --color-surface-hover: #1a1a1a;
    --color-border: #2a2a2a;

    /* Accent Colors */
    --color-primary: #c4a35a;
    --color-primary-dark: #a68942;
    --color-primary-light: #d4b86a;
    --color-secondary: #8b7355;

    /* Text Colors */
    --color-text: #f5f5f5;
    --color-text-muted: #888888;
    --color-text-subtle: #666666;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --navbar-height: 80px;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(196, 163, 90, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Film Grain Overlay */
.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
    margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--text-4xl);
    color: var(--color-text);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.nav-logo:hover {
    color: var(--color-primary-light);
}

.nav-logo img {
    height: 110px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(196, 163, 90, 0.18));
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #141414 100%);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.7) 70%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-name {
    display: block;
    font-size: clamp(2.5rem, 8vw, var(--text-6xl));
    font-weight: 600;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 50%, var(--color-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero-tagline {
    margin-bottom: var(--space-2xl);
}

.tagline-text {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--color-text-muted);
    border-bottom: 1px solid var(--color-text-muted);
    transform: rotate(45deg);
}

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-bg);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    background-color: var(--color-bg-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
    perspective: 800px;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.image-frame.tilt-hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.image-frame.tilt-hover:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(196, 163, 90, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), transparent, var(--color-primary));
    z-index: -1;
    border-radius: var(--radius-md);
}

/* Shine/glare overlay that moves with the tilt */
.image-frame.tilt-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.image-frame.tilt-hover:hover::after {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter var(--transition-slow), transform 0.4s ease;
}

.image-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-text {
    color: var(--color-text-muted);
}

.about-intro {
    font-family: var(--font-accent);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Music Section
   -------------------------------------------------------------------------- */
.music {
    background-color: var(--color-bg);
}

/* Music Player */
.music-player {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
    align-items: center;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.player-artwork {
    grid-row: span 2;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    min-width: 0;
}

.player-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.player-controls {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.player-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.player-btn:hover {
    color: var(--color-text);
}

.player-btn svg {
    width: 20px;
    height: 20px;
}

.player-btn-main {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    color: var(--color-bg);
}

.player-btn-main:hover {
    background: var(--color-primary-light);
    box-shadow: var(--shadow-glow);
}

.player-btn-main svg {
    width: 24px;
    height: 24px;
}

.player-btn-main .pause-icon {
    display: none;
}

.player-btn-main.playing .play-icon {
    display: none;
}

.player-btn-main.playing .pause-icon {
    display: block;
}

.player-progress {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.progress-time {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 30%;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: width 0.1s linear;
}

.progress-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-left: var(--space-lg);
    border-left: 1px solid var(--color-border);
}

.volume-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    cursor: pointer;
}

/* Track List */
.track-list {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

.track-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: var(--color-surface-hover);
}

.track-item.active {
    background: rgba(196, 163, 90, 0.1);
}

.track-number {
    font-size: var(--text-sm);
    color: var(--color-text-subtle);
    min-width: 30px;
}

.track-item.active .track-number {
    color: var(--color-primary);
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-name {
    display: block;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.track-item.active .track-name {
    color: var(--color-primary);
}

.track-album {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.track-duration {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
}

/* Streaming Links */
.streaming-links {
    text-align: center;
}

.streaming-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.streaming-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-surface);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.streaming-btn svg {
    width: 20px;
    height: 20px;
}

.streaming-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.streaming-btn.spotify:hover {
    background: #1DB954;
    color: white;
}

.streaming-btn.apple:hover {
    background: #FA57C1;
    color: white;
}

.streaming-btn.youtube:hover {
    background: #FF0000;
    color: white;
}

/* --------------------------------------------------------------------------
   Videos Section
   -------------------------------------------------------------------------- */
.videos {
    background: var(--color-bg-alt);
}

/* Video Filters */
.video-filters,
.disco-filters {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.video-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(196, 163, 90, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.video-thumbnail:hover .video-play {
    opacity: 1;
}

.video-play svg {
    width: 28px;
    height: 28px;
    color: var(--color-bg);
    margin-left: 4px;
}

.video-info {
    padding: var(--space-lg);
}

.video-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.video-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

.lightbox-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-primary);
}

.lightbox-close svg {
    width: 32px;
    height: 32px;
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

/* --------------------------------------------------------------------------
   Discography Section
   -------------------------------------------------------------------------- */
.discography {
    background: var(--color-bg);
}

.disco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.disco-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.disco-card:hover {
    transform: translateY(-8px);
}

.disco-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.disco-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.disco-card:hover .disco-artwork img {
    transform: scale(1.05);
}

.disco-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.disco-card:hover .disco-overlay {
    opacity: 1;
}

.disco-play {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.disco-play:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.disco-play svg {
    width: 28px;
    height: 28px;
    color: var(--color-bg);
    margin-left: 4px;
}

.disco-info {
    padding: var(--space-lg);
}

.disco-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.disco-year {
    font-size: var(--text-sm);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.disco-type {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Press Kit Section
   -------------------------------------------------------------------------- */
.press {
    background: var(--color-bg-alt);
}

.press-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.press-downloads h3,
.press-gallery h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xl);
}

.download-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.download-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.download-card:hover {
    background: var(--color-surface-hover);
    transform: translateX(8px);
}

.download-icon {
    width: 48px;
    height: 48px;
    background: rgba(196, 163, 90, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.download-info {
    flex: 1;
}

.download-title {
    display: block;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.download-size {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.download-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.download-card:hover .download-arrow {
    color: var(--color-primary);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
    background: var(--color-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    color: var(--color-text-muted);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    background: var(--color-surface);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: 20px;
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-surface);
    padding: var(--space-3xl) 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-text-subtle);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Loading Screen
   -------------------------------------------------------------------------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-xl);
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.loading-logo img {
    width: min(320px, 70vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 0 22px rgba(196, 163, 90, 0.22));
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Custom Cursor
   -------------------------------------------------------------------------- */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    background: transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(0.5);
    background: var(--color-text);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Audio Wave Visualization
   -------------------------------------------------------------------------- */
.audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
    margin-top: var(--space-sm);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.audio-wave.active {
    opacity: 1;
}

.audio-wave span {
    width: 3px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: height 0.15s ease;
}

.audio-wave.active span {
    animation: audioWave 0.8s ease-in-out infinite;
}

.audio-wave.active span:nth-child(1) { animation-delay: 0s; }
.audio-wave.active span:nth-child(2) { animation-delay: 0.1s; }
.audio-wave.active span:nth-child(3) { animation-delay: 0.2s; }
.audio-wave.active span:nth-child(4) { animation-delay: 0.15s; }
.audio-wave.active span:nth-child(5) { animation-delay: 0.05s; }

@keyframes audioWave {
    0%, 100% { height: 8px; }
    50% { height: 20px; }
}

/* --------------------------------------------------------------------------
   Glowing Orbs (Hero Background)
   -------------------------------------------------------------------------- */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    will-change: transform;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -10%;
    left: -15%;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: #6b5b3d;
    bottom: 10%;
    right: -10%;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

/* --------------------------------------------------------------------------
   Particles Container
   -------------------------------------------------------------------------- */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
}

/* --------------------------------------------------------------------------
   Section Visible State
   -------------------------------------------------------------------------- */
.section {
    opacity: 1;
    transition: opacity 0.6s ease;
}

.section.section-visible {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Pause Animations When Tab Hidden
   -------------------------------------------------------------------------- */
.animations-paused * {
    animation-play-state: paused !important;
}

/* --------------------------------------------------------------------------
   Additional Interactive Styles
   -------------------------------------------------------------------------- */

/* Hover glow for buttons */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

/* Track item hover glow */
.track-item:hover {
    box-shadow: inset 0 0 30px rgba(196, 163, 90, 0.05);
}

/* Gallery item zoom */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(196, 163, 90, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Neon border effect for focused inputs */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow:
        0 0 0 3px rgba(196, 163, 90, 0.1),
        0 0 20px rgba(196, 163, 90, 0.1);
}

/* Smooth body scroll */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar {
    width: 8px;
}

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

body::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Section Subtitle & CTA
   -------------------------------------------------------------------------- */
.section-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.section-cta .btn {
    display: inline-flex;
    align-items: center;
}

/* --------------------------------------------------------------------------
   Hero Streaming Badges
   -------------------------------------------------------------------------- */
.hero-streaming {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-top: var(--space-2xl);
}

.hero-streaming a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.hero-streaming a svg {
    width: 24px;
    height: 24px;
}

.hero-streaming a:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   About Streaming Links
   -------------------------------------------------------------------------- */
.about-streaming {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Awards Section
   -------------------------------------------------------------------------- */
.awards {
    background: var(--color-bg);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.award-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.award-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(196, 163, 90, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 163, 90, 0.35);
}

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

.award-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(196, 163, 90, 0.22);
    background: rgba(196, 163, 90, 0.08);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.award-icon svg {
    width: 24px;
    height: 24px;
}

.award-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.award-year,
.award-tag {
    display: inline-flex;
    align-items: center;
    font-size: var(--text-sm);
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
}

.award-title {
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.award-desc {
    color: var(--color-text-muted);
    margin: 0;
}

.awards-note {
    text-align: center;
    margin-top: var(--space-2xl);
    color: var(--color-text-muted);
    font-family: var(--font-accent);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Horizontal Content Carousel (News / Awards / Reels)
   -------------------------------------------------------------------------- */
.content-carousel {
    position: relative;
}

.content-carousel .slider-prev {
    left: 0;
}

.content-carousel .slider-next {
    right: 0;
}

.content-carousel .carousel-track {
    display: flex;
    gap: var(--space-xl);
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 56px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.content-carousel .carousel-track::-webkit-scrollbar {
    display: none;
}

.content-carousel .carousel-track > * {
    scroll-snap-align: start;
    flex: 0 0 clamp(280px, 32vw, 380px);
}

.content-carousel .slider-arrow {
    top: 50%;
}

.awards-carousel .carousel-track > * {
    flex: 0 0 clamp(260px, 26vw, 340px);
}

.news-carousel .carousel-track > * {
    flex: 0 0 clamp(340px, 38vw, 480px);
}

.reels-carousel .carousel-track > * {
    flex: 0 0 clamp(300px, 30vw, 420px);
}

/* Awards: static layout when <= 3 cards */
.awards-carousel.carousel-static .slider-arrow {
    display: none;
}

.awards-carousel.carousel-static .carousel-track {
    overflow: visible;
    scroll-snap-type: none;
    padding: 4px 0 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.awards-carousel.carousel-static .carousel-track > * {
    flex: initial;
    width: auto;
    scroll-snap-align: unset;
}

@media (max-width: 980px) {
    .awards-carousel.carousel-static .carousel-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .awards-carousel.carousel-static .carousel-track {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Top Songs Section
   -------------------------------------------------------------------------- */
.top-songs {
    background: var(--color-bg);
}

/* Music Player Container */
.music-player-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    max-width: 1000px;
    margin: 0 auto;
}

/* Now Playing Panel */
.now-playing {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--color-border);
}

.now-playing-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.now-playing-indicator {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.eq-bar {
    width: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: eqBounce 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.eq-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }
.eq-bar:nth-child(4) { height: 80%; animation-delay: 0.6s; }

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

.now-playing-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.now-playing-embed {
    flex: 1;
    display: flex;
    align-items: center;
}

.now-playing-embed iframe {
    border-radius: 12px;
    width: 100%;
}

/* Track List Panel */
.track-list-panel {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
}

.track-list-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.track-list-header h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.spotify-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.spotify-filters .filter-btn {
    padding: 4px 10px;
    font-size: 0.65rem;
}

/* Track List Scroll */
.track-list-scroll {
    flex: 1;
    overflow-y: auto;
    max-height: 380px;
}

.track-list-scroll::-webkit-scrollbar {
    width: 4px;
}

.track-list-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.track-list-scroll::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 2px;
}

/* Track List Item */
.track-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.track-list-item:hover {
    background: rgba(196, 163, 90, 0.05);
}

.track-list-item.active {
    background: rgba(196, 163, 90, 0.1);
    border-left: 3px solid var(--color-primary);
}

.track-list-item.hidden {
    display: none;
}

.track-list-number {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-text-subtle);
    min-width: 24px;
    font-variant-numeric: tabular-nums;
}

.track-list-item.active .track-list-number {
    color: var(--color-primary);
}

.track-list-info {
    flex: 1;
    min-width: 0;
}

.track-list-name {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.track-list-item.active .track-list-name {
    color: var(--color-primary);
}

.track-list-meta {
    font-size: var(--text-xs);
    color: var(--color-text-subtle);
}

.track-list-badge {
    padding: 2px 8px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(196, 163, 90, 0.12);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Latest News Section
   -------------------------------------------------------------------------- */
.news {
    background: var(--color-bg-alt);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.news-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(196, 163, 90, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 163, 90, 0.25);
}

.news-media {
    position: relative;
    display: block;
    background: radial-gradient(circle at 30% 20%, rgba(196, 163, 90, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.news-media.news-media--noimg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(196, 163, 90, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.25));
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.05) saturate(1.05);
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.news-card:hover .news-media img {
    transform: scale(1.03);
    filter: contrast(1.08) saturate(1.12);
}

.news-date {
    position: absolute;
    left: var(--space-lg);
    bottom: var(--space-lg);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(196, 163, 90, 0.95);
    color: #fff;
    border: 1px solid rgba(196, 163, 90, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
}

.news-content h3 {
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.35;
    font-weight: 500;
}

.news-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: none;
    letter-spacing: 0.02em;
    transition: gap var(--transition-fast);
    margin-top: auto;
}

.news-link:hover {
    gap: var(--space-md);
}

.news-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Upcoming Music Section
   -------------------------------------------------------------------------- */
.upcoming {
    background: var(--color-bg);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.upcoming-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.upcoming-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.upcoming-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary);
    color: var(--color-bg);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    z-index: 2;
}

.upcoming-highlight .upcoming-badge {
    background: linear-gradient(135deg, var(--color-primary), #e8c96e);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(196, 163, 90, 0.3); }
    50% { box-shadow: 0 0 25px rgba(196, 163, 90, 0.6); }
}

.upcoming-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.upcoming-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.upcoming-card:hover .upcoming-artwork img {
    transform: scale(1.05);
}

.upcoming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: var(--color-text);
}

.upcoming-card:hover .upcoming-overlay {
    opacity: 1;
}

.upcoming-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.upcoming-overlay span {
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.upcoming-info {
    padding: var(--space-lg);
}

.upcoming-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.upcoming-date {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.upcoming-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: rgba(196, 163, 90, 0.08);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: var(--radius-md);
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-xs);
}

.countdown-divider {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    opacity: 0.5;
    margin-top: -12px;
}

.countdown-timer.urgent {
    border-color: rgba(231, 76, 60, 0.4);
    background: rgba(231, 76, 60, 0.08);
    animation: urgentPulse 1.5s ease-in-out infinite;
}

.countdown-timer.urgent .countdown-value {
    color: #e74c3c;
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(231, 76, 60, 0.2); }
    50% { box-shadow: 0 0 20px rgba(231, 76, 60, 0.4); }
}

.countdown-timer.released {
    border-color: rgba(46, 204, 113, 0.3);
    background: rgba(46, 204, 113, 0.08);
}

.countdown-timer.released .countdown-value {
    color: #2ecc71;
    font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   Brands Section
   -------------------------------------------------------------------------- */
.brands {
    background: var(--color-bg-alt);
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-md);
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-alt), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-alt), transparent);
}

.marquee-track {
    display: flex;
    gap: var(--space-2xl);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-reverse .marquee-track {
    animation: marqueeReverse 30s linear infinite;
}

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

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

.brand-item {
    flex-shrink: 0;
    padding: var(--space-md) var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.brand-item span {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.brand-item:hover span {
    color: var(--color-primary);
}

/* Brand Credits */
.brand-credits {
    margin-top: var(--space-3xl);
    text-align: center;
}

.brand-credits h3 {
    font-size: var(--text-2xl);
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.credits-marquee::before {
    background: linear-gradient(90deg, var(--color-bg-alt), transparent);
}

.credits-marquee::after {
    background: linear-gradient(-90deg, var(--color-bg-alt), transparent);
}

/* --------------------------------------------------------------------------
   YouTube Section - Video Slider
   -------------------------------------------------------------------------- */
.youtube-section {
    background: var(--color-bg);
}

.video-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

/* Slider Track */
.slider-track {
    position: relative;
    overflow: hidden;
}

.slider-slide {
    display: none;
    animation: slideFadeIn 0.5s ease;
}

.slider-slide.active {
    display: block;
}

@keyframes slideFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.video-banner-title {
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-border);
}

.video-banner-title h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-text);
}

.video-banner-title span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-banner-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

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

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    color: var(--color-text);
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: var(--space-md);
}

.slider-next {
    right: var(--space-md);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.slider-dot:hover {
    background: var(--color-text-muted);
}

.slider-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   Viral Reels Section
   -------------------------------------------------------------------------- */
.reels {
    background: var(--color-bg-alt);
}

.reels-carousel .carousel-track {
    padding-top: var(--space-sm);
}

.reel-card {
    transition: transform var(--transition-base);
}

.reel-card:hover {
    transform: translateY(-8px);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    background: #1a1a1a;
    border: 3px solid #333;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.reel-card:hover .phone-mockup {
    border-color: var(--color-primary);
    box-shadow: 0 8px 40px rgba(196, 163, 90, 0.2), inset 0 0 0 1px rgba(196, 163, 90, 0.1);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

.phone-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    z-index: 3;
}

.reel-frame {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 28px;
    background: var(--color-surface);
}

.reel-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 35%, transparent 60%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 30%);
    display: block;
    opacity: 1;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.reel-top {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.reel-top-title {
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: none;
}

.reel-actions {
    position: absolute;
    right: 14px;
    bottom: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
}

.reel-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.reel-action svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.reel-bottom {
    position: absolute;
    left: 16px;
    right: 72px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.reel-user {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.reel-caption-inline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.35;
    max-width: 22ch;
}

.reel-sound-indicator {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: background var(--transition-fast);
}

.reel-sound-indicator.needs-gesture {
    background: rgba(0, 0, 0, 0.72);
    outline: 2px solid rgba(196, 163, 90, 0.45);
    outline-offset: 2px;
}

.reel-sound-indicator.needs-gesture::after {
    content: 'Click to enable';
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    white-space: nowrap;
    opacity: 0.95;
}

.reel-sound-indicator.unmuted {
    background: rgba(196, 163, 90, 0.8);
}

.reel-sound-indicator svg {
    width: 18px;
    height: 18px;
}

.reel-caption {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-md);
    padding: 0 var(--space-xs);
}

/* --------------------------------------------------------------------------
   Footer (Updated Layout)
   -------------------------------------------------------------------------- */
.footer-content {
    width: 100%;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.footer-brand {
    text-align: left;
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
}

.footer-nav a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
}
