@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;600&family=Bebas+Neue&display=swap');

/* ===================================
   GLOBAL STYLES & VARIABLES
   =================================== */
:root {
    /* Core Black & White Theme (Dark Mode - Default) */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --tertiary-black: #141414;
    --white: #ffffff;
    
    /* Silver Metallic Colors */
    --silver: #c0c0c0;
    --bright-silver: #e8e8e8;
    --accent-silver: #a8a8a8;
    --dark-silver: #8a8a8a;
    
    /* Brand Accent Colors - Edit these to change brand colors throughout the site */
    --brand-red: #a30000;
    --brand-blue: #001f73;
    --brand-purple: #7e0091;
    
    /* Gradients */
    --gradient-silver: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 50%, var(--secondary-black) 100%);
    --gradient-metallic: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 50%, var(--silver) 100%);
    --gradient-brand: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-purple) 50%, var(--brand-blue) 100%);
    
    /* Shadows & Effects */
    --shadow-light: 0 2px 10px rgba(192, 192, 192, 0.1);
    --shadow-medium: 0 4px 20px rgba(192, 192, 192, 0.15);
    --shadow-heavy: 0 8px 30px rgba(192, 192, 192, 0.2);
    --glow-silver: 0 0 20px rgba(192, 192, 192, 0.3);
    --glow-bright: 0 0 30px rgba(232, 232, 232, 0.4);
    --glow-red: 0 0 20px rgba(163, 0, 0, 0.4);
    --glow-blue: 0 0 20px rgba(0, 31, 115, 0.4);
    --glow-purple: 0 0 20px rgba(126, 0, 145, 0.4);
    
    /* Dynamic Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Better focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--silver);
    outline-offset: 3px;
    border-radius: 2px;
}

a:focus-visible,
button:focus-visible {
    outline-color: var(--bright-silver);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Hidden sections - remove 'hidden' class to make visible later */
.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--silver), var(--white), var(--silver));
    background-size: 200% auto;
    -webkit-background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

/* Gradient underline for section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 2px;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(192, 192, 192, 0.2);
    box-shadow: 0 4px 30px rgba(192, 192, 192, 0.1);
}

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

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(192, 192, 192, 0.3));
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(192, 192, 192, 0.5));
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 50%, var(--silver) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallic-shine 3s linear infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 5px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 50%, var(--silver) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallic-shine 3s linear infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

@keyframes metallic-shine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.logo h1:hover {
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glow-silver);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--bright-silver);
    text-shadow: var(--glow-silver);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--silver);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

/* Album Cover Background - Full Width Centered */
.hero-album-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8) blur(0px);
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.hero:hover .hero-album-bg {
    transform: scale(1.08);
    filter: brightness(0.85) blur(1px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.5) 100%
    );
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(192, 192, 192, 0.03) 2px,
            rgba(192, 192, 192, 0.03) 4px
        );
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.coming-soon-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    color: var(--primary-black);
    padding: 12px 35px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 4px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 25px rgba(192, 192, 192, 0.4),
        0 0 40px rgba(192, 192, 192, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.hero-new-release {
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;
    line-height: 0.9;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(192, 192, 192, 0.5),
        0 0 100px rgba(192, 192, 192, 0.3);
    animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        text-shadow: 
            4px 4px 8px rgba(0, 0, 0, 0.9),
            0 0 60px rgba(192, 192, 192, 0.5),
            0 0 100px rgba(192, 192, 192, 0.3);
    }
    50% {
        text-shadow: 
            4px 4px 8px rgba(0, 0, 0, 0.9),
            0 0 80px rgba(192, 192, 192, 0.7),
            0 0 120px rgba(192, 192, 192, 0.5);
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 6px;
    font-weight: 900;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    color: var(--silver);
    animation: glitch 1s linear infinite;
}

@keyframes glitch {
    2%, 64% {
        transform: translate(2px, 0) skew(0deg);
    }
    4%, 60% {
        transform: translate(-2px, 0) skew(0deg);
    }
    62% {
        transform: translate(0, 0) skew(5deg);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
}

/* Hero Title Container */
.hero-title-container {
    text-align: center;
    margin-bottom: 50px;
}

.hero-song-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 50%, var(--silver) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallic-shine 3s linear infinite;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
}

.hero-coming-soon {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--bright-silver);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', cursive;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    color: var(--primary-black);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--silver);
    border: 3px solid var(--silver);
}

.btn-hero-secondary:hover {
    background: var(--silver);
    color: var(--primary-black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
}

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--silver);
    border-radius: 50%;
    color: var(--silver);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: transparent;
    color: var(--brand-red);
    border-color: var(--brand-red);
    box-shadow: 0 0 20px rgba(163, 0, 0, 0.6);
    transform: scale(1.1);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}

/* ===================================
   FEATURED VIDEO
   =================================== */
.featured-video {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.featured-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.05), transparent);
    animation: shimmer 12s infinite;
}

/* Latest Release Card */
.latest-release-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(163, 0, 0, 0.08));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(192, 192, 192, 0.1);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.release-video-section {
    position: relative;
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

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

/* Clickable Video Thumbnails */
.clickable-video {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-video:hover {
    transform: scale(1.05);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-black);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.clickable-video:hover .yt-thumbnail {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.play-button-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(192, 192, 192, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    border: 3px solid rgba(192, 192, 192, 0.8);
}

.play-button-large i {
    font-size: 2rem;
    color: var(--silver);
}

.clickable-video:hover .play-button-large {
    background: rgba(192, 192, 192, 0.4);
    transform: translate(-50%, -50%) scale(1.15);
    border-color: var(--bright-silver);
}

.clickable-video:hover .play-button-large i {
    color: var(--white);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(192, 192, 192, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button-overlay i {
    font-size: 3rem;
    color: #FF0000;
}

.clickable-video:hover .play-button-overlay {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 5px 30px rgba(192, 192, 192, 0.8);
}

.video-info {
    background: var(--secondary-black);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--accent-silver);
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--silver);
}

.video-info p {
    color: var(--silver);
    margin-bottom: 20px;
}

/* Release Info Panel */
.release-info-panel {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(192, 192, 192, 0.1);
    position: relative;
}

.release-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(163, 0, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.release-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-purple));
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 10px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(163, 0, 0, 0.5);
}

.release-badge i {
    font-size: 0.7rem;
    animation: pulse 2s ease-in-out infinite;
}

.release-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bright-silver);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.release-artist {
    font-size: 1.2rem;
    color: var(--bright-silver);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.2), transparent);
    margin: 10px 0;
}

.stream-heading {
    font-size: 1.2rem;
    color: var(--bright-silver);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
}

.platform-links {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.platform-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 6px;
    color: var(--bright-silver);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.platform-btn:hover::before {
    left: 100%;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(163, 0, 0, 0.4);
}

.platform-btn i {
    font-size: 0.85rem;
    color: var(--silver);
    transition: all 0.3s ease;
}

.platform-btn:hover i {
    color: var(--brand-red);
    transform: scale(1.1);
}

.use-track-desc {
    font-size: 1.2rem;
    color: var(--bright-silver);
    margin-bottom: 8px;
    font-style: italic;
}

.social-platform-links {
    display: flex;
    gap: 6px;
}

.social-platform-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 6px;
    background: rgba(163, 0, 0, 0.1);
    border: 1px solid rgba(163, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--bright-silver);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-platform-btn:hover {
    background: rgba(163, 0, 0, 0.2);
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 0, 0, 0.5);
}

.social-platform-btn i {
    font-size: 1.2rem;
    color: var(--brand-red);
    transition: all 0.3s ease;
}

.social-platform-btn:hover i {
    color: var(--white);
    transform: scale(1.15);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}

.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-stream {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-stream:hover {
    background: transparent;
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 0 20px rgba(163, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* Responsive Styles for Latest Release */
@media (max-width: 1024px) {
    .latest-release-card {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .release-title {
        font-size: 1.6rem;
    }
    
    .release-info-panel {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .latest-release-card {
        grid-template-columns: 1fr;
    }
    
    .release-info-panel {
        padding: 30px 25px;
        border-left: none;
        border-top: 1px solid rgba(192, 192, 192, 0.1);
    }
    
    .release-title {
        font-size: 1.5rem;
    }
    
    .platform-links {
        flex-wrap: wrap;
    }
    
    .platform-btn {
        flex: 1 1 calc(50% - 4px);
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .featured-video {
        padding: 60px 0;
    }
    
    .release-info-panel {
        padding: 25px 20px;
    }
    
    .release-title {
        font-size: 1.4rem;
    }
    
    .release-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .platform-btn {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .social-platform-btn {
        font-size: 0.7rem;
    }
}

/* ===================================
   MUSIC VIDEOS GRID
   =================================== */
.music-videos {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.music-videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 8s infinite;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.video-card {
    background: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-black);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(163, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(192, 192, 192, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-card h3 {
    padding: 20px 20px 10px;
    color: var(--silver);
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 20px 20px;
    color: var(--accent-silver);
    font-size: 0.9rem;
}

/* ===================================
   NEXT RELEASE SECTION
   =================================== */
.next-release {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.next-release::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(192, 192, 192, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.next-release .container {
    max-width: 1400px;
}

/* ===================================
   AUDIO PLAYER / SPOTIFY SECTION
   =================================== */
.audio-player {
    background: var(--secondary-black);
    position: relative;
    overflow: hidden;
}

.audio-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 8s infinite;
}

.section-subtitle {
    text-align: center;
    color: var(--silver);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.spotify-embed-container {
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.2);
    border: 2px solid var(--silver);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.spotify-embed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.3);
    border-color: var(--bright-silver);
}

.streaming-platforms {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.streaming-platforms h3 {
    color: var(--silver);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platform-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: var(--secondary-black);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.platform-btn:hover::before {
    left: 100%;
}

.platform-btn:hover {
    border-color: var(--brand-purple);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(126, 0, 145, 0.4);
}

.platform-btn i {
    font-size: 3.5rem;
    transition: all 0.3s ease;
}

.platform-btn.spotify i {
    color: #1DB954;
}

.platform-btn.apple i {
    color: #FA243C;
}

.platform-btn.youtube i {
    color: #FF0000;
}

.platform-btn:hover i {
    transform: scale(1.2);
}

.platform-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.platform-name {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-desc {
    color: var(--silver);
    font-size: 0.9rem;
}

/* Old Audio Player Styles (kept for backwards compatibility) */
.playlist {
    background: var(--secondary-black);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--accent-silver);
}

.track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--secondary-black);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.track:hover,
.track.active {
    background: var(--primary-black);
    border-color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.3);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.track-number {
    font-size: 1.2rem;
    color: var(--accent-silver);
    font-weight: 600;
    min-width: 30px;
}

.track-details h4 {
    color: var(--silver);
    margin-bottom: 3px;
}

.track-details p {
    color: var(--accent-silver);
    font-size: 0.9rem;
}

.track-duration {
    color: var(--accent-silver);
    margin-right: 15px;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--silver);
    border: none;
    color: var(--primary-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.custom-player {
    background: var(--secondary-black);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--accent-silver);
}

.player-controls {
    display: flex;
    gap: 15px;
}

.player-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--silver);
    border: none;
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.player-controls button:hover {
    background: var(--white);
    transform: scale(1.05);
}

#play-pause-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.player-info {
    flex: 1;
}

.progress-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--secondary-black);
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--silver);
    width: 0%;
    transition: width 0.1s linear;
}

.time-info {
    display: flex;
    justify-content: space-between;
    color: var(--accent-silver);
    font-size: 0.9rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

#volume-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
    cursor: pointer;
    transition: all 0.3s ease;
}

#volume-btn:hover {
    background: var(--silver);
    color: var(--primary-black);
}

#volume-slider {
    width: 100px;
    -webkit-appearance: none;
    background: var(--secondary-black);
    height: 8px;
    border-radius: 10px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--silver);
    cursor: pointer;
    border-radius: 50%;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:focus-visible {
    outline: 2px solid var(--silver);
    outline-offset: 4px;
}

.btn-primary {
    background: var(--silver);
    color: var(--primary-black);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===================================
   MERCHANDISE PAGE
   =================================== */
.merch-header,
.contact-header {
    background: var(--gradient-silver);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.contact-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(0, 31, 115, 0.2);
    border: 2px solid var(--brand-blue);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.contact-header-badge i {
    color: var(--brand-blue);
    font-size: 1.2rem;
}

.contact-header-badge span {
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.merch-header h1,
.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.merch-header p,
.contact-header p {
    font-size: 1.2rem;
    color: var(--silver);
}

.cart-icon {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cart-icon:hover {
    background: var(--white);
    transform: scale(1.1);
}

.cart-icon i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-black);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--silver);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: transparent;
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.4);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    color: var(--primary-black);
    border-color: var(--bright-silver);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--secondary-black);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-black);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(126, 0, 145, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-quick-view {
    padding: 10px 25px;
    background: var(--silver);
    border: none;
    color: var(--primary-black);
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--white);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--silver);
    color: var(--primary-black);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--silver);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-category {
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-price {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.size-options {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.size-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-silver);
    background: transparent;
    color: var(--silver);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--brand-purple);
    background: transparent;
    color: var(--brand-purple);
    box-shadow: 0 0 15px rgba(126, 0, 145, 0.4);
}

.add-to-cart {
    width: 100%;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: var(--secondary-black);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 10px;
    border: 2px solid var(--silver);
    display: flex;
    flex-direction: column;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--secondary-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    color: var(--silver);
}

.close-cart {
    background: none;
    border: none;
    color: var(--silver);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--white);
}

.cart-items {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: var(--accent-silver);
    padding: 40px;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--secondary-black);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--silver);
}

.checkout-btn {
    width: 100%;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    background: var(--secondary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--silver);
}

.contact-info > p {
    color: var(--silver);
    margin-bottom: 30px;
    line-height: 1.8;
}

.info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--secondary-black);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--accent-silver);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 0 20px rgba(0, 31, 115, 0.4);
    transform: translateX(10px);
}

.info-card i {
    font-size: 2rem;
    color: var(--silver);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--silver);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--silver);
    font-size: 0.9rem;
}

.social-connect h3 {
    color: var(--silver);
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-card {
    background: var(--secondary-black);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--accent-silver);
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: var(--brand-red);
    box-shadow: 0 0 20px rgba(163, 0, 0, 0.4);
    transform: translateY(-5px);
}

.social-card i {
    font-size: 1.8rem;
    color: var(--silver);
}

.social-card span {
    color: var(--silver);
    font-weight: 600;
}

.contact-form-container {
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--accent-silver);
}

.contact-form h3 {
    color: var(--silver);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--silver);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--secondary-black);
    border: 2px solid var(--accent-silver);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--silver);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group h4 {
    color: var(--silver);
    margin-bottom: 5px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--silver);
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    display: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    animation: slideInUp 0.4s ease;
}

.form-message.success {
    background: rgba(126, 0, 145, 0.2);
    color: var(--white);
    border: 2px solid var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.3);
}

.form-message.success i {
    color: var(--brand-purple);
    margin-right: 10px;
    font-size: 1.2rem;
}

.form-message.error {
    background: rgba(163, 0, 0, 0.2);
    color: var(--white);
    border: 2px solid var(--brand-red);
    box-shadow: 0 0 20px rgba(163, 0, 0, 0.3);
}

.form-message.error i {
    color: var(--brand-red);
    margin-right: 10px;
    font-size: 1.2rem;
}

.stats-section {
    background: var(--primary-black);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--secondary-black);
    border-radius: 10px;
    border: 1px solid var(--secondary-black);
    border-top: 3px solid var(--silver);
    transition: all 0.3s ease;
}

/* Colored top borders for each stat card */
.stat-card:nth-child(1) {
    border-top-color: var(--brand-red);
}

.stat-card:nth-child(2) {
    border-top-color: var(--brand-purple);
}

.stat-card:nth-child(3) {
    border-top-color: var(--brand-blue);
}

.stat-card:nth-child(4) {
    border-top-color: var(--bright-silver);
}

.stat-card:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 0 25px rgba(126, 0, 145, 0.4);
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 3rem;
    color: var(--silver);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--silver);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ===================================
   FOLLOW VEDHAV SECTION
   =================================== */
.follow-artist {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(192, 192, 192, 0.02));
    position: relative;
    overflow: hidden;
}

.follow-artist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 8s infinite;
    pointer-events: none;
}

.follow-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.follow-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--silver));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.follow-subtitle {
    font-size: 1.2rem;
    color: var(--bright-silver);
    margin-bottom: 50px;
    line-height: 1.8;
}

.follow-social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.follow-btn {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    border: 2px solid var(--silver);
    padding: 25px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

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

.follow-btn:hover::before {
    left: 100%;
}

.follow-btn i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.follow-btn.instagram i {
    color: #E4405F;
}

.follow-btn.tiktok i {
    color: #00f2ea;
}

.follow-btn.youtube i {
    color: #FF0000;
}

.follow-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.follow-platform {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.follow-handle {
    font-size: 0.9rem;
    color: var(--silver);
}

.follow-btn:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(163, 0, 0, 0.4);
}

.follow-btn:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .follow-title {
        font-size: 2rem;
    }
    
    .follow-subtitle {
        font-size: 1rem;
    }
    
    .follow-social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .follow-btn {
        min-width: auto;
        width: 100%;
    }
}

/* ===================================
   EXCLUSIVE MEDIA GALLERY
   =================================== */
.media-gallery {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
}

.media-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 8s infinite;
    pointer-events: none;
}

.media-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(192, 192, 192, 0.1));
    border: 2px solid var(--silver);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(192, 192, 192, 0.5);
    }
}

.exclusive-badge i {
    color: var(--silver);
    font-size: 1.2rem;
}

.exclusive-badge span {
    color: var(--bright-silver);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.media-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: rgba(192, 192, 192, 0.1);
    border: 2px solid var(--silver);
    color: var(--silver);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: rgba(126, 0, 145, 0.2);
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    color: var(--primary-black);
    border-color: var(--bright-silver);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.4);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.media-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--secondary-black);
    border: 2px solid rgba(192, 192, 192, 0.2);
}

.media-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--brand-red);
    box-shadow: 0 0 30px rgba(163, 0, 0, 0.4);
}

.media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(192, 192, 192, 0.02));
}

.media-placeholder i {
    font-size: 4rem;
    color: var(--silver);
    opacity: 0.5;
}

.media-placeholder-text {
    color: var(--silver);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.media-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.media-info p {
    color: var(--silver);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.media-tag {
    display: inline-block;
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Apply brand colors to different tags */
.media-tag:nth-of-type(1) {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.media-info .media-tag {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.media-cta {
    text-align: center;
    padding: 30px;
    background: rgba(192, 192, 192, 0.05);
    border-radius: 15px;
    border: 2px dashed var(--silver);
    position: relative;
    z-index: 1;
}

.media-cta-text {
    color: var(--bright-silver);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.media-cta-text i {
    color: var(--silver);
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .media-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .media-placeholder i {
        font-size: 3rem;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.about-hero {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 232, 232, 0.08) 0%, transparent 50%);
    animation: shimmer-slow 10s linear infinite;
}

@keyframes shimmer-slow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(232, 232, 232, 0.1));
    border: 2px solid rgba(192, 192, 192, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 
        0 4px 15px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.story-badge i {
    color: var(--silver);
    font-size: 1.2rem;
}

.story-badge span {
    color: var(--bright-silver);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--silver);
    font-weight: 300;
    line-height: 1.6;
}

.story-section {
    background: var(--primary-black);
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    padding-right: 40px;
}

.story-paragraph {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-paragraph strong {
    color: var(--bright-silver);
    font-weight: 600;
}

.story-image {
    position: relative;
}

.image-frame-about {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-page-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.story-image:hover .about-page-image {
    transform: scale(1.05);
}

.image-glow-about {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.musical-style {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--primary-black) 100%);
    padding: 100px 0;
}

.style-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.style-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.style-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-blue);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 31, 115, 0.4);
}

.style-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(232, 232, 232, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bright-silver);
    box-shadow: 
        0 4px 15px rgba(192, 192, 192, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.style-card:hover .style-icon {
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    color: var(--primary-black);
    box-shadow: 
        0 6px 20px rgba(192, 192, 192, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: rotateY(360deg);
}

.style-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.style-card p {
    color: var(--silver);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

/* ===================================
   ACHIEVEMENTS SECTION
   =================================== */
.achievements-section {
    background: var(--secondary-black);
    padding: 100px 0;
}

.achievements-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievements-section .stat-card {
    background: var(--primary-black);
    position: relative;
    padding: 40px 30px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--silver);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.achievements-section .stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: var(--brand-purple);
}

.stat-note {
    display: block;
    color: var(--silver);
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.7;
    font-style: italic;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
    background: var(--primary-black);
    padding: 120px 0;
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(192, 192, 192, 0.3);
    margin-bottom: 30px;
}

.artist-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--bright-silver);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(192, 192, 192, 0.1);
}

.quote-author {
    font-size: 1.2rem;
    color: var(--silver);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-section {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 100%);
    color: var(--primary-black);
    border: none;
    box-shadow: 
        0 4px 15px rgba(192, 192, 192, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--bright-silver) 0%, #ffffff 100%);
    box-shadow: 
        0 6px 25px rgba(192, 192, 192, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
}

.btn-cta-secondary:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.5);
    transform: translateY(-3px);
}

.footer-subscribe-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 100%);
    color: var(--primary-black);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.2);
}

.footer-subscribe-btn:hover {
    background: linear-gradient(135deg, var(--bright-silver) 0%, #ffffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.4);
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-text {
        padding-right: 0;
    }
    
    .style-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .artist-quote {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--primary-black);
    padding: 60px 0 20px;
    border-top: 1px solid var(--secondary-black);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--silver);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    color: var(--silver);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--silver);
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(192, 192, 192, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 4px 12px rgba(192, 192, 192, 0.5));
    transform: translateY(-2px);
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--silver);
    margin: 0;
    font-weight: 700;
}

.footer-tagline {
    color: var(--silver);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
    margin: 0;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--silver);
    border-radius: 50%;
    color: var(--silver);
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background: transparent;
    color: var(--brand-red);
    border-color: var(--brand-red);
    box-shadow: 0 0 20px rgba(163, 0, 0, 0.6);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-black);
    color: var(--accent-silver);
}

/* ===================================
   Q&A PAGE
   =================================== */
.qna-header {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.qna-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(126, 0, 145, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.qna-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(126, 0, 145, 0.2);
    border: 2px solid var(--brand-purple);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.qna-header-badge i {
    color: var(--brand-purple);
    font-size: 1.2rem;
}

.qna-header-badge span {
    color: var(--brand-purple);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.qna-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.qna-header p {
    font-size: 1.2rem;
    color: var(--silver);
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Ask Question Section */
.ask-question {
    background: var(--primary-black);
}

.ask-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(192, 192, 192, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ask-form-container h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ask-form-container h2 i {
    color: var(--brand-purple);
}

.question-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ask-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--primary-black);
    border-radius: 10px;
    border: 2px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.3);
}

.stat-item i {
    font-size: 2rem;
    color: var(--brand-purple);
    display: block;
    margin-bottom: 10px;
}

.stat-item span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--silver);
    font-size: 0.9rem;
}

/* Filters */
.qna-filters {
    background: var(--secondary-black);
    padding: 40px 0;
}

.filter-controls {
    text-align: center;
}

.filter-controls .section-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0;
}

/* Q&A Grid */
.qna-list {
    background: var(--primary-black);
    padding: 60px 0 100px;
}

.qna-grid {
    display: grid;
    gap: 30px;
}

.qna-card {
    background: var(--secondary-black);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qna-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qna-card:hover {
    border-color: var(--silver);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

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

/* Q&A Badge */
.qna-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(163, 0, 0, 0.2);
    border: 2px solid var(--brand-red);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.qna-badge i {
    color: var(--brand-red);
    font-size: 0.9rem;
}

.qna-badge span {
    color: var(--brand-red);
}

.qna-badge-purple {
    background: rgba(126, 0, 145, 0.2);
    border-color: var(--brand-purple);
}

.qna-badge-purple i,
.qna-badge-purple span {
    color: var(--brand-purple);
}

.qna-badge-blue {
    background: rgba(0, 31, 115, 0.2);
    border-color: var(--brand-blue);
}

.qna-badge-blue i,
.qna-badge-blue span {
    color: var(--brand-blue);
}

/* Question Header */
.question-header {
    margin-bottom: 20px;
}

.asker-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--silver);
    font-size: 0.95rem;
}

.asker-info i {
    color: var(--accent-silver);
    font-size: 1.2rem;
}

.asker-name {
    font-weight: 600;
}

/* Question Text */
.question-text {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 600;
}

/* Answer Section */
.answer-section {
    background: rgba(10, 10, 10, 0.6);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--brand-purple);
    margin-top: 20px;
}

.answer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(126, 0, 145, 0.3);
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.answer-badge i {
    color: var(--brand-purple);
}

.answer-badge span {
    color: var(--brand-purple);
    letter-spacing: 1px;
}

.answer-text {
    color: var(--silver);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Q&A Meta */
.qna-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    flex-wrap: wrap;
}

.answer-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-silver);
    font-size: 0.9rem;
}

.answer-date i {
    color: var(--accent-silver);
}

.likes {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.likes i {
    color: var(--brand-red);
}

.likes:hover {
    color: var(--brand-red);
    transform: scale(1.05);
}

.qna-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.like-btn {
    background: transparent;
    border: 2px solid var(--accent-silver);
    color: var(--silver);
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.like-btn:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 0 15px rgba(163, 0, 0, 0.4);
    transform: scale(1.05);
}

.like-btn.liked {
    border-color: #ff6b6b;
    color: var(--brand-red);
    background: rgba(163, 0, 0, 0.1);
}

.like-btn.liked i {
    color: var(--brand-red);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Featured Questions Section */
.featured-questions {
    background: var(--secondary-black);
    padding: 60px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.featured-questions .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qna-header {
        padding: 120px 0 60px;
    }

    .qna-header h1 {
        font-size: 2rem;
    }

    .qna-header p {
        font-size: 1rem;
    }

    .qna-header-badge {
        padding: 10px 20px;
        gap: 8px;
    }

    .ask-form-container {
        padding: 30px 20px;
    }

    .question-form .form-row {
        grid-template-columns: 1fr;
    }

    .ask-stats {
        grid-template-columns: 1fr;
    }

    .qna-card {
        padding: 25px 20px;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .answer-section {
        padding: 20px 15px;
    }

    .qna-meta {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .qna-header h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .qna-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .answer-text {
        font-size: 1rem;
    }

    .qna-card {
        padding: 20px 15px;
    }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.5);
    transform: translateY(-3px);
}

/* Featured Questions */
.featured-qna {
    background: var(--primary-black);
}

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

.featured-qna-card {
    background: var(--secondary-black);
    border: 1px solid var(--secondary-black);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.featured-qna-card:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 0 25px rgba(126, 0, 145, 0.3);
    transform: translateY(-5px);
}

.question-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: var(--silver);
    color: var(--primary-black);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
}

.qna-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.qna-icon i {
    font-size: 1.5rem;
    color: var(--silver);
}

.question-preview {
    color: var(--silver);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.answer-preview {
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-read-more {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-read-more:hover {
    background: transparent;
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.5);
    transform: translateY(-2px);
}

/* Admin Access */
.admin-access {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-black);
    border: 2px solid var(--accent-silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.admin-access:hover {
    border-color: var(--brand-purple);
    background: transparent;
    box-shadow: 0 0 20px rgba(126, 0, 145, 0.5);
}

.admin-access i {
    color: var(--silver);
    font-size: 1.2rem;
}

.admin-access:hover i {
    color: var(--brand-purple);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-black);
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    border: 2px solid var(--silver);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid var(--secondary-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--silver);
}

.close-modal {
    background: none;
    border: none;
    color: var(--silver);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--white);
}

.modal-body {
    padding: 25px;
}

.question-preview-box {
    background: var(--secondary-black);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--silver);
}

.question-preview-text {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-style: italic;
}

.question-preview-meta {
    color: var(--accent-silver);
    font-size: 0.9rem;
}

.admin-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--silver);
    color: var(--primary-black);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    z-index: 1002;
    animation: slideIn 0.3s ease;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 30px;
        transition: right 0.3s ease;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-song-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-coming-soon {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-container {
        grid-template-columns: 1fr;
    }

    .custom-player {
        flex-direction: column;
        gap: 20px;
    }

    .volume-control {
        width: 100%;
    }

    #volume-slider {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .merch-header h1,
    .contact-header h1,
    .qna-header h1 {
        font-size: 2rem;
    }

    .question-form .form-row {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .hero-song-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-coming-soon {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .products-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .play-button-large {
        width: 60px;
        height: 60px;
    }

    .play-button-large i {
        font-size: 1.5rem;
    }

    .play-button-overlay {
        width: 60px;
        height: 60px;
    }

    .play-button-overlay i {
        font-size: 2rem;
    }

    .ask-form-container {
        padding: 20px;
    }

    .ask-stats {
        grid-template-columns: 1fr;
    }

    .qna-card {
        padding: 20px;
    }

    .admin-access {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .cart-icon {
        width: 50px;
        height: 50px;
        right: 15px;
        top: 90px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===================================
   MAGIC CURSOR TRAIL
   =================================== */
#magic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ===================================
   ENHANCED HERO SECTION
   =================================== */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?w=1920&h=1080&fit=crop') center/cover;
    filter: grayscale(50%) brightness(0.3);
    z-index: 0;
}

/* ===================================
   INNER CIRCLE EMAIL SIGNUP SECTION
   =================================== */
.vip-signup {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.vip-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

.vip-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.15), 
        rgba(232, 232, 232, 0.1)
    );
    border: 2px solid rgba(192, 192, 192, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 
        0 4px 15px rgba(192, 192, 192, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float-badge 3s ease-in-out infinite;
}

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

.vip-badge i {
    color: var(--bright-silver);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.6));
}

.vip-badge span {
    color: var(--bright-silver);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.vip-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.vip-subtitle {
    color: var(--silver);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.vip-form {
    margin-top: 35px;
}

.form-group-inline {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group-inline:focus-within {
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 
        0 0 30px rgba(192, 192, 192, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.vip-email-input {
    flex: 1;
    padding: 16px 25px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.vip-email-input::placeholder {
    color: rgba(192, 192, 192, 0.5);
}

.vip-submit-btn {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 100%);
    color: var(--primary-black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 15px rgba(192, 192, 192, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vip-submit-btn:hover {
    background: linear-gradient(135deg, var(--bright-silver) 0%, #ffffff 100%);
    box-shadow: 
        0 6px 25px rgba(192, 192, 192, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateX(3px);
}

.vip-submit-btn i {
    transition: transform 0.3s ease;
}

.vip-submit-btn:hover i {
    transform: translateX(3px);
}

.vip-privacy {
    margin-top: 15px;
    font-size: 0.85rem;
    color: rgba(192, 192, 192, 0.6);
    font-weight: 300;
}

@media (max-width: 768px) {
    .vip-title {
        font-size: 2rem;
    }
    
    .vip-subtitle {
        font-size: 1rem;
    }
    
    .form-group-inline {
        flex-direction: column;
        border-radius: 25px;
        gap: 8px;
    }
    
    .vip-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   ABOUT ARTIST SECTION
   =================================== */
.about-artist {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
}

.about-artist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 8s infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--silver);
    box-shadow: 
        0 0 30px rgba(192, 192, 192, 0.3),
        0 0 60px rgba(192, 192, 192, 0.2),
        inset 0 0 20px rgba(192, 192, 192, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

.image-frame:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 
        0 0 50px rgba(192, 192, 192, 0.5),
        0 0 100px rgba(192, 192, 192, 0.3),
        inset 0 0 30px rgba(192, 192, 192, 0.2);
}

.transforming-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.artist-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.1);
}

.artist-photo.active {
    opacity: 1;
    transform: scale(1);
}

/* Pencil Layer - Hand-drawn pencil sketch effect */
.pencil-layer {
    filter: grayscale(100%) contrast(250%) brightness(130%) invert(5%) blur(0.3px);
}

.pencil-layer.active {
    filter: grayscale(100%) contrast(220%) brightness(125%) invert(3%);
    animation: pencil-sketch 3s infinite alternate;
}

@keyframes pencil-sketch {
    0% {
        filter: grayscale(100%) contrast(220%) brightness(125%) invert(3%);
    }
    100% {
        filter: grayscale(100%) contrast(240%) brightness(130%) invert(5%);
    }
}

/* Anime Layer - Vibrant cartoon-style with bold colors */
.anime-layer {
    filter: saturate(250%) contrast(180%) brightness(115%) hue-rotate(5deg) drop-shadow(0 0 25px rgba(255, 100, 200, 0.6));
}

.anime-layer.active {
    animation: anime-glow 2.5s infinite alternate;
}

@keyframes anime-glow {
    0% {
        filter: saturate(250%) contrast(180%) brightness(115%) hue-rotate(5deg) drop-shadow(0 0 25px rgba(255, 100, 200, 0.6));
    }
    100% {
        filter: saturate(280%) contrast(190%) brightness(120%) hue-rotate(10deg) drop-shadow(0 0 40px rgba(255, 150, 255, 0.8));
    }
}

/* Original Layer - Clean natural look with subtle enhancement */
.original-layer {
    filter: contrast(105%) saturate(100%) brightness(102%);
}

.original-layer.active {
    filter: contrast(108%) saturate(105%) brightness(103%);
}

/* Neon Layer - Electric glowing cyberpunk effect */
.neon-layer {
    filter: saturate(300%) contrast(150%) brightness(140%) hue-rotate(-20deg) drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 50px rgba(255, 0, 255, 0.6));
}

.neon-layer.active {
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    0% {
        filter: saturate(300%) contrast(150%) brightness(140%) hue-rotate(-20deg) 
                drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)) 
                drop-shadow(0 0 50px rgba(255, 0, 255, 0.6));
    }
    100% {
        filter: saturate(350%) contrast(170%) brightness(155%) hue-rotate(-15deg) 
                drop-shadow(0 0 50px rgba(0, 255, 255, 1)) 
                drop-shadow(0 0 80px rgba(255, 0, 255, 0.9))
                drop-shadow(0 0 100px rgba(255, 255, 0, 0.5));
    }
}

/* State Indicator Dots */
.image-state-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.state-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-silver);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.state-dot:hover {
    transform: scale(1.3);
    background: var(--silver);
}

.state-dot.active {
    background: var(--silver);
    box-shadow: 0 0 10px var(--silver);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Hover Hint Animation */
.hover-hint {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(192, 192, 192, 0.9);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: hint-pulse 2s infinite;
    transition: opacity 0.3s ease;
}

.transforming-image-container:hover .hover-hint {
    opacity: 0;
}

@keyframes hint-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
    }
}

.hover-hint i {
    animation: point-animation 1.5s infinite;
}

@keyframes point-animation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Transformation Sparkles */
.transformation-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--silver);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle-burst 1s ease-out forwards;
    box-shadow: 0 0 10px var(--silver);
    z-index: 20;
}

@keyframes sparkle-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(
            calc((var(--random-x, 50) - 50) * 1px),
            calc((var(--random-y, 50) - 50) * 1px)
        ) scale(0);
        opacity: 0;
    }
}

.image-frame:hover .artist-photo {
    filter: grayscale(0%);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.3) 0%, transparent 70%);
    animation: pulse 3s infinite;
    pointer-events: none;
}

.about-content {
    padding: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--silver);
    margin-bottom: 25px;
    text-align: justify;
}

.artist-quote {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gradient-brand);
    border-left: 4px solid var(--brand-purple);
    border-radius: 8px;
    position: relative;
}

.artist-quote .quote-icon {
    color: var(--brand-purple);
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 15px;
}

.artist-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-weight: 300;
}

.artist-quote cite {
    display: block;
    text-align: right;
    color: var(--brand-purple);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--secondary-black);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    border-color: var(--silver);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--silver);
    margin-bottom: 15px;
    display: block;
    animation: float 3s infinite ease-in-out;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-card p {
    color: var(--silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Glow Effects */
.video-card:hover,
.track:hover,
.product-card:hover {
    box-shadow: 
        0 5px 25px rgba(192, 192, 192, 0.4),
        inset 0 0 20px rgba(192, 192, 192, 0.1);
    border-color: var(--silver);
}

.btn-stream:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    color: var(--primary-black);
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.5);
    transform: translateY(-3px);
}

/* Silver Accent Lines */
.section::before {
    display: none !important;
}

.section {
    position: relative;
}

/* Responsive Adjustments for New Elements */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        gap: 20px;
    }

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

    .particle {
        display: none;
    }

    .hero-bg {
        filter: grayscale(70%) brightness(0.2);
    }
}

/* ===================================
   MERCHANDISE DISTRO STORE PAGE
   =================================== */

.merch-store-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.merch-store-section *::before,
.merch-store-section *::after {
    border: none !important;
}

.merch-store-section::before {
    display: none !important;
}

.merch-store-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.merch-store-content::before,
.merch-store-content::after {
    display: none !important;
}

.merch-store-section .container::before,
.merch-store-section .container::after {
    display: none !important;
}

.merch-store-header {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease forwards;
    border: none;
    text-decoration: none;
}

.merch-store-header::after,
.merch-store-header::before {
    display: none !important;
}

.merch-store-header i {
    font-size: 3rem;
    color: var(--brand-purple);
    margin-bottom: 20px;
    display: block;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.merch-store-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--silver), var(--bright-silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none !important;
    border: none !important;
}
    background-clip: text;
}

.merch-store-subtitle {
    font-size: 1.2rem;
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
    text-decoration: none !important;
    border: none !important;
}

/* QR Code Styling */
.qr-code-container {
    margin: 60px 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.qr-code-container::before,
.qr-code-container::after {
    display: none !important;
}

.qr-code-frame {
    position: relative;
    display: inline-block;
    padding: 30px;
    background: var(--secondary-black);
    border-radius: 20px;
    border: 3px solid var(--silver);
    box-shadow: 
        0 0 40px rgba(192, 192, 192, 0.3),
        inset 0 0 30px rgba(192, 192, 192, 0.1);
    transition: all 0.4s ease;
}

.qr-code-frame:hover {
    transform: scale(1.05);
    border-color: var(--brand-purple);
    box-shadow: 
        0 0 60px rgba(126, 0, 145, 0.5),
        inset 0 0 40px rgba(126, 0, 145, 0.15);
}

.qr-code-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(126, 0, 145, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.qr-code-image {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

.qr-code-instruction {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-code-instruction i {
    color: var(--brand-purple);
    font-size: 1.5rem;
}

/* Store Link Button */
.store-link-container {
    margin: 60px 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.store-link-container::before,
.store-link-container::after {
    display: none !important;
}

.btn-store-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--bright-silver) 100%);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(192, 192, 192, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-store-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-store-link:hover::before {
    left: 100%;
}

.btn-store-link:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(192, 192, 192, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, var(--bright-silver) 0%, #ffffff 100%);
}

.btn-store-link i:first-child {
    font-size: 1.5rem;
}

.btn-store-link i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-store-link:hover i:last-child {
    transform: translateX(5px);
}

.store-link-text {
    margin-top: 20px;
    color: var(--silver);
    font-size: 1rem;
}

/* Merch Features */
.merch-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.merch-features::before,
.merch-features::after {
    display: none !important;
}

.merch-feature-item {
    background: var(--secondary-black);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
}

.merch-feature-item:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 0 30px rgba(126, 0, 145, 0.3);
    transform: translateY(-5px);
}

.merch-feature-item i {
    font-size: 2.5rem;
    color: var(--silver);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.merch-feature-item:hover i {
    color: var(--brand-purple);
    transform: scale(1.1);
}

.merch-feature-item h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.merch-feature-item p {
    color: var(--silver);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles for Merch Distro */
@media (max-width: 768px) {
    .merch-store-title {
        font-size: 2.5rem;
    }

    .merch-store-subtitle {
        font-size: 1rem;
    }

    .qr-code-image {
        width: 250px;
        height: 250px;
    }

    .btn-store-link {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .merch-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .follow-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .follow-btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .merch-store-header i {
        font-size: 2rem;
    }

    .merch-store-title {
        font-size: 2rem;
    }

    .qr-code-frame {
        padding: 20px;
    }

    .qr-code-image {
        width: 200px;
        height: 200px;
    }
}

/* ===================================
   EVENTS PAGE STYLES
   =================================== */

/* Events Header */
.events-header {
    background: var(--gradient-silver);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.events-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(163, 0, 0, 0.2);
    border: 2px solid var(--brand-red);
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.events-header-badge i {
    color: var(--brand-red);
    font-size: 1.2rem;
}

.events-header-badge span {
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.events-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.events-header p {
    font-size: 1.2rem;
    color: var(--silver);
}

/* Add Event Section */
.add-event-section {
    background: var(--secondary-black);
    padding: 60px 0;
}

.add-event-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-black);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.add-event-container h2 {
    font-size: 2rem;
    color: var(--silver);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-event-container h2 i {
    color: var(--brand-red);
}

.admin-note {
    color: var(--accent-silver);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* Events List */
.events-list-section {
    padding: 80px 0;
}

.loading-state,
.no-events-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--silver);
}

.loading-state i,
.no-events-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--brand-red);
}

.loading-state i {
    animation: spin 1s linear infinite;
}

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

.no-events-state h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--silver);
}

/* Events Grid */
.events-grid {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

/* Event Card */
.event-card {
    display: flex;
    gap: 25px;
    background: var(--secondary-black);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease forwards;
}

.event-card:hover {
    border-color: var(--brand-red);
    box-shadow: 0 5px 25px rgba(163, 0, 0, 0.3);
    transform: translateY(-3px);
}

.event-card.past-event {
    opacity: 0.7;
}

.event-card.past-event:hover {
    opacity: 1;
}

/* Event Date Badge */
.event-date-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-purple));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.event-month {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

/* Event Details */
.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.event-venue-name {
    font-size: 1.5rem;
    color: var(--bright-silver);
    margin: 0;
    flex: 1;
}

.event-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-type-badge.concert {
    background: rgba(163, 0, 0, 0.2);
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
}

.event-type-badge.festival {
    background: rgba(126, 0, 145, 0.2);
    color: var(--brand-purple);
    border: 1px solid var(--brand-purple);
}

.event-type-badge.private {
    background: rgba(0, 31, 115, 0.2);
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
}

.event-type-badge.streaming {
    background: rgba(192, 192, 192, 0.2);
    color: var(--silver);
    border: 1px solid var(--silver);
}

.sold-out-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Meta */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-meta p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--silver);
    font-size: 0.95rem;
    margin: 0;
}

.event-meta i {
    color: var(--brand-red);
    width: 16px;
}

.event-location {
    font-weight: 600;
    color: var(--bright-silver);
}

/* Event Actions */
.event-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-secondary {
    background: var(--secondary-black);
    color: var(--silver);
    border: 1px solid var(--silver);
    cursor: not-allowed;
}

.btn-delete-event {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--silver);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-delete-event:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
    color: #ff4444;
}

/* Past Events Section */
.past-events-section {
    background: var(--tertiary-black);
    padding: 60px 0;
}

.no-past-events {
    text-align: center;
    color: var(--silver);
    padding: 40px;
}

.error-message {
    text-align: center;
    color: #ff4444;
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-header h1 {
        font-size: 2.5rem;
    }

    .add-event-container {
        padding: 25px;
    }

    .event-card {
        flex-direction: column;
        gap: 20px;
    }

    .event-date-badge {
        width: 100%;
        height: 70px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .event-day {
        font-size: 1.8rem;
    }

    .event-venue-name {
        font-size: 1.3rem;
    }

    .event-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .events-header {
        padding: 120px 0 60px;
    }

    .events-header h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .add-event-container {
        padding: 20px;
    }

    .event-card {
        padding: 20px;
    }

    .event-venue-name {
        font-size: 1.2rem;
    }

    .btn-small {
        width: 100%;
        justify-content: center;
    }
}

