SO/* Global Styles */
:root {
    --primary-red: #fe0000;
    --primary-orange: #ffe4cc;
    --dark-bg: #0e0f11;
    --light-bg: #fceee9;
    --text-white: rgb(255, 228, 204);
    --text-dark: #333333;
    --accent-blue: #5fd7dd;
    --accent-pink: #f6b7c8;
    --dark-brown: #4a1414;
    --token-05377c11-0f87-445d-9d5b-132992546b21: rgb(255, 228, 204);
    --token-8dece06b-805b-434b-ba39-c2af90bde133: rgb(254, 0, 0);
    --token-e992699a-dcac-4eaf-9877-f8e3003da864: rgb(246, 183, 200);
    --token-44a06015-9a0c-4058-9c68-49a3111e74ee: rgb(14, 15, 17);
    --token-81eae02e-e559-40e7-92dd-c558e2e3986f: rgb(64, 0, 0);
    --token-896257f4-7960-402a-aa91-819ea362b91a: rgb(95, 215, 221);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: rgb(255, 228, 204);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'false Bold', 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(14, 15, 17, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 228, 204, 0.1);
}

/* 3-column grid: logo | links | action */
.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2.5rem;
    height: 68px;
}

/* Logo — left column */
.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    font-family: 'false Bold', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: rgb(255, 228, 204);
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.nav-logo:hover { opacity: 0.75; }

/* Nav links — centre column */
.nav-links {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-family: 'Uto Regular', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 228, 204, 0.82);
    text-decoration: none;
    padding: 0.35rem 0.9rem;
    border: none;
    background: none;
    position: relative;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.9rem;
    right: 0.9rem;
    height: 1px;
    background: rgb(255, 228, 204);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: rgb(255, 228, 204);
    background: none;
}

.nav-link:hover::after { transform: scaleX(1); }

/* Actions — right column, aligned to the right */
.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-join {
    font-family: 'Uto Medium', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgb(255, 228, 204);
    text-decoration: none;
    padding: 0.5rem 1.3rem;
    border: 1px solid rgba(255, 228, 204, 0.55);
    border-radius: 999px;
    background: none;          /* reset browser button default */
    cursor: pointer;           /* button cursor */
    -webkit-appearance: none;  /* remove system button look */
    appearance: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
}

.nav-join:hover {
    background: rgb(255, 228, 204);
    border-color: rgb(255, 228, 204);
    color: #0e0f11;
}

/* Remove old logo-img / logo-text rules that are no longer used */
.logo-img { display: none; }
.logo-text { display: none; }


/* ═══════════════════════════════════════════════
   JOIN MODAL
═══════════════════════════════════════════════ */

.jm-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: #0a0b0d;
    display: flex; align-items: center; justify-content: center;
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.jm-overlay.jm-open { opacity: 1; visibility: visible; }

.jm-blob { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; opacity: 0.55; z-index: 0; }
.jm-blob--red { width: 480px; height: 480px; background: radial-gradient(circle, #c0392b 0%, transparent 70%); top: -80px; left: -80px; animation: blobDrift 14s ease-in-out infinite alternate; }
.jm-blob--teal { width: 420px; height: 420px; background: radial-gradient(circle, #1a7a76 0%, transparent 70%); bottom: -80px; right: -60px; animation: blobDrift 18s ease-in-out infinite alternate-reverse; }
@keyframes blobDrift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,30px) scale(1.08); } }

.jm-close {
    position: fixed; top: 1.4rem; right: 1.8rem;
    width: 42px; height: 42px;
    border: 1px solid rgba(255,228,204,0.25); border-radius: 50%;
    background: none; color: rgb(255,228,204);
    font-size: 1.3rem; cursor: pointer; z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
    line-height: 1;
}
.jm-close:hover { background: rgba(255,228,204,0.12); border-color: rgba(255,228,204,0.5); }

.jm-screen {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 5rem 2rem 3rem; text-align: center; z-index: 1;
    opacity: 0; transform: translateY(18px); pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.jm-screen.jm-active { opacity: 1; transform: translateY(0); pointer-events: all; }

.jm-screen--form {
    position: absolute; overflow-y: auto;
    justify-content: flex-start; align-items: center;
    text-align: left; padding: 5rem 2rem 4rem;
}

.jm-eyebrow { font-family: 'Uto Medium', sans-serif; font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--primary-red); margin-bottom: 1rem; }
.jm-title { font-family: 'false Bold', sans-serif; font-size: clamp(3.2rem,9vw,7rem); font-weight: 900; color: rgb(255,228,204); line-height: 1; margin-bottom: 2.5rem; }

.jm-choices { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.jm-choice-btn {
    font-family: 'Uto Medium', sans-serif; font-size: 0.9rem; font-weight: 700;
    color: rgb(255,228,204); background: none;
    border: 1px solid rgba(255,228,204,0.45); border-radius: 999px;
    padding: 0.65rem 1.6rem; cursor: pointer; letter-spacing: 0.02em;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.jm-choice-btn:hover { background: rgb(255,228,204); border-color: rgb(255,228,204); color: #0a0b0d; transform: translateY(-2px); }

.jm-form-title { font-family: 'false Bold', sans-serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: rgb(255,228,204); margin-bottom: 2rem; }
.jm-back { background: none; border: none; color: rgba(255,228,204,0.6); font-family: 'Uto Medium', sans-serif; font-size: 0.85rem; cursor: pointer; padding: 0; margin-bottom: 1.5rem; transition: color 0.2s; align-self: flex-start; }
.jm-back:hover { color: rgb(255,228,204); }

.jm-form { width: 100%; max-width: 580px; display: flex; flex-direction: column; gap: 1.4rem; }
.jm-field { display: flex; flex-direction: column; gap: 0.5rem; }
.jm-field label { font-family: 'Uto Medium', sans-serif; font-size: 0.9rem; color: rgb(255,228,204); }

.jm-field input,
.jm-field select,
.jm-field textarea {
    background: rgba(255,228,204,0.04);
    border: 1px solid rgba(255,228,204,0.15); border-radius: 999px;
    padding: 0.75rem 1.3rem; color: rgb(255,228,204);
    font-family: 'Uto Regular', sans-serif; font-size: 0.95rem;
    outline: none; width: 100%;
    transition: border-color 0.25s ease, background 0.25s ease;
    appearance: none; -webkit-appearance: none;
}
.jm-field textarea { border-radius: 1.2rem; resize: vertical; min-height: 90px; }
.jm-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffe4cc' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1.2rem center; padding-right: 2.5rem; cursor: pointer;
}
.jm-field input:focus, .jm-field select:focus, .jm-field textarea:focus { border-color: rgba(255,228,204,0.55); background: rgba(255,228,204,0.07); }
.jm-field input::placeholder, .jm-field textarea::placeholder { color: rgba(255,228,204,0.3); }
.jm-field select option { background: #1a1b1e; }

.jm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.jm-submit {
    font-family: 'Uto Medium', sans-serif; font-size: 0.95rem; font-weight: 700;
    letter-spacing: 0.04em; color: #0a0b0d; background: rgb(255,228,204);
    border: none; border-radius: 999px; padding: 0.85rem 2rem;
    cursor: pointer; width: fit-content; margin-top: 0.5rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.jm-submit:hover { opacity: 0.85; transform: translateY(-2px); }

.jm-success-sub { font-family: 'Uto Regular', sans-serif; font-size: 1.05rem; color: rgba(255,228,204,0.7); max-width: 440px; line-height: 1.7; margin-bottom: 2rem; }

body.jm-no-scroll { overflow: hidden; }

@media (max-width: 600px) {
    .jm-row { grid-template-columns: 1fr; }
    .jm-title { font-size: 3rem; }
    .jm-choices { flex-direction: column; align-items: stretch; }
    .jm-form { max-width: 100%; }
}

/* Hero Section - Updated to match Crux Global format */
.hero {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-size: clamp(10rem, 22vw, 18rem);
    font-weight: 900;
    color: rgb(255, 228, 204);
    font-family: 'false Bold', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUpTitle 1s ease-out 0.5s forwards, glow-pulse 3s ease-in-out 1.5s infinite;
}

@keyframes fadeInUpTitle {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 228, 204, 0.3), 0 0 20px rgba(255, 228, 204, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 228, 204, 0.5), 0 0 30px rgba(255, 228, 204, 0.3);
    }
}

@keyframes type-in {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
}

.hero-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-orange);
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.cta-btn {
    background: var(--primary-red);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #d10000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 0, 0, 0.3);
}

.hero-graphic {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.wave:nth-child(1) { width: 100px; height: 100px; animation-delay: 0s; }
.wave:nth-child(2) { width: 200px; height: 200px; animation-delay: 0.5s; }
.wave:nth-child(3) { width: 300px; height: 300px; animation-delay: 1s; }
.wave:nth-child(4) { width: 400px; height: 400px; animation-delay: 1.5s; }

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

/* Platforms Section */
.platforms {
    background: #0e0f11;
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.platforms-container {
    padding: 0 2rem;
}

.platforms h2 {
    color: rgb(255, 228, 204);
    font-size: clamp(10rem, 22vw, 18rem);
    margin-bottom: 3rem;
    font-weight: 900;
    font-family: 'false Bold', sans-serif;
}

.platforms-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.platforms-track {
    display: flex;
    animation: scroll-platforms 30s linear infinite;
    width: max-content;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    margin: 0 2rem;
    min-width: 120px;
}

.platform-item:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* About Us Section */
.about-us {
    background: #fce8d8;
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
}

.about-us-content {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    height: 100%;
}

.about-us-text {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us-text h2 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #fe0000;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'false Bold', sans-serif;
}

.about-us-text p {
    font-size: 1.2rem;
    color: #fe0000;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: bold;
}

.about-us-graphic {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.about-us-logo {
    height: 100%;
    width: 100%;
    opacity: 1;
    object-fit: cover;
}

/* Services Section */
.services {
    background: black;
}

.service-section {
    padding: 3rem 0;
}

.service-container {
    width: 100%;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.service-content {
    width: 30%;
}

.service-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'false Bold', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
    transition: opacity 0.3s ease;
}

.service-text {
    width: 60%;
}

.service-text p {
    font-family: 'Uto Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Old service-expanded styles removed - using expand-content instead */

.expanded-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.expanded-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expanded-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expanded-content h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: 'false Bold', sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: inherit;
    line-height: 1.2;
}

.expanded-content p {
    font-family: 'Uto Regular', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: inherit;
}

.service-text .read-more {
    font-family: 'Uto Medium', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    color: inherit;
    cursor: pointer;
    align-self: flex-end;
    margin-top: auto;
}

.service-text .read-more:hover {
    opacity: 0.7;
}

.service-text .read-more.expanded {
    transform: rotate(45deg);
}

.service-expanded {
    width: 100%;
    padding: 0 4rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    transition:
        max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        transform 0.45s ease,
        padding 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
}

.service-expanded.show {
    max-height: 900px;
    opacity: 1;
    padding: 3rem 4rem;
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
}

/* When expanded, smoothly hide the original heading and text */
.service-container .service-content,
.service-container .service-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-container.expanding .service-content,
.service-container.expanding .service-text {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
}

.service-container.expanded .service-content,
.service-container.expanded .service-text {
    display: none;
}

/* See less button inside expanded panels */
.expanded-content .read-more {
    font-family: 'Uto Medium', sans-serif;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-size: 1rem;
    padding: 0;
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.expanded-content .read-more:hover {
    opacity: 1;
    transform: translateX(-3px);
}



/* Music Distribution Section */
.music-distribution {
    background: #e8b4b8;
    color: black;
}

/* Films Section */
.films {
    background: black;
    color: white;
}

/* Record Label Section */
.record-label {
    background: #4fada8;
    color: black;
}

/* ── Join CTA Section ──────────────────────────────── */
.join-cta {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.join-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    will-change: transform;
}

.join-cta:hover .join-cta-bg {
    transform: scale(1);
}

.join-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14,15,17,0.5) 0%,
        rgba(14,15,17,0.72) 60%,
        rgba(14,15,17,0.92) 100%
    );
}

.join-cta-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.join-cta-label {
    font-family: 'Uto Medium', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin: 0;
}

.join-cta-title {
    font-family: 'false Bold', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: rgb(255, 228, 204);
    line-height: 1.1;
    margin: 0;
}

.join-cta-sub {
    font-family: 'Uto Regular', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,228,204,0.8);
    max-width: 580px;
    line-height: 1.7;
    margin: 0;
}

.join-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem 2.6rem;
    background: var(--primary-red);
    color: rgb(255,228,204);
    font-family: 'Uto Medium', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(254,0,0,0.35);
}

.join-cta-btn:hover {
    background: transparent;
    border-color: rgb(255,228,204);
    color: rgb(255,228,204);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(254,0,0,0.18);
}

/* Artists Section - Updated to match provided code exactly */
.artists {
    background: black;
    padding: 3rem 0;
}

.artists-container {
    margin: 0 auto;
    padding: 0 1rem;
}

.artists h2 {
    text-align: center;
    font-size: clamp(10rem, 22vw, 18rem);
    color: rgb(255, 228, 204);
    margin-bottom: 2rem;
    font-weight: 900;
    font-family: 'false Bold', sans-serif;
    animation: slide-right-to-left 12s linear infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes slide-right-to-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.artist-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-info {
    background-color: black;
    color: rgb(255, 228, 204);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.artist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-family: 'Uto Medium', sans-serif;
    font-weight: 600;
}

.artist-name {
    color: rgb(255, 228, 204);
}

.details-link {
    color: rgb(255, 228, 204);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.details-link:hover {
    color: var(--primary-orange);
}

.listen-btn {
    margin-top: 1rem;
    border: 1px solid rgb(255, 228, 204);
    color: rgb(255, 228, 204);
    padding: 0.75rem 2rem;
    font-family: 'Uto Regular', sans-serif;
    font-weight: 400;
    background: black;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    align-self: stretch;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.listen-btn:hover {
    background: rgb(255, 228, 204);
    color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About Section */
.about {
    background: var(--dark-bg);
    padding: 6rem 0;
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-graphic {
    position: relative;
    height: 400px;
}

.flame-graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: flame 2s infinite;
}

@keyframes flame {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* FAQ Section */
.faq {
    background: var(--dark-bg);
    padding: 6rem 0;
}

.faq-container {
    padding: 0 2rem;
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 900;
}

.faq-subtitle {
    text-align: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

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

.faq-item {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #0e0f11;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

/* TikTok icon styling */
.footer-section ul li a .fab.fa-tiktok {
    color: #000000;
    background: linear-gradient(45deg, #25f4ee, #fe2c55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1511px) and (min-width: 1194px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1193px) and (min-width: 810px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-us-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-us-text p {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 809px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .about-us-content {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-us-graphic {
        height: 300px;
    }

    .services-container,
    .artists-container,
    .faq-container,
    .footer-container {
        padding: 0 1rem;
    }

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

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

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq h2 {
        font-size: 2.5rem;
    }
    
    .services h2 {
        font-size: 2.5rem;
    }
    
    .artists h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .services h2,
    .artists h2,
    .faq h2 {
        font-size: 2rem;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Screen */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loading.hidden {
    opacity: 0;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-orange);
    border-top: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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