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

body {
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
    background-color: #fef9ef;
    color: #000;
    line-height: 1.4;
    padding-top: 0;
    min-height: 100vh;
}

.ticker-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 0 #000;
    z-index: 1000;
    overflow: hidden;
    height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.ticker-text {
    color: #000;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 35px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-button {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: #fff;
    color: #000;
    border: 5px solid #000;
    box-shadow: 6px 6px 0 #000;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.1s ease;
    z-index: 1001;
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
}

.ticker-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #000;
}

.ticker-button:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.hero {
    text-align: center;
    margin-bottom: 3vh;
    flex-shrink: 0;
}

.title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 6px 6px 0 #000;
    color: #fff;
    background-color: #000;
    padding: 16px 30px;
    border: 6px solid #000;
    display: inline-block;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
}

.hoodies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.hoodie-card {
    background-color: #fff;
    border: 6px solid #000;
    box-shadow: 12px 12px 0 #000;
    padding: 0;
    transition: transform 0.1s ease;
    cursor: pointer;
}

.hoodie-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0 #000;
}

.image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-bottom: 6px solid #000;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.15s ease-out;
}

.hoodie-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 30px;
    text-align: center;
    background-color: #fff;
}

.music-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 6px solid #000;
}

.music-card {
    background-color: #fff;
    border: 6px solid #000;
    box-shadow: 12px 12px 0 #000;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.vinyl-container {
    position: relative;
    padding: 40px;
    border-right: 6px solid #000;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.album-sleeve-wrapper {
    position: relative;
    margin-left: -50px;
}

.album-sleeve {
    position: relative;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1;
    border: 4px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    overflow: visible;
    z-index: 2;
}

.album-sleeve img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.vinyl-record {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    background: radial-gradient(
        circle,
        #1a1a1a 0%,
        #000 30%,
        #1a1a1a 31%,
        #000 100%
    );
    border-radius: 50%;
    border: 4px solid #000;
    right: -45%;
    top: 5%;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    z-index: 1;
}

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

.vinyl-record.spinning {
    animation: spin 2s linear infinite;
}

.vinyl-record::before {
    content: "";
    position: absolute;
    width: 25%;
    height: 25%;
    background-color: #fef9ef;
    border: 3px solid #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-record::after {
    content: "";
    position: absolute;
    width: 8%;
    height: 8%;
    background-color: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.music-controls {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.track-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.track-artist {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.player-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.play-button-wrapper {
    position: relative;
    width: 100%;
}

.progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: transparent;
    cursor: pointer;
    display: none;
    z-index: 10;
    transition: transform 0.1s ease;
}

.progress-bar-container.visible {
    display: block;
}

.progress-bar {
    height: 100%;
    background-color: #4a90e2;
    width: 0%;
    transition: width 0.1s linear;
}

.play-button {
    background-color: #000;
    color: #fff;
    border: 6px solid #000;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.1s ease;
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.play-button-wrapper:hover .play-button {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

.play-button-wrapper:hover .progress-bar-container {
    transform: translate(-2px, -2px);
}

.play-button-wrapper:active .play-button {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.play-button-wrapper:active .progress-bar-container {
    transform: translate(2px, 2px);
}

.preorder-button {
    background-color: #fff;
    color: #000;
    border: 6px solid #000;
    box-shadow: 8px 8px 0 #000;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.1s ease;
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
    text-align: center;
}

.preorder-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 #000;
}

.preorder-button:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #000;
}

@media (max-width: 768px) {
    .container {
        padding-top: 80px;
    }

    .ticker-wrapper {
        height: 56px;
    }

    .ticker-text {
        font-size: 1rem;
        margin-right: 60px;
    }

    .ticker-button {
        font-size: 0.85rem;
        padding: 8px 16px;
        top: 10px;
        right: 12px;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #000;
    }

    .ticker-button:hover {
        box-shadow: 5px 5px 0 #000;
    }

    .ticker-button:active {
        box-shadow: 2px 2px 0 #000;
    }

    .title {
        margin-top: 16px;
        font-size: 1.35rem;
        padding: 12px 24px;
        text-shadow: 4px 4px 0 #000;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hoodies {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hoodie-card {
        box-shadow: 8px 8px 0 #000;
    }

    .hoodie-card:hover {
        box-shadow: 10px 10px 0 #000;
    }

    .music-section {
        margin-top: 60px;
        padding-top: 40px;
    }

    .music-card {
        grid-template-columns: 1fr;
        box-shadow: 8px 8px 0 #000;
    }

    .vinyl-container {
        border-right: none;
        border-bottom: 6px solid #000;
        padding: 30px;
    }

    .album-sleeve {
        max-width: 250px;
    }

    .music-controls {
        padding: 30px;
        gap: 20px;
    }

    .track-title {
        font-size: 1.4rem;
    }

    .track-artist {
        font-size: 1rem;
        margin-top: 8px;
    }

    .play-button,
    .preorder-button {
        padding: 14px;
        font-size: 1rem;
    }
}
