/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #001F3F;
    --primary-dark: #001020;
    --accent-gold: #FFD700;
    --accent-orange: #FF6B35;
    --accent-pink: #EC4899;
    --accent-purple: #A855F7;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-muted: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   PARTICLE CANVAS BACKGROUND
   ============================================ */

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(180deg, rgba(0, 31, 63, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.logo-text {
    color: var(--text-white);
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION - HORIZONTAL LINEAR LAYOUT
   ============================================ */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    background: 
        url('media/bg img.png') center/cover no-repeat,
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
}

.hero-linear {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Album Art Section */
.hero-album {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 400px;
}

.album-wrapper {
    display: flex;
    justify-content: center;
}

.album-art-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.album-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
}

.album-art {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-medium);
}

.album-art:hover {
    transform: scale(1.05);
}

.album-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    animation: ringPulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Song Info - Under Album Art */
.song-info {
    text-align: center;
    width: 100%;
}

.artist-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.song-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    max-width: 400px;
    margin: 0 auto;
}

/* Stream Section - Right Column */
.hero-stream {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.stream-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stream-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stream-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stream-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stream-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.platform-link svg {
    width: 40px;
    height: 40px;
    transition: transform var(--transition-fast);
}

.platform-link:hover svg {
    transform: scale(1.1);
}

.platform-link span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white);
    text-align: center;
}

.platform-link.spotify svg { color: #1DB954; }
.platform-link.apple-music svg { color: #FA243C; }
.platform-link.youtube-music svg { color: #FF0000; }
.platform-link.amazon-music svg { color: #00A8E1; }
.platform-link.tidal svg { color: #000000; }
.platform-link.soundcloud svg { color: #FF5500; }

.main-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.main-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.main-play-btn svg {
    width: 32px;
    height: 32px;
    color: var(--primary-bg);
}

.main-play-btn .pause-icon {
    display: none;
}

.main-play-btn.playing .play-icon {
    display: none;
}

.main-play-btn.playing .pause-icon {
    display: block;
}

.player-info {
    margin-bottom: 1.5rem;
}

.track-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.track-artist {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-wrapper {
    margin-bottom: 1.5rem;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    width: 100%;
    animation: progressGlow 2s ease-in-out infinite;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Realistic Waveform */
.waveform-container {
    height: 80px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

#waveformCanvas {
    width: 100%;
    height: 100%;
}

/* Lyrics Section */
.hero-lyrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.lyrics-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lyrics-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
}

.lyrics-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.lyrics-container {
    flex: 1;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.lyrics-container::-webkit-scrollbar {
    width: 4px;
}

.lyrics-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.lyrics-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 2px;
}

.lyric-line {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: 0.75rem 0;
    transition: all var(--transition-medium);
    opacity: 0.5;
    transform: translateX(0);
}

.lyric-line.active {
    color: var(--text-white);
    opacity: 1;
    transform: translateX(10px);
    font-weight: 600;
}

.lyric-line.chorus {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.lyric-line.chorus.active {
    color: var(--accent-gold);
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.lyric-line.outro {
    font-style: italic;
    font-size: 1.5rem;
}

/* Quick Actions Section */
.hero-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 200px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.action-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(-5px);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-bg);
}

.action-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stats-card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CATALOG SECTION
   ============================================ */

.catalog-section {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 16, 32, 0.5) 100%);
}

.catalog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.catalog-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
}

.title-text {
    display: inline;
    color: var(--text-white);
}

.title-accent {
    display: inline;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.catalog-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.song-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.song-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.card-image {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 31, 63, 0.8) 100%);
    z-index: 1;
}

.card-art {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-medium);
}

.song-card:hover .card-art {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.song-card:hover .card-overlay {
    opacity: 1;
}

.card-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.card-play-btn:hover {
    transform: scale(1.1);
}

.card-play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--primary-bg);
}

.card-info {
    padding: 0.75rem 1rem 0.75rem 0;
    flex: 1;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}

.card-artist {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.catalog-footer {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-white);
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-bg);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */

.platforms-section {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
    text-align: center;
}

.platforms-container {
    max-width: 800px;
    margin: 0 auto;
}

.platforms-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--text-white);
    margin-bottom: 3rem;
}

.platforms-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.platform-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.platform-item svg {
    width: 24px;
    height: 24px;
}

.platform-item span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-item.spotify:hover {
    background: rgba(29, 185, 84, 0.2);
    border-color: #1DB954;
}

.platform-item.apple:hover {
    background: rgba(250, 36, 60, 0.2);
    border-color: #FA243C;
}

.platform-item.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
}

.platform-item.soundcloud:hover {
    background: rgba(255, 85, 0, 0.2);
    border-color: #FF5500;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    position: relative;
    z-index: 1;
    padding: 6rem 3rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: var(--glass-bg);
    color: var(--text-white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-bg);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.form-message {
    min-height: 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.form-message.success {
    color: #10B981;
}

.form-message.error {
    color: #EF4444;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: var(--primary-dark);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--text-white);
}

.footer-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes rotateAlbum {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes wave {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 40px;
    }
}

@keyframes progressGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .hero-linear {
        gap: 3rem;
    }
    
    .album-art-container {
        width: 350px;
        height: 350px;
    }
    
    .album-glow {
        width: 450px;
        height: 450px;
    }
    
    .album-ring {
        width: 370px;
        height: 370px;
    }
    
    .song-title {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .hero-linear {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-album {
        order: 1;
    }
    
    .hero-stream {
        order: 2;
        width: 100%;
    }
    
    .album-art-container {
        width: 300px;
        height: 300px;
    }
    
    .album-glow {
        width: 400px;
        height: 400px;
    }
    
    .album-ring {
        width: 320px;
        height: 320px;
    }
    
    .song-title {
        font-size: 1.8rem;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stream-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .album-art-container {
        width: 250px;
        height: 250px;
    }
    
    .album-glow {
        width: 320px;
        height: 320px;
    }
    
    .album-ring {
        width: 270px;
        height: 270px;
    }
    
    .song-title {
        font-size: 1.5rem;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-title {
        font-size: 2.5rem;
    }
    
    .stream-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .platform-link {
        padding: 1.25rem 0.75rem;
    }
    
    .platform-link svg {
        width: 32px;
        height: 32px;
    }
    
    .platform-link span {
        font-size: 0.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .nav-logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .platforms-list {
        flex-direction: column;
    }
    
    .platform-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-white: #FFFFFF;
        --text-light: #F0F0F0;
        --text-muted: #D0D0D0;
    }
    
    .song-card,
    .player-wrapper,
    .action-card {
        border-width: 2px;
    }
}
