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

:root {
    --ocean-blue: #0d47a1;
    --white: #ffffff;
    --text-white: rgba(255, 255, 255, 0.95);
    --icon-hover: rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--ocean-blue);
    color: var(--text-white);
    position: relative;
    margin: 0;
    padding: 0;
}

/* Ocean background with subtle waves */
.ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--ocean-blue);
    overflow: hidden;
}

/* Subtle wave layers */
.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    border-radius: 40%;
}

.wave1 {
    background: rgba(255, 255, 255, 0.03);
    animation: drift 20s infinite linear;
}

.wave2 {
    background: rgba(255, 255, 255, 0.02);
    animation: drift 30s infinite linear reverse;
}

.wave3 {
    background: rgba(255, 255, 255, 0.015);
    animation: drift 40s infinite linear;
}

@keyframes drift {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Floating particles - like bubbles and plankton in the ocean */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(var(--drift)) scale(1);
        opacity: 0;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(var(--sway-amount));
    }
}

/* Container */
.container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
    color: var(--white);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--white);
    transition: all 0.2s ease;
    opacity: 0.9;
}

.social-icon:hover {
    background: var(--icon-hover);
    opacity: 1;
    transform: scale(1.1);
}

.social-icon svg {
    transition: transform 0.2s ease;
}

/* Section Styling */
.tidal-section,
.videos-section {
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    color: var(--white);
}

/* Tidal Embeds */
.albums-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.album-embed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.album-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.02em;
}

.album-embed iframe {
    max-width: 100%;
    width: 500px;
    height: 275px;
}

/* Video Grid - Nirvana style: tight spacing */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
    }

    header {
        margin-bottom: 2.5rem;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 28px;
        height: 28px;
    }

    .tidal-section,
    .videos-section {
        padding: 3rem 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .albums-container {
        flex-direction: column;
        gap: 2rem;
    }

    .album-embed iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 500 / 275;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-icon svg {
        width: 26px;
        height: 26px;
    }

    .video-grid {
        gap: 0.25rem;
    }
}
