:root {
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.5);
    --secondary: #d946ef;
    --accent: #22d3ee;
    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.8);
    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.12);
    --font-main: 'Be Vietnam Pro', sans-serif;
    --cursor-size: 20px;
}

/* Premium Background Elements */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    filter: blur(120px);
    opacity: 0.8;
    pointer-events: none;
    background: #020617;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    animation: move 20s infinite alternate;
}

.blob-1 { width: 400px; height: 400px; top: -100px; right: -100px; background: var(--primary); }
.blob-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: var(--secondary); animation-duration: 25s; }
.blob-3 { width: 300px; height: 300px; top: 40%; left: 30%; background: var(--accent); animation-duration: 30s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.15;
    z-index: 9999;
    pointer-events: none;
}

/* Custom Cursor */
.custom-cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor { display: block; }
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background-color: transparent;
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.logo span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2100;
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-cta {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    transition: 0.3s;
    box-shadow: 0 5px 20px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 2rem 80px;
    background: radial-gradient(circle at 50% 40%, #0c0a1e 0%, #030712 100%);
    width: 100%;
}

.mini-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
    display: block;
    width: 100%;
}

.highlight {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-flex {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    text-align: left;
}

.hero h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* 3D Gallery */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
}

.gallery-3d-container {
    position: relative;
    width: 220px;
    height: 320px;
    transform-style: preserve-3d;
    animation: rotateGallery 40s linear infinite;
}

.gallery-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: center;
    transform: rotateY(calc(var(--i) * var(--angle))) translateZ(350px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
    filter: brightness(0.6) grayscale(0.2);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.1) translateZ(50px);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

.gallery-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(10px) translateZ(100px); /* Move way forward */
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-align: left;
    z-index: 100;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
    transform: translateY(0) translateZ(100px);
}

.gallery-info h4 {
    font-size: 0.9rem;
    color: white;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
}

.gallery-info span {
    font-size: 0.7rem;
    color: var(--accent);
    display: block;
}

@keyframes rotateGallery {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@media (max-width: 1000px) {
    .hero-flex { grid-template-columns: 1fr; text-align: center; padding-top: 4rem; gap: 3rem; position: relative; }
    .hero-content { text-align: center; width: 100%; z-index: 2; position: relative; }
    .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem) !important; letter-spacing: -1px; }
    .hero-btns { justify-content: center; }
    .hero-visual { 
        position: relative; 
        top: 0; 
        left: 0; 
        transform: none; 
        width: 100%;
        height: 300px; 
        z-index: 1; 
        perspective: 1200px; 
        opacity: 1;
        pointer-events: auto;
        margin-top: 2rem;
    }
    .gallery-item { transform: rotateY(calc(var(--i) * var(--angle))) translateZ(160px) !important; }
    .gallery-3d-container { width: 110px; height: 160px; margin: 0 auto; }
    .gallery-info { display: none !important; } /* Hide info on mobile to avoid clutter */
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem !important; }
    .hero h3 { font-size: 1rem; }
    .gallery-item { transform: rotateY(calc(var(--i) * 45deg)) translateZ(130px) !important; }
    .gallery-3d-container { width: 85px; height: 120px; }
    .badge { font-size: 0.7rem; padding: 0.4rem 1.2rem; white-space: nowrap !important; width: auto; display: inline-block; }
}

.cta-button {
    padding: 1.4rem 3.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 15px 40px var(--primary-glow);
}

.cta-button.secondary {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--primary-glow);
}

/* Stats Bar - Restored Version */
.stats-bar {
    padding: 6rem 0;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.stats-subtitle {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.partner-icon {
    height: 60px;
    width: auto;
    opacity: 1;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatContinuous 4s ease-in-out infinite !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); /* Default Glow */
}

.partner-icon:nth-child(even) {
    animation-delay: 1s !important;
}

.partner-icon:nth-child(3n) {
    animation-delay: 2s !important;
}

.partner-icon:hover {
    transform: scale(1.25) translateY(-20px);
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.6)) !important;
}

@keyframes floatContinuous {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); } /* More pronounced movement */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* About Section - Restored Version */
.about-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--glass-border);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 40px;
    z-index: -1;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.about-content p {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.discover-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.discover-link:hover {
    border-bottom-color: var(--secondary);
}

/* Section General */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.underline {
    width: 120px;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 2rem auto;
    border-radius: 10px;
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services */
/* Services */
.services-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.service-card {
    background: #0f172a;
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: left;
    transition: 0.4s;
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary);
    background: #1e293b;
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.service-arrow {
    font-size: 1.2rem;
    color: var(--text-dim);
    opacity: 0.5;
    transition: 0.3s;
}

.service-card:hover .service-arrow {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

/* Roster Pill Style */
.roster-flex {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 4rem 0;
}

.roster-pill {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 40px; /* More modern than 100px for large cards */
    width: 280px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.roster-pill:hover {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    transform: scale(1.05);
}

.artist-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #1e293b, #030712);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.artist-avatar span {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.2;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    text-indent: -9999px; /* Hide broken image alt text */
}

.artist-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.artist-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Releases Grid & General Cards */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    transition: 0.5s;
    text-align: center;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.card-img {
    height: 400px;
    background: linear-gradient(45deg, #1e1b4b, #030712);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease-out;
}

.card:hover .card-img img {
    transform: scale(1.15);
}

.card-content {
    padding: 3rem 2rem;
}

.card-content h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.genre-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Form */
.submission-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 6rem;
    border-radius: 60px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

input, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 1.6rem;
    border-radius: 24px;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

textarea {
    min-height: 200px;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    padding: 10rem 0 5rem;
    background: #010204;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-nav ul, .footer-social ul {
    list-style: none;
}

.footer-nav h4, .footer-social h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav a, .footer-social a {
    color: var(--text-dim);
    text-decoration: none;
    display: block;
    margin-bottom: 1.2rem;
    transition: 0.3s;
    font-size: 1.1rem;
}

.footer-nav a:hover {
    color: white;
}

/* Latest Drops / Spotify Section */
#latest-drops {
    padding: 5rem 0;
}

.latest-drops-container {
    background: linear-gradient(135deg, #7c0000 0%, #3e0000 100%);
    padding: 3rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(124, 0, 0, 0.3);
}

.latest-drops-container iframe {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid { gap: 3rem; }
    .hero h1 { font-size: 4rem; }
    .footer-grid { gap: 3rem; }
}

@media (max-width: 800px) {
    .nav-links { 
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 3rem;
    }

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

    .hamburger { 
        display: block; 
        margin-left: auto;
        margin-right: 1.5rem;
    }
    
    .nav-cta {
        display: none; /* Hide button in main nav on mobile to clean up */
    }
    
    .nav-links .nav-cta-mobile {
        display: block;
        padding: 1.2rem 3rem;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        border-radius: 100px;
        color: white;
        text-decoration: none;
        font-weight: 800;
    }
    .hero h3 { font-size: 1.1rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .form-group { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-flex { flex-direction: column; text-align: center; }
    .submission-form { padding: 3rem 1.5rem; }
    
    .services-grid { 
        flex-wrap: wrap; 
        gap: 2rem;
    }
    
    .service-card {
        flex: none;
        width: 100%;
    }
    
    .latest-drops-container {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .partner-icon {
        height: 35px !important; /* Smaller on mobile */
    }

    .partners-logos {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .roster-pill {
        width: 100%;
        max-width: 320px;
        padding: 2.5rem 1.5rem;
        border-radius: 32px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}
