/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #f0f0f0;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
    .container {
        padding: 1rem;
    }
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Neo Brutalism Cards */
.card {
    background: white;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: 6px 6px 0 0 #000;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

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

/* Headers */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.accent-text {
    color: #000;
    background-color: #83fec7;
    padding: 0 0.5rem;
    display: inline-block;
}

/* Left Side: Show Info */
.show-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #000;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.show-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.show-date::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #83fec7;
    border-radius: 50%;
    border: 1px solid #000;
}

.show-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.show-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 767px) {
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

.btn-primary {
    flex: 2;
    background-color: #83fec7;
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid #000;
    border-radius: 12px;
    box-shadow: 4px 4px 0 0 #000;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-secondary {
    flex: 1;
    background-color: #fff;
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid #000;
    border-radius: 12px;
    box-shadow: 4px 4px 0 0 #000;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 #000;
}

.btn-primary:hover {
    background-color: #6efbbe;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 0 #000;
}

.production-credits {
    margin-top: auto;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Right Side: Music Platforms */
.music-platforms {
    text-align: center;
}

.album-art-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
}

.album-art {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid #000;
    box-shadow: 4px 4px 0 0 #000;
}

.music-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.music-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #000;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: background-color 0.2s;
}

.platform-link:hover {
    background-color: #f9f9f9;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.platform-icon {
    height: 48px;
    object-fit: contain;
}

.listen-btn {
    background-color: #f0f0f0;
    border: 1px solid #000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.platform-link:hover .listen-btn {
    background-color: #83fec7;
    box-shadow: 2px 2px 0 0 #000;
    transform: translate(-1px, -1px);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    font-size: 0.9rem;
    background-color: #fff;
    border-top: 1px solid #000;
}

@media (max-width: 767px) {
    footer {
        padding: 2rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

.credit-box {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.credit-box:hover {
    transform: scale(1.05);
    background-color: #333;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.hero-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: 1px solid #000;
    box-shadow: 6px 6px 0 0 #000;
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    animation: zoomIn 2s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 767px) {
    .hero-container {
        height: 220px;
    }
    
    .hero-cover {
        animation: zoomInMobile 2s ease-out forwards;
        transform-origin: center bottom;
    }
}

@keyframes zoomInMobile {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.7);
    }
}


