:root {
    /* SonikaLab Neon Executive Palette */
    --bg-primary: #050506;      /* Deep obsidian */
    --bg-secondary: #0a0a0c;    /* Very dark navy */
    --primary: #4cc9f0;         /* Neon Cyan from logo */
    --accent: #b5179e;          /* Neon Purple/Magenta from logo */
    --primary-dark: #4361ee;    /* Vibrant Blue midpoint */
    --text-main: #e0e6ed;       /* Soft cool white */
    --text-muted: #7f8ea3;      /* Muted slate */
    --text-bright: #ffffff;
    --border: rgba(76, 201, 240, 0.1); 
    --card-bg: #0f1115;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --neon-gradient: linear-gradient(135deg, var(--accent), var(--primary));
    --glass: rgba(15, 17, 21, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* 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 - RESTORED */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 15px rgba(181, 23, 158, 0.8), 0 0 30px rgba(181, 23, 158, 0.4);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent);
    background: rgba(181, 23, 158, 0.05);
    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.5;
}

.cursor-hover .custom-cursor { transform: scale(0); }
.cursor-hover .cursor-follower { transform: scale(1.8); background: rgba(181, 23, 158, 0.2); opacity: 1; }

@media (pointer: coarse) {
    .custom-cursor, 
    .cursor-follower {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

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

/* NOISE OVERLAY - Executive Texture */
.noise-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.03; /* Reduced for ultra-subtlety */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

section:nth-child(even) {
    background-color: var(--bg-secondary);
}

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: 40px 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(--accent);
    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-bright);
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(181, 23, 158, 0.2); /* Neon Magenta Glow */
    margin-bottom: 30px;
}

.about-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.5;
    color: var(--text-main);
    max-width: 900px;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* SECTION CONNECTORS POINT 3 */
.section {
    padding: 100px 0; /* Giving more space as discussed */
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 30px; 
    right: 30px;
    width: auto;
    z-index: 1000;
    padding: 15px 40px;
    transition: var(--transition);
    background: rgba(5, 5, 6, 0.98);
    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(181, 23, 158, 0.6));
}

.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(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.3) 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); }
}

.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(--accent);
    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(--neon-gradient);
    color: var(--text-bright);
    border: none;
    box-shadow: 0 10px 20px rgba(76, 201, 240, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(181, 23, 158, 0.3);
}

.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: 60px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .artist-grid {
        gap: 40px;
    }
}

.artist-card {
    background: var(--card-bg);
    transition: var(--transition);
    border-radius: 20px;
    border: 1.5px solid var(--border); /* Slightly thicker for visibility */
    position: relative;
    padding: 20px;
    display: block;
}

.artist-card:hover {
    border-color: var(--accent) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(181, 23, 158, 0.2) !important;
}

.artist-img-wrapper {
    position: relative;
    padding-bottom: 100%; /* Perfect Square Ratio POINT 1 */
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: 8px; /* Inner rounding */
}

.artist-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Taller for parallax movement */
    object-fit: cover;
    transition: transform 0.2s ease-out; /* Smooth but responsive */
    transform: translateY(0);
}

.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-top: 25px; /* Spacing below the image frame */
    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(--accent);
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--accent);
}

.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(--accent);
    border-bottom: 1px solid transparent;
}

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

.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(--accent);
    color: white;
    border-color: var(--accent);
}

.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;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.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);
    box-shadow: 0 10px 30px rgba(181, 23, 158, 0.05);
}

.latest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.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(--accent);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    z-index: 5;
}

.video-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: #ff0000;
    color: white;
    font-size: 9px;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    animation: pulse-red 2s infinite;
}

.video-badge::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid white;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(255, 0, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); }
}

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

.latest-card .info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    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: 12px; /* Balanced spacing */
}

.latest-card .links a {
    border: none !important;
    padding: 0 !important;
    background: none !important; /* Force removal of back box */
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important; /* Ensure no pill shape */
}

.latest-card .links a:hover {
    background: none !important;
    transform: scale(1.1);
}

/* 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: 15px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
}

.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; 
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    gap: 20px;
    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: 17px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

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

.release-list-item .links {
    display: flex;
    gap: 8px; /* Tighter gap */
    flex-shrink: 0;
}

.release-list-item .links a, 
.release-list-item .links .lyric-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; 
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;
    padding: 6px; /* Icon-centric padding */
    min-width: 38px; /* Circular for smaller icons */
    min-height: 38px;
    border: 1px solid var(--border) !important;
    border-radius: 50% !important; /* Perfect circles */
    color: var(--text-main) !important;
    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: var(--card-bg);
    padding: 50px 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: left;
    border-radius: 20px; /* Consistent rounding */
    border: 1px solid var(--border);
}

.service-card:hover { background: var(--bg-secondary); border-color: var(--accent); }

.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(--accent);
    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(--accent);
    background: var(--accent);
}

.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-primary);
    border: 1px solid var(--border);
    color: var(--text-main);
    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: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.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(--accent);
    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(--accent);
    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(--accent);
    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: 10px; /* Tighter gap like Top 5 */
    justify-content: center;
}

.links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: none !important;
    border-radius: 50% !important;
    border: none !important;
    padding: 0 !important;
    width: 32px;
    height: 32px;
}

.brand-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    border-radius: 50% !important; /* Force circularity everywhere */
    object-fit: cover;
    display: block;
    filter: grayscale(1) brightness(0.9);
    opacity: 0.6;
    transition: var(--transition);
}

/* Specific Size for Release Cards, Artists, and Top 5 (3x from 12px base = 36px) */
.latest-card .brand-icon,
.album-card .brand-icon,
.gallery-item .brand-icon,
.release-list-item .brand-icon,
.platform-mini .brand-icon {
    width: 26px; /* Reduced from 36px */
    height: 26px;
    min-width: 26px;
    min-height: 26px;
}

/* ARTIST-SPECIFIC PERSONALIZATION (USER REQUEST) */
/* Lara Kess - Neon Pop Style */
.lara-card:hover {
    border-color: #ff007a !important;
    box-shadow: 0 15px 45px rgba(255, 0, 122, 0.3) !important;
}
.lara-card:hover .enter-btn {
    background: #ff007a !important;
    color: white !important;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.6);
}

/* Valerie Mill - Indie / Notebook Style */
.valerie-card:hover {
    border-color: #ffffff !important;
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.1) !important;
}
.valerie-card:hover .enter-btn {
    background: white !important;
    color: black !important;
    font-family: 'Special Elite', cursive !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Maintain horizontal layout for social/platform containers */
.links, .platform-mini, .social-links-footer, .social-dock, .social-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Tighter for smaller icons */
}

.social-links-footer a,
.social-dock a {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links a:hover .brand-icon, 
.platform-mini a:hover .brand-icon,
.social-dock a:hover .brand-icon,
.social-links a:hover .brand-icon {
    filter: grayscale(0) brightness(1); 
    opacity: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

/* Spotify */
.links a[title*="Spotify"]:hover, .chart-links a[title*="Spotify"]:hover, .social-links-footer a[title*="Spotify"]:hover, .platform-mini a[title*="Spotify"]:hover, .play-btn-mini: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, .platform-mini 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, .platform-mini a[title*="Tidal"]:hover { color: #ffffff !important; filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); }
/* Amazon */
.links a[title*="Amazon"]:hover, .chart-links a[title*="Amazon"]:hover, .social-links-footer a[title*="Amazon"]:hover, .platform-mini 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, .platform-mini 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(--accent);
    transform: translateY(-2px);
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(181, 23, 158, 0.1);
}

.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: 10px; /* Tighter gap */
}

.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;
    }
    
    .video-badge {
        top: 10px !important;
        left: 10px !important;
        padding: 3px 7px !important;
        font-size: 8px !important;
        border-radius: 2px !important;
    }
    .video-badge::before {
        border-top-width: 4px !important;
        border-bottom-width: 4px !important;
        border-left-width: 6px !important;
    }
}

@media (max-width: 400px) {
    .video-badge {
        top: 6px !important;
        left: 6px !important;
        padding: 2px 5px !important;
        font-size: 6px !important;
    }
    .video-badge::before {
        border-top-width: 3px !important;
        border-bottom-width: 3px !important;
        border-left-width: 5px !important;
    }
}

/* Responsive Archive - Keeping Row as long as possible */
@media (max-width: 768px) {
    .release-list-item { 
        flex-direction: row; 
        flex-wrap: wrap; 
        gap: 15px; 
        padding: 12px 10px; 
    }
    .release-list-item .thumb { width: 45px !important; height: 45px !important; }
    .release-list-item .info { min-width: 150px; }
    .release-list-item .links { 
        width: 100%; 
        justify-content: flex-start; 
        gap: 8px; /* Compact Icons on mobile */
    }
    .release-list-item .links a { min-width: 34px; min-height: 34px; padding: 4px; }
}

/* UNIVERSAL OVERLAY SYSTEM (Lyrics & Bio) */
.universal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    overflow-y: auto;
    padding: 120px 40px;
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: rgba(5, 5, 6, 0.98);
    backdrop-filter: blur(25px);
}

.universal-overlay.active {
    display: flex;
    opacity: 1;
}

.close-overlay {
    position: fixed;
    top: 40px; 
    right: 40px;
    z-index: 9000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.close-overlay:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05);
}

/* VALERIE MILL - NOTEBOOK STYLE OVERRIDE */
.lyric-sheet {
    background-color: #f8f5f1 !important;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    color: #2c2c2c !important;
    font-family: 'Caveat', cursive !important;
}

.lyric-sheet h2 {
    font-family: 'Special Elite', cursive !important;
    text-transform: uppercase;
    color: #000 !important;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
}

.lyric-sheet .close-overlay {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000;
}

.lyric-sheet .close-overlay:hover {
    background: #000;
    color: #fff;
}

.polaroid-wrap {
    background: white;
    padding: 10px 10px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(var(--rot));
    position: absolute;
    width: 200px;
    border: 1px solid #ddd;
}

.polaroid-wrap img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* RESPONSIVE OVERLAYS */
@media (max-width: 768px) {
    .universal-overlay {
        padding: 80px 20px;
    }
    .close-overlay {
        top: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 11px;
    }
    .polaroid-wrap {
        display: none; /* Hide polaroids on small mobile to avoid clutter */
    }
}
