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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #4a9eff;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #404040;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    background-image: url('images/header.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background: rgba(74, 158, 255, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 8px rgba(74, 158, 255, 0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    flex: 1;
}

/* Video Section */
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
    margin-bottom: 4rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.video-wrapper {
    width: 90%;
    max-width: 1600px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Artist Bio Section */
.artist-bio-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.artist-image {
    position: relative;
}

.artist-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1;
    object-fit: cover;
}

.artist-bio-content h2 {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4a9eff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.artist-bio-content p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.artist-bio-content p:last-child {
    margin-bottom: 0;
}

.artist-bio-content a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 2px solid rgba(74, 158, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.artist-bio-content a:hover {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

/* Releases Gallery */
.releases-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #4a9eff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.album-card {
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
    display: block;
}

.album-card:hover {
    transform: translateY(-8px);
}

.album-card-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    background: var(--secondary-color);
    transition: box-shadow 0.3s ease;
}

.album-card:hover .album-card-artwork {
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.4);
}

.album-card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-card-info {
    padding: 0 0.5rem;
}

.album-card-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.album-card-year {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Individual Album Page */
.album-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.album-artwork {
    position: sticky;
    top: 100px;
}

.album-artwork img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--secondary-color);
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.album-title {
    font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.artist-name {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.album-year {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -1rem;
}

.album-bio {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.album-bio a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 2px solid rgba(74, 158, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.album-bio a:hover {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.track-list {
    margin-top: 1rem;
}

.track-list h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.track-list ol {
    list-style: decimal;
    padding-left: 1.5rem;
    line-height: 2;
    color: var(--text-color);
    font-size: 1rem;
}

.track-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-list li:last-child {
    border-bottom: none;
}

.track-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}

.streaming-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
    border-color: var(--accent-color);
}

.platform-link i {
    font-size: 1.5rem;
    min-width: 24px;
    text-align: center;
}

/* Platform-specific colors */
.platform-link.spotify i {
    color: #1DB954;
}

.platform-link.spotify:hover {
    border-color: #1DB954;
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.platform-link.apple i {
    color: #FC3C44;
}

.platform-link.apple:hover {
    border-color: #FC3C44;
    box-shadow: 0 4px 12px rgba(252, 60, 68, 0.3);
}

.platform-link.youtube i {
    color: #FF0000;
}

.platform-link.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.platform-link.tidal i {
    color: #00FFFF;
}

.platform-link.tidal:hover {
    border-color: #00FFFF;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

.platform-link.soundcloud i {
    color: #FF8800;
}

.platform-link.soundcloud:hover {
    border-color: #FF8800;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

.platform-link.amazon-music i,
.platform-link.amazon-buy i {
    color: #FF9900;
}

.platform-link.amazon-music:hover,
.platform-link.amazon-buy:hover {
    border-color: #FF9900;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.platform-link.deezer i {
    color: #FF0092;
}

.platform-link.deezer:hover {
    border-color: #FF0092;
    box-shadow: 0 4px 12px rgba(255, 0, 146, 0.3);
}

.platform-link.bandcamp i {
    color: #629aa9;
}

.platform-link.bandcamp:hover {
    border-color: #629aa9;
    box-shadow: 0 4px 12px rgba(98, 154, 169, 0.3);
}

.platform-link.iheartradio i {
    color: #C6002B;
}

.platform-link.iheartradio:hover {
    border-color: #C6002B;
    box-shadow: 0 4px 12px rgba(198, 0, 43, 0.3);
}

.platform-link.boomplay i {
    color: #00D9A3;
}

.platform-link.boomplay:hover {
    border-color: #00D9A3;
    box-shadow: 0 4px 12px rgba(0, 217, 163, 0.3);
}

.platform-link.itunes i {
    color: #FB5BC5;
}

.platform-link.itunes:hover {
    border-color: #FB5BC5;
    box-shadow: 0 4px 12px rgba(251, 91, 197, 0.3);
}

/* Footer */
footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar {
        background-size: auto 60%;
        background-position: center top;
    }

    .nav-links {
        gap: 1rem;
    }

    .video-section {
        min-height: auto;
        padding: 1rem 0;
    }

    .video-wrapper {
        max-width: 100%;
        border-radius: 8px;
    }

    .album-page {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-artwork {
        position: static;
    }

    .page-title {
        font-size: 2rem;
    }

    .album-title {
        font-size: 2rem;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .artist-bio-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .artist-bio-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .album-title {
        font-size: 1.75rem;
    }

    .artist-name {
        font-size: 1.25rem;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .album-card-title {
        font-size: 1.25rem;
    }

    .artist-bio-section {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .artist-bio-content h2 {
        font-size: 1.75rem;
    }

    .artist-bio-content p {
        font-size: 1rem;
    }
}

