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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh; 
    overflow: hidden; 
    position: relative;
}

.header-logo {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 20;
    position: relative;
}

.header-logo img {
    width: 90px; 
    height: auto;
}

.hero-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 75vh;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 75%);
}

.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40vh; 
    padding-bottom: 150px;
}

.carousel-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 50px 20px;
    position: relative;
    z-index: 15;
    background-color: transparent; 
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
    color: #000;
    padding: 15px;
    user-select: none;
    transition: transform 0.2s, opacity 0.2s;
    z-index: 30;
}

.nav-arrow:first-of-type {
    left: calc(50% - 1030px); 
}

.nav-arrow:last-of-type {
    right: calc(50% - 1030px); 
}

.nav-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.3);
}

.nav-arrow:disabled {
    opacity: 0.2;
    cursor: default;
}

.releases-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content; 
    max-width: 1400px;
    padding: 30px 20px;
    overflow: visible;
}

.release-box {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: none; 
    background: #fff;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.release-box:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 25;
}

.release-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), inset 0 0 0 1px rgba(255, 255, 255, 0.2); 
    pointer-events: none; 
    z-index: 5;
}

.release-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border-radius: 12px;
}

.vinyl-badge {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 40;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.bottom-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.socials-container {
    background: linear-gradient(90deg, #c4d4ff, #d8b4e2, #ffb6c1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 12px 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
    opacity: 0.8;
    filter: invert(0); 
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.4); 
    transform: scale(1.35) translateY(-8px);
}

.social-link:hover img { 
    opacity: 1; 
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .header-logo {
        margin-top: 15px; 
    }

    .main-content {
        margin-top: 32vh; 
        padding-bottom: 0; 
    }

    .carousel-section {
        padding: 10px;
        gap: 5px;
    }

    .nav-arrow {
        display: none;
    }

    .releases-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        max-width: 320px; 
        margin: 0 auto;
        padding: 10px;
    }

    .release-box {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; 
    }
}

/* --- BIG SCREEN STYLES --- */
@media (min-width: 1150px) {
    .main-content {
        margin-top: 45vh; 
    }

    .hero-wrapper {
        max-width: 1500px; 
    }

    .releases-container {
        max-width: 1800px; 
        padding: 40px 20px; 
    }

    .release-box {
        width: 300px; 
        height: 300px;
    }

    .nav-arrow:first-of-type {
        left: calc(50% - 1230px);
    }

    .nav-arrow:last-of-type {
        right: calc(50% - 1230px);
    }

    .socials-container {
        padding: 16px 30px;
        gap: 25px;
        border-radius: 40px;
    }

    .social-link {
        width: 56px;
        height: 56px;
    }

    .social-link img {
        width: 32px; 
        height: 32px;
    }

    .nav-arrow {
        font-size: 56px; 
    }
}