:root {
    /* Color Palette - Modern Light Mode (Restored) */
    --bg-primary: #fcfcfc;
    --bg-secondary: #f4f4f4;
    --primary: #4a908d; 
    --primary-dark: #3a7572;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-bright: #ffffff;
    --border: #e2e2e2;
    --card-bg: #ffffff;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body.has-custom-cursor, 
body.has-custom-cursor * {
    cursor: none !important;
}

/* CUSTOM CURSOR */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    opacity: 0.3;
}

.cursor-hover .custom-cursor { transform: scale(0); }
.cursor-hover .cursor-follower { transform: scale(1.8); background: rgba(74, 144, 141, 0.1); opacity: 1; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.container-small {
    max-width: 600px;
}

.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
    text-align: left;
}

.sub-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    line-height: 1.1;
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 30px; 
    right: 30px;
    width: auto;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    header {
        top: 10px;
        left: 15px;
        right: 15px;
        padding: 5px 20px; /* Slimmer for mobile */
    }
    header.scrolled {
        top: 5px;
        padding: 5px 20px;
    }
}

header.scrolled {
    top: 10px;
    padding: 10px 40px;
    background: rgba(5, 5, 6, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-img {
    height: 50px; 
    width: auto;
    display: block;
    border-radius: 8px; /* Slightly rounded edges for the logo */
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px; /* Smaller logo for mobile to fit slim header */
    }
}

.logo:hover .logo-img {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.desktop-nav a:hover {
    color: var(--text-bright);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.scrolled .hero-bg-img {
    transform: scale(1.25);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(252, 252, 252, 0.8) 0%, rgba(252, 252, 252, 0.2) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 84px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--text-main);
    text-transform: uppercase;
    animation: slide-up-fade 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slide-up-fade {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title .highlight {
    color: var(--primary);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-bright);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--text-bright);
}

/* Artist Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.artist-card {
    background: var(--card-bg);
    overflow: hidden;
    transition: var(--transition);
}

.artist-img-wrapper {
    position: relative;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: var(--bg-secondary);
}

.artist-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 2;
}

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

.enter-btn {
    padding: 12px 24px;
    background: white;
    color: black;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    transform: translateY(20px);
    transition: var(--transition);
}

.artist-card:hover .enter-btn {
    transform: translateY(0);
}

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

.artist-info {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.artist-header-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.artist-role {
    font-size: 15px;
    color: var(--text-muted);
}

.artist-stats {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

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

/* Artist Detail Tabs (Sub-navigation) */
.artist-detail {
    margin-top: 40px;
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.artist-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--card-bg);
}

.atab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.atab.active {
    color: var(--primary);
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--primary);
}

.apanel {
    padding: 30px;
    display: none;
    animation: fade-in 0.5s ease;
}

.apanel.active {
    display: block;
}

.apanel p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.artist-tracks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--card-bg);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.track-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.track-title-info h5 {
    font-size: 14px;
    font-weight: 700;
}

.track-title-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.track-links {
    display: flex;
    gap: 12px;
}

.track-links a {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid transparent;
}

.track-links a:hover {
    border-color: var(--primary);
}

.artist-social-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.asocial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: var(--card-bg);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.asocial-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Marquee */
.marquee {
    width: 100%;
    padding: 40px 0;
    background: var(--text-main);
    color: var(--text-bright);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 5vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: marquee 20s linear infinite;
}

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

.marquee-content span {
    margin-right: 50px;
}

.marquee-content .stroke-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-bright);
}

/* MUSIC SECTION - HYBRID LAYOUT (Latest vs Archive) */
.latest-releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.latest-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.latest-card .cover {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.latest-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.latest-card:hover .cover img {
    transform: scale(1.1);
}

.latest-card .badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    z-index: 5;
}

.latest-card .info {
    padding: 25px;
    text-align: center;
}

.latest-card .info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.latest-card .info p {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.latest-card .links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.latest-card .links a {
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 40px;
    transition: var(--transition);
}

.latest-card .links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* MUSIC ARCHIVE - EXECUTIVE MODE (Global Fix) */
.studio-archive, 
.studio-top-chart {
    width: 100%;
    margin-top: 100px;
    clear: both;
    grid-column: 1 / -1; /* Critical: spans all columns if in a grid */
}

.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 40px;
}

.archive-header h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-main);
}

.archive-header span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 700;
}

.archive-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.release-list-item {
    display: flex;
    flex-direction: row; /* Force horizontal row */
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    background: transparent;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    gap: 30px;
    width: 100%;
}

.release-list-item:hover {
    background: rgba(0,0,0,0.02);
    padding-left: 30px;
}

.release-list-item .thumb {
    width: 60px !important;
    height: 60px !important;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.release-list-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-list-item .info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.release-list-item .info h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.release-list-item .info span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 600;
}

.release-list-item .links {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.release-list-item .links a, 
.release-list-item .links .lyric-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* For Top 5 Play button */
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;
    padding: 8px 12px; /* Adjusted for icons */
    min-width: 44px; /* Circle-ish for icons only */
    border: 1px solid var(--border) !important;
    border-radius: 40px !important;
    color: var(--text-main) !important;
    letter-spacing: 1.5px;
    transition: var(--transition) !important;
    background: transparent;
    cursor: pointer;
}

/* BRAND COLORS ON HOVER */
.release-list-item .links a[title*="Spotify"]:hover,
.play-btn:hover {
    background: #1DB954 !important;
    border-color: #1DB954 !important;
    color: white !important;
}

.release-list-item .links a[title*="YouTube"]:hover {
    background: #FF0000 !important;
    border-color: #FF0000 !important;
    color: white !important;
}

.release-list-item .links .lyric-trigger:hover {
    background: var(--text-main) !important;
    color: white !important;
    border-color: var(--text-main) !important;
}

/* NEW INLINE LYRICS ICON (NOTEPAD STYLE) */
.lyric-trigger svg {
    transition: all 0.3s ease;
}

.lyric-trigger:hover svg {
    opacity: 1 !important;
    transform: scale(1.1);
    color: var(--primary);
}

/* Dark Mode Overrides for Artist Profiles (Lara Kess) */
.dark-mode-archive .archive-header { border-color: rgba(255,255,255,0.1); }
.dark-mode-archive .archive-header h3 { color: white; }
.dark-mode-archive .release-list-item { border-color: rgba(255,255,255,0.05); }
.dark-mode-archive .release-list-item:hover { background: rgba(255,255,255,0.03); }
.dark-mode-archive .release-list-item .info h4 { color: white; }
.dark-mode-archive .release-list-item .links a, 
.dark-mode-archive .release-list-item .links .lyric-trigger { 
    border-color: rgba(255,255,255,0.1) !important; 
    color: rgba(255,255,255,0.7) !important; 
}
.dark-mode-archive .release-list-item .links a:hover, 
.dark-mode-archive .release-list-item .links .lyric-trigger:hover { 
    background: white !important; 
    color: black !important; 
    border-color: white !important; 
}

.track-ext-links a {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.track-ext-links a:hover {
    background: var(--text-main);
    color: white;
    transform: scale(1.1);
}

.release-item:hover img {
    transform: scale(1.1);
}

/* SERVICES SECTION - EXECUTIVE STYLE */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 50px 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: left;
    border-radius: 20px; /* Consistent rounding */
}

.service-card:hover { background: #fafafa; }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.service-icon {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
    letter-spacing: 3px;
}

/* STUDIO GALLERY */
.studio-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 350px 200px;
    gap: 15px;
    margin-top: 80px;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-photo:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(0.98);
}

.photo-span-2 { grid-column: span 2; }
.photo-row-2 { grid-row: span 2; }

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.process-line {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 120px;
}

.step-dot {
    width: 24px;
    height: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.process-step:hover .step-dot {
    border-color: var(--primary);
    background: var(--primary);
}

.step-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
    transition: var(--transition);
}

.process-step:hover .step-dot::after {
    background: var(--text-bright);
}

.step-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.process-step:hover .step-label {
    color: var(--text-main);
}

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

.contact-card {
    background: var(--card-bg);
    padding: 80px 60px;
    box-shadow: var(--shadow);
    border-radius: 30px; /* High rounding for contact section */
}

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

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

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

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

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

.social-links a {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-main);
    font-weight: 700;
}

/* Audio Player Removed - Redirected to Streaming */

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition);
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-bright);
}

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

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(0px, 0px);
    margin-top: -1.5px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-bright);
    transition: var(--transition);
}

@media (max-width: 968px) {
    .artist-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-container {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 40px;
    }
    
    .track-info-mini {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }
    
    .process-line {
        left: 31px;
        top: 0;
        width: 1px;
        height: 100%;
    }
    
    .process-step {
        flex-direction: row;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse; /* Put links above copyright */
        gap: 25px;
        text-align: center;
    }
}



/* STUDIO TOP 5 CHART */
.studio-top-chart {
    margin: 100px 0;
    padding: 60px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.03);
}

.chart-list {
    display: flex;
    flex-direction: column;
}

.chart-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 100px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.chart-row:last-child { border-bottom: none; }

.chart-row:hover {
    padding-left: 15px;
    background: rgba(0,0,0,0.01);
}

.chart-row .rank {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
}

.chart-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-text {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.chart-text .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

.chart-text .artist {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pop-bar-wrap {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: rgba(0,0,0,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.pop-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.plays-count {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: right;
    padding-right: 30px;
}

.play-btn {
    font-size: 10px;
    font-weight: 800;
    background: var(--text-main);
    color: white;
    padding: 10px 0;
    width: 80px;
    text-align: center;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Responsive Chart */
@media (max-width: 968px) {
    .chart-row { grid-template-columns: 50px 1fr 100px; }
    .plays-count { display: none; }
    .studio-top-chart { padding: 30px; }
}

@media (max-width: 640px) {
    .chart-row { grid-template-columns: 40px 1fr; gap: 20px; }
    .play-btn { display: none; }
    .chart-text { flex-direction: column; gap: 5px; }
}

/* BRAND COLORS & HOVER EFFECTS */
.links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BRAND HOVERS - UNIVERSAL */
.links a:hover, .chart-links a:hover, .social-links-footer a:hover { transform: scale(1.2) translateY(-2px); }

/* Spotify */
.links a[title*="Spotify"]:hover, .chart-links a[title*="Spotify"]:hover, .social-links-footer a[title*="Spotify"]:hover { color: #1DB954 !important; filter: drop-shadow(0 0 8px rgba(29, 185, 84, 0.4)); }
/* Apple Music */
.links a[title*="Apple"]:hover, .chart-links a[title*="Apple"]:hover, .social-links-footer a[title*="Apple"]:hover { color: #FA243C !important; filter: drop-shadow(0 0 8px rgba(250, 36, 60, 0.4)); }
/* Tidal */
.links a[title*="Tidal"]:hover, .chart-links a[title*="Tidal"]:hover, .social-links-footer a[title*="Tidal"]:hover { color: #000000 !important; filter: drop-shadow(0 0 5px rgba(0,0,0,0.3)); }
/* Amazon */
.links a[title*="Amazon"]:hover, .chart-links a[title*="Amazon"]:hover, .social-links-footer a[title*="Amazon"]:hover { color: #00A8E1 !important; filter: drop-shadow(0 0 8px rgba(0, 168, 225, 0.4)); }
/* YouTube */
.links a[title*="YouTube"]:hover, .chart-links a[title*="YouTube"]:hover, .social-links-footer a[title*="YouTube"]:hover { color: #FF0000 !important; filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.4)); }
/* Instagram */
.links a[title*="Instagram"]:hover, .social-links-footer a[title*="Instagram"]:hover { color: #E1306C !important; filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.4)); }
/* TikTok */
.links a[title*="TikTok"]:hover, .social-links-footer a[title*="TikTok"]:hover { color: #000000 !important; filter: drop-shadow(-2px -2px 0 #ff0050) drop-shadow(2px 2px 0 #00f2ea); }
/* Lyrics */
.links a.lyric-trigger:hover { color: var(--primary) !important; filter: drop-shadow(0 0 8px rgba(0,0,0,0.1)); }

/* Studio Top 5 Popularity Chart */
.studio-top-chart {
    background: var(--card-bg);
    border-radius: 24px; /* More rounded */
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.chart-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.chart-row:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    background: var(--card-bg);
}

.rank {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    opacity: 0.3;
    min-width: 25px;
}

.chart-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chart-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-text .title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-text .artist {
    font-size: 13px;
    color: var(--text-muted);
}

.pop-bar-wrap {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.pop-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.chart-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.platform-mini {
    display: flex;
    gap: 15px;
}

.platform-mini a {
    color: var(--text-muted);
    transition: var(--transition);
}

.play-btn-mini {
    background: var(--text-main);
    color: var(--text-bright);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.play-btn-mini:hover {
    background: var(--primary);
    color: white;
}

/* Responsive Top Chart */
@media (max-width: 900px) {
    .chart-row {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .chart-info {
        width: calc(100% - 100px);
    }
    
    .chart-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
        align-items: center; /* Important for alignment */
    }

    .platform-mini {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    .hero-subtitle {
        font-size: 15px !important;
        padding: 0 20px;
    }
}

/* Responsive Archive */
@media (max-width: 768px) {
    .release-list-item { flex-direction: column; align-items: flex-start; gap: 20px; padding: 30px 15px; }
    .release-list-item .links { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 25px; }
}
