/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #151515;
    --color-text: #ffffff;
    --color-text-muted: #cccccc;
    
    /* Accent Colors - Fire Theme */
    --color-orange: #ff6600;
    --color-red: #ff1744;
    --color-blue: #00d9ff;
    --color-yellow: #ffd600;
    
    /* Typography - Display Fonts */
    --font-hero: 'Russo One', sans-serif;
    --font-stencil: 'Black Ops One', sans-serif;
    --font-marker: 'Permanent Marker', cursive;
    --font-mono: 'Rubik Mono One', sans-serif;
    
    /* Typography - Body Fonts */
    --font-condensed: 'Oswald', sans-serif;
    --font-heavy: 'Archivo Black', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    /* Typography - Special Fonts */
    --font-retro: 'Righteous', cursive;
    --font-thin: 'Saira Condensed', sans-serif;
    --font-graffiti: 'Archivo Black', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Container */
    --container-max: 1200px;
    --container-wide: 1400px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

strong {
    font-weight: 700;
    color: var(--color-orange);
}

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.geo-shape {
    position: absolute;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

/* Круг - верхний левый угол */
.geo-circle {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: var(--color-orange);
    border-radius: 50%;
    animation-delay: 0s;
}

/* Треугольник - верхний правый угол */
.geo-triangle {
    top: 15%;
    right: 8%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--color-blue);
    animation-delay: 1s;
}

/* Квадрат - слева по центру */
.geo-square {
    top: 40%;
    left: 3%;
    width: 60px;
    height: 60px;
    background: var(--color-red);
    transform: rotate(45deg);
    animation-delay: 2s;
}

/* Шестиугольник - справа */
.geo-hexagon {
    top: 35%;
    right: 5%;
    width: 70px;
    height: 40px;
    background: var(--color-yellow);
    position: relative;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    display: flex;
    gap: clamp(0.5rem, 2vw, 2rem);
    justify-content: center;
}

.hero-title .letter {
    display: inline-block;
    animation: glow 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.hero-title .letter:nth-child(1) { 
    --i: 0;
    color: var(--color-yellow);
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
}
.hero-title .letter:nth-child(2) { 
    --i: 1;
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}
.hero-title .letter:nth-child(3) { 
    --i: 2;
    color: var(--color-red);
    text-shadow: 0 0 30px rgba(255, 23, 68, 0.5);
}
.hero-title .letter:nth-child(4) { 
    --i: 3;
    color: var(--color-blue);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.hero-genres {
    font-family: var(--font-stencil);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-blue);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    margin-bottom: var(--spacing-md);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    font-weight: 300;
}

.hero-stats {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    z-index: 2;
}

.hero-stats-left {
    left: var(--spacing-md);
    align-items: flex-start;
}

.hero-stats-right {
    right: var(--spacing-md);
    align-items: flex-end;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: inherit;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-condensed);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-weight: 300;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 150px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-secondary);
}

.about .container-wide {
    max-width: 1600px;
}

.section-title {
    font-family: var(--font-graffiti);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-title .highlight {
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.about-text {
    font-family: var(--font-body);
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    text-align: center;
}

.about-text p {
    margin-bottom: var(--spacing-md);
}

/* Creative Timeline */
.creative-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.timeline-stage {
    position: relative;
    padding: var(--spacing-lg);
    background: rgba(255, 102, 0, 0.03);
    border: 2px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-stage:nth-child(1) {
    border-color: var(--color-yellow);
    background: rgba(255, 214, 0, 0.05);
}

.timeline-stage:nth-child(2) {
    border-color: var(--color-orange);
    background: rgba(255, 102, 0, 0.05);
}

.timeline-stage:nth-child(3) {
    border-color: var(--color-red);
    background: rgba(255, 23, 68, 0.05);
}

.timeline-stage:hover {
    transform: translateY(-5px);
}

.timeline-stage:nth-child(1):hover {
    box-shadow: 0 10px 40px rgba(255, 214, 0, 0.2);
}

.timeline-stage:nth-child(2):hover {
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
}

.timeline-stage:nth-child(3):hover {
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.3);
}

.stage-years {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.timeline-stage:nth-child(1) .stage-years {
    color: var(--color-yellow);
    text-shadow: 0 0 20px rgba(255, 214, 0, 0.4);
}

.timeline-stage:nth-child(2) .stage-years {
    color: var(--color-orange);
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.timeline-stage:nth-child(3) .stage-years {
    color: var(--color-red);
    text-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
}

.stage-title {
    font-family: var(--font-hero);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.stage-content {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-muted);
}

.stage-content p {
    margin: 0;
}

.stage-content strong {
    color: var(--color-orange);
    font-weight: 700;
}

/* ===================================
   STYLE SECTION
   =================================== */
.style {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg);
}

.section-title-xl {
    font-family: var(--font-graffiti);
    font-size: clamp(5rem, 12vw, 10rem);
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-yellow);
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
}

.style-description {
    text-align: center;
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--color-text-muted);
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.style-card {
    padding: var(--spacing-lg);
    background: rgba(255, 102, 0, 0.05);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}

.style-card:nth-child(1) {
    background: rgba(255, 102, 0, 0.05);
    border-color: var(--color-orange);
}

.style-card:nth-child(2) {
    background: rgba(0, 217, 255, 0.05);
    border-color: var(--color-blue);
}

.style-card:nth-child(3) {
    background: rgba(255, 23, 68, 0.05);
    border-color: var(--color-red);
}

.style-card:hover {
    transform: translateY(-5px);
}

.style-card:nth-child(1):hover {
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.3);
}

.style-card:nth-child(2):hover {
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.style-card:nth-child(3):hover {
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.3);
}

.style-genre {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.style-card:nth-child(1) .style-genre {
    color: var(--color-orange);
}

.style-card:nth-child(2) .style-genre {
    color: var(--color-blue);
}

.style-card:nth-child(3) .style-genre {
    color: var(--color-red);
}

.style-card p {
    font-family: var(--font-thin);
    font-weight: 400;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===================================
   SCROLLING BANNER
   =================================== */
.scrolling-banner {
    width: 100%;
    background: var(--color-orange);
    padding: var(--spacing-md) 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

.scrolling-banner-track {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    white-space: nowrap;
    animation: scroll-banner 30s linear infinite;
}

@keyframes scroll-banner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.banner-text {
    font-family: var(--font-graffiti);
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.15em;
    color: var(--color-bg);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.2);
    font-weight: 900;
    text-transform: uppercase;
}

.banner-separator {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--color-bg);
    opacity: 0.6;
    animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ===================================
   TRACKS SECTION
   =================================== */
.tracks {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: #0d0505;
}

.tracks-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.tracks .container {
    position: relative;
    z-index: 1;
}

/* Tracks Section Shapes */
.geo-circle-tracks-1 {
    top: 15%;
    left: 5%;
    width: 70px;
    height: 70px;
    background: var(--color-orange);
    border-radius: 50%;
    animation-delay: 0.5s;
}

.geo-triangle-tracks-1 {
    top: 50%;
    right: 8%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--color-blue);
    animation-delay: 1.5s;
}

.geo-square-tracks-1 {
    top: 70%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--color-red);
    transform: rotate(25deg);
    animation-delay: 2s;
}

.geo-hexagon-tracks-1 {
    top: 30%;
    right: 12%;
    width: 65px;
    height: 37px;
    background: var(--color-yellow);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation-delay: 2.5s;
}

.geo-circle-tracks-2 {
    bottom: 10%;
    right: 5%;
    width: 55px;
    height: 55px;
    background: var(--color-blue);
    border-radius: 50%;
    animation-delay: 3s;
}

.geo-diamond-tracks {
    bottom: 20%;
    left: 15%;
    width: 50px;
    height: 50px;
    background: var(--color-orange);
    transform: rotate(45deg);
    animation-delay: 3.5s;
}


.tracks-list {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.track-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
}

.track-item:hover {
    padding-left: var(--spacing-sm);
    border-bottom-color: var(--color-orange);
}

.track-number {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-orange);
    opacity: 0.5;
    min-width: 80px;
}

.track-info {
    flex: 1;
}

.track-name {
    font-family: var(--font-heavy);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.track-feat {
    font-family: var(--font-condensed);
    font-weight: 300;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-blue);
}

.collaborations {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(255, 102, 0, 0.05);
    border-left: 4px solid var(--color-orange);
}

.collaborations p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
}

.collaborations strong {
    color: var(--color-orange);
}

/* ===================================
   ALBUMS SECTION
   =================================== */
.albums {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg);
}

.albums .section-title-xl {
    font-family: var(--font-hero);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.album-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.album-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 102, 0, 0.05);
    border: 3px solid var(--color-orange);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-wrapper:nth-child(1) .album-card {
    border-color: var(--color-orange);
    background: rgba(255, 102, 0, 0.05);
}

.album-wrapper:nth-child(2) .album-card {
    border-color: var(--color-blue);
    background: rgba(0, 217, 255, 0.05);
}

.album-wrapper:nth-child(3) .album-card {
    border-color: var(--color-red);
    background: rgba(255, 23, 68, 0.05);
}

.album-card:hover {
    transform: scale(1.05);
}

.album-wrapper:nth-child(1) .album-card:hover {
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.4);
}

.album-wrapper:nth-child(2) .album-card:hover {
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.album-wrapper:nth-child(3) .album-card:hover {
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.4);
}

.album-number {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    font-family: var(--font-thin);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-yellow);
    opacity: 0.8;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-title {
    font-family: var(--font-retro);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.album-wrapper:nth-child(1) .album-title {
    color: var(--color-orange);
}

.album-wrapper:nth-child(2) .album-title {
    color: var(--color-blue);
}

.album-wrapper:nth-child(3) .album-title {
    color: var(--color-red);
}

/* ===================================
   ENERGY SECTION
   =================================== */
.energy {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: #0f0505;
    overflow: hidden;
}

.energy-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.energy .container {
    position: relative;
    z-index: 1;
}

/* Energy Section Shapes */
.geo-circle-energy-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--color-red);
    border-radius: 50%;
    animation-delay: 0.8s;
}

.geo-square-energy-1 {
    top: 60%;
    left: 8%;
    width: 65px;
    height: 65px;
    background: var(--color-yellow);
    transform: rotate(35deg);
    animation-delay: 1.2s;
}

.geo-triangle-energy-1 {
    top: 15%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 95px solid var(--color-orange);
    animation-delay: 1.8s;
}

.geo-hexagon-energy-1 {
    top: 50%;
    right: 8%;
    width: 75px;
    height: 43px;
    background: var(--color-blue);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    animation-delay: 2.2s;
}

.geo-pentagon-energy {
    bottom: 15%;
    left: 15%;
    width: 70px;
    height: 66px;
    background: var(--color-red);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-delay: 2.8s;
}

.geo-diamond-energy {
    bottom: 20%;
    right: 12%;
    width: 60px;
    height: 60px;
    background: var(--color-orange);
    transform: rotate(25deg);
    animation-delay: 3.2s;
}

.energy-content {
    text-align: center;
}

.energy-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.energy-word {
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.energy-word.large {
    font-family: var(--font-graffiti);
    font-size: clamp(4rem, 10vw, 8rem);
}

.energy-word.large:nth-child(1) {
    color: var(--color-orange);
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.5);
}

.energy-word.large:nth-child(3) {
    color: var(--color-red);
    text-shadow: 0 0 40px rgba(255, 23, 68, 0.5);
}

.energy-word.medium {
    font-family: var(--font-graffiti);
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.energy-word.medium:nth-child(2) {
    color: var(--color-blue);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.energy-word.medium:nth-child(4) {
    color: var(--color-yellow);
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
    border-top: 2px solid rgba(255, 102, 0, 0.3);
    text-align: center;
}

.footer p {
    font-family: var(--font-body);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.footer-credit {
    font-family: var(--font-thin);
    font-weight: 100;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-title {
        flex-direction: column;
        gap: 0;
    }
    
    .geo-shape {
        opacity: 0.08;
    }
    
    .geo-circle { 
        width: 40px; 
        height: 40px; 
    }
    
    .geo-square { 
        width: 35px; 
        height: 35px; 
    }
    
    /* Tracks section shapes - mobile */
    .geo-circle-tracks-1 {
        width: 45px;
        height: 45px;
    }
    
    .geo-square-tracks-1 {
        width: 40px;
        height: 40px;
    }
    
    .geo-triangle-tracks-1 {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 52px solid var(--color-blue);
    }
    
    .geo-hexagon-tracks-1 {
        width: 42px;
        height: 24px;
    }
    
    .geo-circle-tracks-2 {
        width: 38px;
        height: 38px;
    }
    
    .geo-diamond-tracks {
        width: 35px;
        height: 35px;
    }
    
    /* Energy section shapes - mobile */
    .geo-circle-energy-1 {
        width: 50px;
        height: 50px;
    }
    
    .geo-square-energy-1 {
        width: 42px;
        height: 42px;
    }
    
    .geo-triangle-energy-1 {
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 60px solid var(--color-orange);
    }
    
    .geo-hexagon-energy-1 {
        width: 48px;
        height: 28px;
    }
    
    .geo-pentagon-energy {
        width: 45px;
        height: 42px;
    }
    
    .geo-diamond-energy {
        width: 40px;
        height: 40px;
    }
    
    .creative-timeline {
        grid-template-columns: 1fr;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
    
    .track-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .track-number {
        min-width: auto;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-genres {
        letter-spacing: 0.2em;
    }
    
    .energy-text {
        gap: var(--spacing-sm);
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--color-orange);
    outline-offset: 4px;
}

/* ===================================
   ALBUM PAGES STYLES
   =================================== */

/* Album Navigation */
.album-nav {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 10;
}

.back-link {
    font-family: var(--font-condensed);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.1em;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid var(--color-orange);
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link:hover {
    background: var(--color-orange);
    color: var(--color-bg);
    transform: translateX(-5px);
}

/* Album Hero Styles */
.album-hero {
    min-height: 100vh;
}

.album-cover-hero {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    margin: 0 auto var(--spacing-lg);
    border: 4px solid var(--color-orange);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.album-cover-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.5);
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-hero-title {
    font-family: var(--font-hero);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    text-align: center;
    color: var(--color-orange);
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.5);
    line-height: 1.1;
}

.album-hero-subtitle {
    font-family: var(--font-thin);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--color-text-muted);
    text-align: center;
}

/* Album Link Styles */
.album-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.album-link:hover {
    transform: translateY(-10px);
}

/* Disc Title Styles */
.disc-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.disc-title-hot {
    color: var(--color-yellow);
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
}

.disc-title-brut {
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.disc-title-sad {
    color: var(--color-blue);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* ===================================
   ROCK ALBUM VARIANT (Blue)
   =================================== */
.album-hero-rock .album-cover-hero {
    border-color: var(--color-blue);
}

.album-hero-rock .album-cover-hero:hover {
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.5);
}

.album-hero-title-rock {
    color: var(--color-blue);
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
}

.album-hero-subtitle-rock {
    color: var(--color-blue);
    opacity: 0.8;
}

.about-rock {
    background: rgba(0, 217, 255, 0.03);
}

.highlight-rock {
    color: var(--color-blue);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.timeline-stage-rock-1 {
    border-color: var(--color-blue);
    background: rgba(0, 217, 255, 0.05);
}

.timeline-stage-rock-2 {
    border-color: var(--color-blue);
    background: rgba(0, 217, 255, 0.08);
}

.timeline-stage-rock-3 {
    border-color: var(--color-blue);
    background: rgba(0, 217, 255, 0.05);
}

.timeline-stage-rock-1:hover,
.timeline-stage-rock-2:hover,
.timeline-stage-rock-3:hover {
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.stage-years-rock {
    color: var(--color-blue);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.scrolling-banner-rock {
    background: var(--color-blue);
}

.tracks-rock {
    background: rgba(0, 217, 255, 0.02);
}

.track-item-rock:hover {
    border-bottom-color: var(--color-blue);
}

.track-number-rock {
    color: var(--color-blue);
}

.track-feat-rock {
    color: var(--color-blue);
}

.energy-rock {
    background: rgba(0, 217, 255, 0.03);
}

.energy-word-rock-1 {
    color: var(--color-blue);
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
}

.energy-word-rock-2 {
    color: var(--color-yellow);
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
}

.energy-word-rock-3 {
    color: var(--color-blue);
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
}

.energy-word-rock-4 {
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.section-title-xl-rock {
    color: var(--color-blue);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* ===================================
   NAME ALBUM VARIANT (Red)
   =================================== */
.album-hero-name .album-cover-hero {
    border-color: var(--color-red);
}

.album-hero-name .album-cover-hero:hover {
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.5);
}

.album-hero-title-name {
    color: var(--color-red);
    text-shadow: 0 0 40px rgba(255, 23, 68, 0.5);
}

.album-hero-subtitle-name {
    color: var(--color-red);
    opacity: 0.8;
}

.about-name {
    background: rgba(255, 23, 68, 0.03);
}

.highlight-name {
    color: var(--color-red);
    text-shadow: 0 0 30px rgba(255, 23, 68, 0.5);
}

.timeline-stage-name-1 {
    border-color: var(--color-red);
    background: rgba(255, 23, 68, 0.05);
}

.timeline-stage-name-2 {
    border-color: var(--color-red);
    background: rgba(255, 23, 68, 0.08);
}

.timeline-stage-name-3 {
    border-color: var(--color-red);
    background: rgba(255, 23, 68, 0.05);
}

.timeline-stage-name-1:hover,
.timeline-stage-name-2:hover,
.timeline-stage-name-3:hover {
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.3);
}

.stage-years-name {
    color: var(--color-red);
    text-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
}

.scrolling-banner-name {
    background: var(--color-red);
}

.tracks-name {
    background: rgba(255, 23, 68, 0.02);
}

.track-item-name:hover {
    border-bottom-color: var(--color-red);
}

.track-number-name {
    color: var(--color-red);
}

.track-feat-name {
    color: var(--color-red);
}

.energy-name {
    background: rgba(255, 23, 68, 0.03);
}

.energy-word-name-1 {
    color: var(--color-red);
    text-shadow: 0 0 40px rgba(255, 23, 68, 0.5);
}

.energy-word-name-2 {
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.energy-word-name-3 {
    color: var(--color-red);
    text-shadow: 0 0 40px rgba(255, 23, 68, 0.5);
}

.energy-word-name-4 {
    color: var(--color-yellow);
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.5);
}

.section-title-xl-name {
    color: var(--color-red);
    text-shadow: 0 0 30px rgba(255, 23, 68, 0.5);
}

/* Albums Navigation Section */
.albums-navigation {
    padding: var(--spacing-xl) 0;
}

.albums-navigation .albums-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
}

/* ===================================
   RESPONSIVE - ALBUM PAGES
   =================================== */
@media (max-width: 768px) {
    .album-nav {
        top: var(--spacing-sm);
        left: var(--spacing-sm);
    }
    
    .back-link {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .album-cover-hero {
        width: clamp(150px, 50vw, 250px);
        height: clamp(150px, 50vw, 250px);
    }
    
    .album-hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }
    
    .disc-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .album-cover-hero {
        width: 200px;
        height: 200px;
        margin-bottom: var(--spacing-md);
    }
    
    .back-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}
