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

:root {
    --black: #0a0a0a;
    --white: #fff;
    --gray: #888;
    --dark: #151515;
    --accent: #F05D5E;
    --accent-dark: #d94a4b;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

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

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;
}

/* WebGL Container */
#webgl {
    position: fixed;
    inset: 0;
    z-index: 0;
}

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

@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);
    }
}

/* Header */
header {
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    gap: 48px;
}

nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 2px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

/* 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(240, 93, 94, 0.5));
}

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

@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(--white);
    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);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.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: linear-gradient(135deg, #2A2A2A 0%, #4A4A4A 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #3A3A3A 0%, #5A5A5A 100%);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.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;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.email {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

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

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

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

.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(--accent);
    filter: drop-shadow(0 0 8px rgba(240, 93, 94, 0.6));
}

.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(--accent);
    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: var(--accent);
    background-color: rgba(240, 93, 94, 0.05);
}

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

form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    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;
    }

    nav {
        gap: 24px;
    }

    nav a {
        font-size: 12px;
    }

    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;
    }
}

/* =========================================
   Artists Page
   ========================================= */
/* =========================================
   Artists Page
   ========================================= */
.artists-page {
    overflow-x: hidden;
    min-height: 100vh;
}

.marquee-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    overflow: visible;
    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;
    /* gap: 40px; removed to fix loop jump */
    width: max-content;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    transform-style: preserve-3d;
    padding: 0;
    transform: translateX(0);
    opacity: 0;
    /* Hide initially */
    transition: opacity 0.5s ease-in;
}

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

.artist-card {
    margin-right: 40px;
    /* Replaces gap for seamless loop */
    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;
    /* CRITICAL: Prevent squashing */
}

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

/* ... existing styles ... */

.artist-card:hover {
    transform: scale(1.1) translateZ(50px) rotateY(-5deg);
    /* Counter-rotate slightly to face user */
    z-index: 100 !important;
    box-shadow: 0 30px 60px rgba(240, 93, 94, 0.4);
    border: 2px solid var(--accent);
}

.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;
    /* Align with container padding/header padding */
    height: 100px;
    display: flex;
    align-items: center;
}

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

/* Viral Text Color */
.viral-text {
    color: #ff4444;
    /* Light red */
    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));
        /* Updated for 350px width */
    }

    /* Adjust based on new width */
}

/* 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);
    /* Darker overlay for readability */
    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(--white);
    background: var(--accent);
    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;
    }
}



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

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobFloat 10s infinite alternate;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: #4f46e5;
    animation-delay: 0s;
}

.blob-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #7c3aed;
    animation-delay: -2s;
}

.blob-3 {
    bottom: 10%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: #db2777;
    animation-delay: -5s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.glass-page {
    /* Transparent over aurora */
    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;
    /* Added bottom padding to prevent clipping */
}

.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.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    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.1);
    transition: transform 0.1s ease-out;
    /* Smooth tilt */
    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);
    /* Ensure white logos */
}

/* 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 Icons/Logos */
/* Footer Socials */
.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 - Specific Filters */
/* Spotify Green */
.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;
}

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

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

/* SoundOn (Original White) */
.pill-track img[alt="SoundOn"] {
    filter: none;
    opacity: 1;
    height: 15px;
}

/* Purple Crunch (Larger) */
.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;
}

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

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

@media (max-width: 768px) {
    .cinematic-hero h1 {
        font-size: 64px;
    }

    .strip-content {
        gap: 40px;
    }
}
