:root {
    /* Feminine & Premium Color Palette */
    --c-bg: #FAF3F5;
    /* Soft Blush/Off-white */
    --c-surface: #FFFFFF;
    --c-dark: #2D0A1A;
    /* Deep Plum Black */
    --c-dark-secondary: #4A1029;
    --c-accent: #E6007A;
    /* Vibrant Magenta */
    --c-accent-soft: rgba(230, 0, 122, 0.1);
    --c-gold: #D4AF37;
    /* Elegant Gold */
    --c-gold-soft: rgba(212, 175, 55, 0.1);
    --c-border: rgba(45, 10, 26, 0.1);

    /* Fonts */
    --f-display: 'Anton', sans-serif;
    --f-heading: 'Outfit', sans-serif;
    --f-body: 'Inter', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 5rem;
    --space-xl: 10rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--c-bg);
}

body {
    font-family: var(--f-body);
    color: var(--c-dark);
    background-color: var(--c-bg);
    overflow-x: hidden;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-dark);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
}

body:hover .cursor-outline {
    border-color: var(--c-accent);
}

a:hover~.cursor .cursor-outline,
button:hover~.cursor .cursor-outline,
.track-row:hover~.cursor .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--c-accent-soft);
    border-color: transparent;
}

/* Typography Variables */
h1,
h2,
h3,
h4 {
    text-transform: uppercase;
}

.highlight {
    color: var(--c-accent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 1000;
    mix-blend-mode: difference;
    color: white;
}

.nav-brand {
    font-family: var(--f-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    color: var(--c-accent);
    top: 100%;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::before {
    transform: translateY(-100%);
}

.nav-link:hover {
    color: transparent;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100vw;
    padding: 1rem 0;
    position: relative;
    z-index: 0;
}

.marquee-wrapper.top {
    position: absolute;
    top: 120px;
    opacity: 0.05;
    font-family: var(--f-display);
    font-size: 15vw;
    pointer-events: none;
}

.marquee-wrapper.dark-marquee {
    background: var(--c-dark);
    color: var(--c-bg);
    padding: 2.5rem 0;
    font-family: var(--f-heading);
    font-weight: 900;
    font-size: 3.5rem;
    margin: var(--space-xl) 0;
    transform: rotate(-1.5deg);
    width: 100vw;
    box-shadow: 0 10px 40px rgba(45, 10, 26, 0.2);
    border-top: 2px solid var(--c-gold);
    border-bottom: 2px solid var(--c-gold);
    display: block;
    overflow: hidden;
}

.marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee span {
    padding-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-dark);
    color: var(--c-bg);
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--f-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--c-accent);
    box-shadow: 0 10px 30px var(--c-accent-soft);
}

.btn-primary::after {
    background: var(--c-dark);
}

.btn-text,
.btn-icon-wrapper {
    position: relative;
    z-index: 2;
}

.btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp::after {
    background: #1ebe57;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 20vh;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    align-items: center;
}

.headline {
    font-family: var(--f-display);
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.hero-sub {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    color: #444;
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-visuals {
    position: relative;
    height: auto;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    overflow: hidden;
    position: relative;
    background: transparent;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: scale(1.1);
    /* For parallax room */
}

.main-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 5;
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

/* Organic Blob Animation removed as requested */

/* Background Sound Waves */
.bg-waves {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 60%;
    height: 60%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.wave-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--c-accent);
    border-radius: 50%;
    animation: wave-pulse 4s linear infinite;
}

.wave-circle:nth-child(2) {
    animation-delay: 1s;
}

.wave-circle:nth-child(3) {
    animation-delay: 2s;
}

.wave-circle:nth-child(4) {
    animation-delay: 3s;
}

@keyframes wave-pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 1000px;
        height: 1000px;
        opacity: 0;
    }
}

/* Base Reveal Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* About */
.about {
    padding: var(--space-xl) 0;
    background: var(--c-surface);
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.ab-img-1 {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
}

.lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.quote {
    font-family: var(--f-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1.2;
    border-left: 4px solid var(--c-accent);
    padding-left: 2rem;
    margin-top: 3rem;
}

/* Portfolio List Design */
.portfolio {
    padding: var(--space-xl) 0;
}

.portfolio .section-header {
    margin-bottom: var(--space-lg);
}

.tracks-list {
    display: flex;
    flex-direction: column;
}

.track-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--c-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-row:hover {
    padding-left: 3rem;
    background: linear-gradient(90deg, var(--c-accent-soft), transparent);
}

.track-row::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.4s ease;
}

.track-row:hover::before {
    width: 100%;
}

.track-row:hover .btn-play-row {
    color: var(--c-accent);
}

.play-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-play-row {
    font-size: 2rem;
    color: var(--c-dark);
    transition: color 0.3s;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-title {
    font-family: var(--f-display);
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.track-desc {
    color: #666;
    font-size: 1.1rem;
}

.track-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.tag {
    background: rgba(18, 18, 18, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.year {
    font-family: var(--f-heading);
    font-weight: 900;
    color: #999;
}

/* Bars Animation */
.bars {
    position: absolute;
    display: none;
    gap: 2px;
    height: 20px;
}

.track-row.playing .btn-play-row {
    display: none;
}

.track-row.playing .bars {
    display: flex;
}

.bars span {
    width: 3px;
    background: var(--c-accent);
    height: 100%;
    animation: equalize 1s infinite;
}

.bars span:nth-child(2) {
    animation-delay: 0.2s;
}

.bars span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes equalize {

    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 20px;
    }
}

/* Skills / Differentials */
.skills {
    padding: var(--space-xl) 0;
    background: var(--c-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: var(--space-lg);
    position: relative;
    z-index: 2;
}

.skill-card {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.skill-card i {
    font-size: 3rem;
    color: var(--c-accent);
    margin-bottom: 1.5rem;
}

.skill-card h3 {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-card p {
    color: #AAA;
}

.bg-huge-text {
    position: absolute;
    bottom: -10vw;
    left: 0;
    font-family: var(--f-display);
    font-size: 45vw;
    background: linear-gradient(180deg, rgba(230, 0, 122, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -2vw;
}

/* Footer Player */
.global-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--c-border);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.global-player.active {
    transform: translateY(0);
}

.player-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.track-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 30%;
}

.track-details h4 {
    font-family: var(--f-heading);
    font-size: 1.2rem;
}

.track-details p {
    color: #666;
    font-size: 0.9rem;
}

.playing-bars {
    display: flex;
    gap: 3px;
    height: 30px;
    align-items: center;
}

.playing-bars span {
    width: 4px;
    height: 10px;
    background: var(--c-accent);
    animation: equalize 1s infinite;
}

.playing-bars span:nth-child(2) {
    animation-delay: 0.1s;
}

.playing-bars span:nth-child(3) {
    animation-delay: 0.2s;
}

.playing-bars.paused span {
    animation-play-state: paused;
    height: 4px !important;
}

audio {
    flex-grow: 1;
    max-width: 50%;
    height: 40px;
}

#close-player {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--c-dark);
}

/* Footer */
.footer {
    padding: var(--space-xl) 0 2rem;
    background: var(--c-accent);
    color: var(--c-dark);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}

.footer h2 {
    font-family: var(--f-display);
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--c-dark);
}

.footer h2 .highlight {
    color: white;
}

.footer p {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-lg);
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {

    .container,
    .hero-container,
    .grid-container,
    .footer-container {
        padding: 0 8%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 15vh;
    }

    .hero-sub {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-visuals {
        height: 40vh;
        margin-top: 2rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-content {
        order: -1;
    }

    .about-text-block p {
        margin: 0 auto 1.5rem;
        max-width: 600px;
    }

    .quote {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--c-accent);
        padding-top: 2rem;
        margin: 3rem auto 0;
    }

    .ab-img-1 {
        max-height: 400px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .track-row {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .track-title {
        font-size: 1.8rem;
    }

    .track-meta {
        display: none;
    }

    .marquee-wrapper.dark-marquee {
        font-size: 2.2rem;
        margin: var(--space-lg) 0;
    }

    .footer h2 {
        font-size: 4rem;
    }

    .player-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 8%;
    }

    .track-details {
        width: 100%;
        justify-content: center;
    }

    audio {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 3.5rem;
    }

    .hero-visuals {
        height: 35vh;
    }

    .track-title {
        font-size: 1.5rem;
    }

    .marquee-wrapper.dark-marquee {
        font-size: 1.8rem;
    }
}

/* New Dynamic UI Elements */
.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--c-gold);
    color: var(--c-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 10;
    pointer-events: none;
}

.floating-badge i {
    font-size: 1.5rem;
}