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

:root {
    --black: #0a0a0a;
    --white: #fff;
    --gray: #888;
    --dark: #151515;
    --accent: #ffffff;
    --accent-dark: #cccccc;
    --brand-mix: #100b21;
    /* Vini Records Purple Accent */
    --brand-glow: rgba(16, 11, 33, 0.6);
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 999999;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    will-change: transform;
    opacity: 0;
}

.cursor-dot.visible {
    opacity: 1;
}

.cursor-dot.hovering {
    width: 36px;
    height: 36px;
}

@media (max-width: 768px) {
    .cursor-dot {
        display: none !important;
    }
}



html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(-45deg,
            #0a0a0a,
            var(--brand-mix),
            #0d0d0d,
            var(--brand-glow),
            #0a0a0a);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    opacity: 0.15;
    /* Subtle purple glow underneath the whole page */
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    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)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.05;
}

/* Canvas Background */
#bg-canvas,
#dist-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Mobile Background Animation */
@media (max-width: 768px) {
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 0;
        background: linear-gradient(-45deg,
                #0a0a0a,
                var(--brand-mix),
                #0d0d0d,
                #141414,
                #0a0a0a);
        background-size: 400% 400%;
        animation: gradientMove 6s ease infinite;
        opacity: 0.3;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Page Layout */
.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 32px 48px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(50, 50, 50, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.sidebar-nav .nav-indicator {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--brand-mix);
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 0 15px var(--brand-glow), 0 0 30px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy spring transition */
    left: 10px;
    top: 0;
    pointer-events: none;
}

.sidebar-nav a svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.sidebar-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-nav a.active {
    color: var(--white);
    /* background and shadows migrated to .nav-indicator */
}

.sidebar-nav a.active:hover {
    background: var(--white);
    color: var(--black);
}

/* Tooltip on hover */
.sidebar-nav a .nav-tooltip {
    position: absolute;
    left: 58px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-8px);
    transition: all 0.25s ease;
}

.sidebar-nav a:hover .nav-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Hide old header */
header {
    display: none;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 40px 0;
}

.logo {
    width: 280px;
    height: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.15));
}

.mobile-logo {
    display: none;
    width: 160px;
    height: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--white);
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 80px rgba(0, 0, 0, 0.5);
}

.tagline {
    color: var(--gray);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 1),
        0 0 20px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Force center all hero items */
    justify-content: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    /* Ensure horizontal centering */
    gap: 16px;
    margin-top: 8px;
    width: 100%;
    /* Take full width to allow centering */
}

.btn {
    display: inline-block;
    padding: 16px 48px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn.primary {
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.btn.primary:hover {
    background: var(--brand-mix);
    color: var(--white);
    box-shadow: 0 6px 30px var(--brand-glow);
    border-color: var(--brand-mix);
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    width: 100%;
}

.socials {
    display: flex;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.socials a {
    color: var(--gray);
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 24px;
    width: 24px;
}

.socials a:hover {
    color: var(--white);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.socials svg {
    width: 18px;
    height: 18px;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 100;
    padding: 24px;
}

.modal:target {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    position: relative;
}

.modal-box.large {
    max-width: 580px;
}

.modal-logo {
    width: 48px;
    margin-bottom: 20px;
}

.modal-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.modal-box p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.modal-box p strong {
    color: var(--white);
}

.modal-box .signature {
    color: var(--white);
    font-weight: 500;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: var(--gray);
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

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

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.form-row input,
.form-row select {
    flex: 1;
    min-width: 0;
}

input,
textarea,
select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    color: var(--gray);
    height: auto;
    min-height: 48px;
}

select option {
    background-color: #1a1a1a;
    color: var(--white);
}

select:valid {
    color: var(--white);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background-color: rgba(255, 255, 255, 0.08);
}

textarea {
    resize: none;
    height: 90px;
}

form button {
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

form button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .page {
        padding: 20px 16px;
    }

    /* Sidebar becomes bottom bar on mobile */
    .sidebar-nav {
        position: fixed;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%) translateY(0);
        flex-direction: row;
        border-radius: 50px;
        padding: 8px;
        gap: 4px;
    }

    .sidebar-nav a {
        width: 40px;
        height: 40px;
    }

    .sidebar-nav a svg {
        width: 18px;
        height: 18px;
    }

    .sidebar-nav a .nav-tooltip {
        display: none;
    }

    h1 {
        font-size: clamp(28px, 10vw, 40px);
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 13px;
        padding: 0 16px;
    }

    .hero {
        gap: 16px;
        padding: 20px 0;
    }

    .mobile-logo {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        text-align: center;
        padding: 12px 24px;
    }

    footer {
        gap: 16px;
    }

    .email {
        font-size: 12px;
    }

    .socials {
        gap: 16px;
    }

    .socials svg {
        width: 16px;
        height: 16px;
    }

    .modal-box {
        padding: 24px 20px;
        margin: 16px;
    }

    .modal-box h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .modal-box p {
        font-size: 13px;
    }

    .form-row {
        flex-direction: column;
    }

    input,
    textarea,
    select {
        padding: 12px 14px;
        font-size: 14px;
    }

    form button {
        padding: 12px;
    }
}

/* =========================================
   3D ARTIST ROSTER (NEW)
========================================= */
.artists-page {
    padding: 0;
}

.marquee-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.marquee-visual {
    width: 125%;
    margin-left: -12.5%;
    transform: rotate(2deg) rotateY(5deg) rotateX(5deg);
    transform-style: preserve-3d;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    transform-style: preserve-3d;
    padding: 0;
    transform: translateX(0);
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.marquee-track.loaded {
    opacity: 1;
}

.artist-card {
    margin-right: 40px;
    width: 300px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
    filter: grayscale(100%) contrast(120%);
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artist-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-socials {
    display: flex;
    gap: 16px;
}

.artist-socials a {
    color: var(--gray);
    transition: color 0.3s;
}

.artist-socials svg {
    width: 24px !important;
    height: 24px !important;
}

.artist-socials a:hover {
    color: var(--white);
}

.artist-card:hover {
    transform: scale(1.1) translateZ(50px) rotateY(-5deg);
    z-index: 100 !important;
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.artist-card:hover img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.1);
}

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

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile responsive for marquee */
@media (max-width: 768px) {
    .marquee-visual {
        width: 130%;
        margin-left: 10%;
        padding-left: 0;
        transform: rotate(2deg) rotateY(5deg) rotateX(5deg);
        justify-content: flex-start;
    }

    .nav-logo {
        display: none !important;
    }

    .artist-card {
        width: 200px;
        height: 300px;
    }

    .songs-section {
        width: calc(100% + 32px) !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
    }
}

/* Songs Section */
.songs-section {
    padding: 60px 0;
    width: calc(100% + 96px);
    margin-left: -48px;
    margin-right: -48px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
    letter-spacing: 4px;
}

/* Navigation Logo */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 40px;
}

.nav-logo {
    position: absolute;
    left: 0;
    height: 100px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Viral Text Color — now white */
.viral-text {
    color: var(--white);
    font-weight: 600;
}

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

.songs-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: songsScroll 25s linear infinite;
    padding-left: 0;
    margin: 0 auto;
}

@keyframes songsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 2 - 24px * 2));
    }
}

/* Pause on hover */
.songs-track:hover {
    animation-play-state: paused;
}

.song-item {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: default;
}

.song-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.song-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
    gap: 12px;
}

.song-item:hover .song-cover {
    transform: scale(1.1);
}

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

.song-overlay h4 {
    color: var(--white);
    font-size: 18px;
    margin: 0;
}

.song-overlay p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.song-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.song-links a {
    color: var(--gray);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.song-links a:hover {
    color: var(--black);
    background: var(--white);
    transform: scale(1.1);
}

.song-links svg {
    width: 18px;
    height: 18px;
}

/* Mobile responsive for marquee */
@media (max-width: 768px) {
    .marquee-visual {
        width: 150%;
        transform: rotate(-5deg) translateX(-15%);
    }

    .artist-card {
        width: 200px;
        height: 300px;
    }
}

/* Distribution Page Glass Design */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: -1;
    overflow: hidden;
}

.glass-page {
    background: transparent;
    color: #fff;
    font-family: 'Sora', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Glass Header */
.glass-header {
    padding: 20px 0;
    background: transparent;
    border-bottom: none;
}

.glass-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px 80px 20px;
}

.glass-container footer {
    flex-shrink: 0;
    margin-top: auto;
}

/* Hero Glass Card */
.hero-glass {
    perspective: 1000px;
    padding: 40px;
}

.tilt-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.card-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Glass Button */
.glass-btn {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Feature Glass Cards */
.features-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.feature-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.4s ease;
    cursor: default;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 8px;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover .card-icon {
    background: #fff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Partners Pill */
.partners-pill-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.glass-pill {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 40px;
    width: 90%;
    max-width: 800px;
    overflow: hidden;
}

.pill-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    align-items: center;
}

.pill-track img {
    height: 24px;
    opacity: 0.7;
    filter: invert(1);
}

/* Glass Modal */
.glass-modal {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.glass-box {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: #fff;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-box h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.glass-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 12px;
}

.glass-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    font-weight: 700;
    margin-top: 12px;
    cursor: pointer;
}

/* Brand Colors for Social Icons */
.socials a[aria-label="Spotify"]:hover {
    color: #1DB954;
    text-shadow: 0 0 15px rgba(29, 185, 84, 0.4);
}

.socials a[aria-label="Youtube"]:hover {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.socials a[aria-label="Instagram"]:hover {
    color: #E1306C;
}

.socials a[aria-label="X"]:hover {
    color: #fff;
}

/* Marquee Logos */
.pill-track img[alt="Spotify"] {
    filter: brightness(0) saturate(100%) invert(55%) sepia(82%) saturate(468%) hue-rotate(87deg) brightness(100%) contrast(88%);
    opacity: 0.8;
}

.pill-track img[alt="YouTube Music"] {
    filter: none;
    opacity: 1;
}

.pill-track img[alt="Apple Music"] {
    filter: none;
    opacity: 1;
}

.pill-track img[alt="SoundOn"] {
    filter: none;
    opacity: 1;
    height: 15px;
}

.pill-track img[alt="Purple Crunch"] {
    height: 35px;
    opacity: 1;
}

/* Textarea for Demo Form */
.glass-box textarea.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
    resize: vertical;
    min-height: 80px;
}

/* =========================================
   ABOUT PAGE (NEW STYLES)
========================================= */
.about-page {
    overflow: hidden;
    /* Removed flex centering properties that were breaking the footer placement */
}

.about-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    flex: 1;
    /* Take up remaining vertical space pushing footer down */
    margin: 0 auto;
    /* Horizontal center */
    padding-left: 80px;
    /* Offset for sidebar visual balance */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-main-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 80px var(--brand-glow));
    animation: float 6s ease-in-out infinite;
}

.about-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.about-tagline {
    color: var(--gray);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-family: inherit;
}

.about-text-body p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 1);
}

.about-text-body p:last-child {
    color: var(--white);
    font-style: italic;
    border-left: 3px solid var(--brand-mix);
    padding-left: 15px;
    box-shadow: -10px 0 20px -10px var(--brand-glow);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        margin-left: 0;
        text-align: center;
        gap: 30px;
        padding-bottom: 100px;
        /* space for mobile footer */
    }

    .about-main-logo {
        max-width: 250px;
    }

    .about-text-body p:last-child {
        border-left: none;
        padding-left: 0;
        box-shadow: none;
        color: var(--brand-mix);
        filter: brightness(2);
    }
}

/* =========================================
   3D ARTIST ROSTER (NEW STYLES)
========================================= */
.artist-roster-3d {
    position: fixed;
    top: 0;
    left: 0;
    /* Cover entire screen so cards can slide out gracefully */
    width: 100vw;
    height: 100vh;
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    z-index: 50;
    /* Above background, below sidebar */
}

.roster-card {
    position: absolute;
    width: 350px;
    height: 480px;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    cursor: pointer;
    transform-origin: center center;
}

.roster-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--gray-medium);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    /* Monochrome aesthetic */
    transition: filter 0.5s ease, transform 0.8s ease;
}

.roster-card:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover for interactivity */
    filter: grayscale(0%) contrast(1);
    /* Restore color */
}

.roster-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.roster-card h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.roster-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    /* Allow clicking */
}

.roster-socials a {
    color: var(--gray);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.roster-socials a:hover {
    color: var(--white);
    background: var(--brand-mix);
    box-shadow: 0 0 20px var(--brand-glow);
    transform: scale(1.1);
}

.roster-card:hover h3 {
    transform: translateY(0);
}

.roster-card:hover .roster-socials {
    opacity: 1;
    transform: translateY(0);
}

.artists-page footer {
    position: fixed;
    bottom: 0;
    left: 80px;
    width: calc(100vw - 80px);
    /* Adjusting viewport reference */
    margin: 0;
    padding: 20px 80px;
    /* Force padding inward more to prevent cut off */
    border-top: none;
    z-index: 150;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    /* Fix alignment */
    justify-content: space-between;
    /* Push items to edges */
    align-items: center;
    box-sizing: border-box;
    /* Crucial for preventing width overflow */
}

@media (max-width: 768px) {
    .artist-roster-3d {
        left: 0;
        width: 100vw;
        height: calc(100vh - 60px);
        /* Leave space for bottom nav */
    }

    .roster-card {
        width: 280px;
        height: 400px;
    }

    .artists-page footer {
        left: 0;
        width: 100vw;
        bottom: 60px;
        /* Above the mobile nav */
        padding: 10px 20px;
    }
}

/* Page Title Animations */
.title-anim {
    opacity: 0;
    transform: translateY(-30px);
    animation: dropIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.subtitle-anim {
    opacity: 0;
    transform: translateY(-20px);
    animation: dropIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Artists Page Specifics */
.artists-logo {
    position: fixed;
    top: 40px;
    left: 120px;
    z-index: 200;
    transition: transform 0.3s ease;
}

.artists-logo img {
    width: 80px;
    height: auto;
}

.roster-header {
    position: fixed;
    top: 40px;
    left: 80px;
    width: calc(100vw - 80px);
    text-align: center;
    z-index: 100;
    pointer-events: none;
}

.roster-header h1 {
    margin: 0;
    color: white;
    font-size: 4rem;
}

.roster-header p {
    margin: 5px 0 0;
    color: #888;
    font-size: 1rem;
    letter-spacing: 4px;
}

/* Scroll Hint */
.scroll-hint {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    z-index: 100;
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
    animation: hintFloat 3s ease-in-out infinite;
}

.scroll-hint i {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.scroll-hint.fade-out {
    opacity: 0;
    transform: translate(-50%, 20px);
}

@keyframes hintFloat {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Artists Roster Mobile Nav */
.roster-nav-mobile {
    display: none;
    position: fixed;
    bottom: 180px;
    left: 0;
    width: 100%;
    justify-content: center;
    gap: 30px;
    z-index: 200;
}



.roster-nav-mobile button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.roster-nav-mobile button:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-mix);
    box-shadow: 0 0 20px var(--brand-glow);
}

.artists-logo:hover {
    transform: scale(1.1) !important;
}



/* =========================================
   MOBILE OPTIMIZATION (UNIFIED)
========================================= */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
        /* Space for bottom nav */
    }

    /* Transform Sidebar to Bottom Bar */
    .sidebar-nav {
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        height: 70px;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        /* Center icons vertically */
        padding: 0 5%;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }


    .sidebar-nav a {
        width: 60px;
        height: 60px;
    }

    .sidebar-nav .nav-indicator {
        width: 50px !important;
        height: 50px !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        position: absolute !important;
        z-index: 0;
        pointer-events: none;
    }



    /* Hide Tooltips on Mobile */
    .sidebar-nav a .nav-tooltip {
        display: none !important;
    }

    /* Page Padding Adjustments */
    .page {
        padding: 60px 20px 40px;
    }

    /* Cinematic Hero Mobile */
    .cinematic-hero h1 {
        font-size: clamp(48px, 15vw, 72px);
        letter-spacing: 4px;
    }

    .cinematic-hero .tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    /* About Page Mobile Fixes */
    .about-container {
        padding: 40px 20px 120px;
        gap: 30px;
        text-align: center;
        width: 100%;
        min-height: calc(100vh - 70px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }


    .about-content-section {
        align-items: center;
    }

    .about-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
        margin-bottom: 10px;
    }

    .about-tagline {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .about-text-body p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .about-main-logo {
        width: 100px;
        margin-bottom: 10px;
    }

    /* Artists Mobile Specifics */
    .roster-nav-mobile {
        display: flex;
    }

    .artists-logo {
        top: 20px;
        left: 20px;
    }

    .artists-logo img {
        width: 50px;
    }

    .roster-header {
        top: 80px;
        left: 0;
        width: 100vw;
    }

    .roster-header h1 {
        font-size: 2.5rem;
    }

    .roster-header p {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .scroll-hint {
        display: none !important;
    }
}