:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #00f3ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.links a:hover {
    color: var(--accent-color);
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

#intro {
    align-items: flex-start;
}

#intro h1 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#intro p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.5;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

#album h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
}

.card-info h3 {
    :root {
        --bg-color: #050505;
        --text-color: #ffffff;
        --accent-color: #00f3ff;
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background-color: var(--bg-color);
        color: var(--text-color);
        overflow-x: hidden;
    }

    #canvas-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
    }

    nav {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 2rem 4rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
        mix-blend-mode: difference;
    }

    .logo {
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .links a {
        color: var(--text-color);
        text-decoration: none;
        margin-left: 2rem;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .links a:hover {
        color: var(--accent-color);
    }

    section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem;
        position: relative;
    }

    #intro {
        align-items: flex-start;
    }

    #intro h1 {
        font-size: 6rem;
        line-height: 1;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, #fff, #aaa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    #intro p {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 600px;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
        opacity: 0.5;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0) translateX(-50%);
        }

        40% {
            transform: translateY(-10px) translateX(-50%);
        }

        60% {
            transform: translateY(-5px) translateX(-50%);
        }
    }

    #album h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 1rem;
        backdrop-filter: blur(10px);
        transition: transform 0.3s, background 0.3s;
        cursor: pointer;
    }

    .card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
    }

    .card-image {
        width: 100%;
        height: 200px;
        border-radius: 12px;
        margin-bottom: 1rem;
        background-size: cover;
        background-position: center;
    }

    .card-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .card-info p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

    /* Audio Controls */
    .audio-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--glass-bg);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        border: 1px solid var(--glass-border);
        backdrop-filter: blur(5px);
    }

    #audio-toggle {
        display: none;
        background: black !important;
        border: none;
        color: var(--text-color);
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 0.8rem;
        cursor: pointer;
        width: 80px;
        text-align: center;
        transition: color 0.3s;
    }

    #audio-toggle:hover {
        color: var(--accent-color);
    }

    #volume-slider {
        -webkit-appearance: none;
        width: 100px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        outline: none;
        cursor: pointer;
    }

    #volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent-color);
        cursor: pointer;
        transition: transform 0.2s;
    }

    #volume-slider::-webkit-slider-thumb:hover {
        transform: scale(1.2);
    }