/* 90s Retro Style */
:root {
    --neon-pink: #ff6ec7;
    --electric-blue: #00ffff;
    --purple-rain: #9b30ff;
    --radical-red: #ff355e;
    --screamin-green: #66ff66;
    --black: #000000;
    --white: #ffffff;
}

body {
    background-color: #000;
    background-image: radial-gradient(circle, var(--purple-rain) 0%, #000 70%);
    color: var(--white);
    font-family: 'Comic Neue', cursive;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container-90s {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.header-90s {
    background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px var(--neon-pink);
    border: 3px dashed var(--white);
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    margin: 0;
    color: var(--white);
    text-shadow: 3px 3px 0 var(--purple-rain), 6px 6px 0 var(--electric-blue);
    letter-spacing: 2px;
}

.logo-90s {
    color: var(--radical-red);
    font-style: italic;
}

.tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--white);
    text-shadow: 2px 2px 0 var(--black);
}

.header-decoration {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.tape-icon, .walkman-icon {
    font-size: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 0 var(--black);
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section-90s {
    position: relative;
    margin-bottom: 40px;
    border: 5px solid var(--electric-blue);
    border-radius: 15px;
    overflow: hidden;
}

.hero-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(155,48,255,0.5));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--screamin-green);
    text-shadow: 3px 3px 0 var(--black);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-button-90s {
    background-color: var(--radical-red);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Press Start 2P', cursive;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 0 var(--black);
    text-transform: uppercase;
}

.cta-button-90s:hover {
    background-color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 0 var(--black);
}

.cta-button-90s:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 var(--black);
}

/* Section Titles */
.section-title-90s {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-title-90s span {
    display: inline-block;
    padding: 0 20px;
    background-color: var(--black);
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--electric-blue);
    text-shadow: 2px 2px 0 var(--neon-pink);
}

.section-title-90s:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
    z-index: 0;
}

/* Record Grid */
.record-grid-90s {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.record-item-90s {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid var(--electric-blue);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.record-item-90s:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.5);
}

.record-cover-90s {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.record-cd {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #333 0%, #000 70%);
    border-radius: 50%;
    border: 2px solid var(--electric-blue);
    bottom: -40px;
    right: 20px;
    box-shadow: 0 0 10px var(--electric-blue);
}

.record-info-90s {
    padding: 20px;
    text-align: center;
}

.record-info-90s h3 {
    margin: 0 0 10px;
    color: var(--screamin-green);
    font-size: 1.3rem;
}

.record-info-90s .artist {
    color: var(--electric-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.record-info-90s .price {
    color: var(--neon-pink);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Features Section */
.features-section-90s {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-90s {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-pink);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-90s:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-pink);
}

.feature-icon-90s {
    font-size: 3rem;
    color: var(--electric-blue);
    margin-bottom: 20px;
}

.feature-90s h3 {
    color: var(--screamin-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-90s p {
    color: var(--white);
}

/* User Nav */
.user-nav-90s {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, var(--neon-pink), var(--purple-rain));
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(255, 110, 199, 0.5);
}

.user-greeting-90s {
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome {
    font-size: 1.2rem;
    color: var(--white);
}

.username {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--screamin-green);
    text-shadow: 2px 2px 0 var(--black);
}

.user-actions-90s {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-link-90s {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
}

.cart-count-90s {
    background-color: var(--radical-red);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: absolute;
    top: -10px;
    right: -10px;
}

.cart-icon-90s {
    font-size: 1.5rem;
}

.logout-button-90s {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.logout-button-90s:hover {
    background-color: var(--white);
    color: var(--black);
    transform: scale(1.05);
}

/* Catalog Section */
.catalog-section-90s {
    margin-bottom: 50px;
}

.catalog-grid-90s {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.catalog-item-90s {
    background-color: rgba(0, 0, 0, 0.7);
    border: 3px solid var(--electric-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.catalog-item-90s:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px var(--electric-blue);
}

.album-cover-90s {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-button-90s {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 53, 94, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-item-90s:hover .play-button-90s {
    opacity: 1;
}

.album-badge-90s {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--radical-red);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.album-info-90s {
    padding: 20px;
}

.album-info-90s h3 {
    margin: 0 0 10px;
    color: var(--screamin-green);
    font-size: 1.5rem;
}

.album-info-90s .artist {
    color: var(--electric-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.album-info-90s .duration {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.album-actions-90s {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart-90s {
    background-color: var(--neon-pink);
    color: var(--black);
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.add-to-cart-90s:hover {
    background-color: var(--radical-red);
    color: var(--white);
    transform: scale(1.05);
}

.price-90s {
    color: var(--electric-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Footer */
.footer-90s {
    background: linear-gradient(90deg, var(--purple-rain), var(--black));
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    border-top: 3px dotted var(--electric-blue);
}

.footer-content-90s p {
    margin: 10px 0;
    color: var(--white);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--electric-blue);
    font-style: italic;
}

.social-links-90s {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links-90s a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links-90s a:hover {
    color: var(--screamin-green);
    transform: scale(1.2);
}

.footer-decoration-90s {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.boombox-icon {
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-section-90s {
        grid-template-columns: 1fr;
    }

    .header-90s {
        padding: 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .user-nav-90s {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        border-radius: 20px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    /* 90s Music Player Styles */
    .player-controls-90s {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, var(--purple-rain), var(--black));
        padding: 15px;
        border-top: 3px solid var(--electric-blue);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
    }

    .player-display-90s {
        flex-grow: 1;
        max-width: 500px;
    }

    .track-info-90s {
        color: var(--screamin-green);
        font-family: 'Press Start 2P', cursive;
        font-size: 0.8rem;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-buttons-90s {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .player-btn-90s {
        background-color: var(--neon-pink);
        color: var(--black);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
    }

    .player-btn-90s:hover {
        transform: scale(1.1);
        background-color: var(--electric-blue);
    }

    .progress-container-90s {
        width: 100%;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        margin-bottom: 5px;
        cursor: pointer;
    }

    .progress-bar-90s {
        height: 100%;
        background-color: var(--electric-blue);
        border-radius: 5px;
        width: 0%;
        transition: width 0.1s;
    }

    .time-display-90s {
        color: var(--white);
        font-size: 0.7rem;
        display: flex;
        justify-content: space-between;
    }

    .equalizer-90s {
        display: flex;
        align-items: flex-end;
        height: 40px;
        gap: 3px;
        margin-right: 20px;
    }

    .equalizer-90s .bar-90s {
        width: 4px;
        background-color: var(--screamin-green);
        height: 100%;
    }

    @keyframes equalizer {
        0%, 100% { height: 40%; }
        50% { height: 100%; }
    }

    /* Responsive player */
    @media (max-width: 768px) {
        .player-controls-90s {
            flex-direction: column;
            padding: 10px;
        }

        .player-display-90s {
            width: 100%;
            margin-bottom: 10px;
        }

        .equalizer-90s {
            display: none;
        }
    }
}