:root {
    --primary: #FF7A00;
    --secondary: #FF4D8D;
    --accent: #00AEEF;
    --background: #FFF4E6;
    --text-on-light: #1A1A1A;
    --text-on-dark: #FFFFFF;
    --secondary-text-light: #4B5563;
    --main-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --shadow-soft: 0 10px 25px -5px rgba(255, 122, 0, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font);
    background-color: var(--background);
    color: var(--text-on-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: inherit;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: transform 0.2s ease, filter 0.2s ease;
}

button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    h3 {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
    }

    .mobile-text-sm {
        font-size: 0.875rem;
    }

    .break-long-words {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
    }
}

/* ===== header_section ===== */
#header {
    background-color: var(--background);
    width: 100%;
}

.js-mobile-menu-overlay {
    background-color: var(--background);
    width: 100%;
    height: 100vh;
}

/* ===== hero_section ===== */
#hero {
    width: 100%;
}

.tracking-tight {
    letter-spacing: -0.05em;
}

.leading-none {
    line-height: 1;
}

/* ===== bio_section ===== */
#biography {
    scroll-margin-top: 80px;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== albums_grid ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

#albums h2 {
    font-family: inherit;
}

#albums .group:hover h3 {
    color: var(--primary);
    transition: color 0.3s ease;
}

/* ===== career_timeline ===== */
.custom-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.custom-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-content {
    width: 45%;
    padding: 20px;
}

.timeline-left {
    margin-right: auto;
    text-align: right;
}

.timeline-right {
    margin-left: auto;
    text-align: left;
}

@media (max-width: 768px) {
    .custom-timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
        text-align: left !important;
    }
}

/* ===== popular_tracks ===== */
.section-tracks {
    position: relative;
    overflow: hidden;
}

.js-track-item {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.js-track-item:hover {
    transform: translateY(-5px);
}

/* ===== awards_section ===== */
.js-award-card.opacity-100 {
    opacity: 1;
    transform: translateY(0);
}

/* ===== facts_grid ===== */
#facts .js-fact-card {
    opacity: 0;
    transform: translateY(2.5rem);
}

/* ===== collab_section ===== */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
}

/* ===== interviews_quotes ===== */
#quotes {
    width: 100%;
    position: relative;
    z-index: 10;
}

.js-quote-item {
    transition-property: opacity, transform;
}

/* ===== industry_impact ===== */
#influence {
    width: 100%;
}

.container {
    width: 100%;
}

/* ===== faq_accordion ===== */
#faq {
    width: 100%;
}

.collapse-title::after {
    color: var(--primary) !important;
}

.collapse-title {
    transition: all 0.3s ease;
}

.collapse[open],
.collapse-arrow input:checked~.collapse-title {
    background-color: rgba(255, 122, 0, 0.05);
}