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

body {
    font-family: 'Roboto', sans-serif;
    background: #111;
    color: #fff;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #000;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background: #fff;
    line-height: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    padding-right: 3rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #000;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #00A8B7;
    position: relative;
    display: flex;
    min-height: 500px;
}

.hero-content {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.hero-cover {
    flex: 0 0 auto;
    display: flex;
    height: 100%;
}

.hero-cover a {
    display: flex;
    height: 100%;
}

.hero-cover img {
    width: auto;
    height: 500px;
    aspect-ratio: 1;
    object-fit: cover;
    background: #fff;
    display: block;
}

.hero-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.hero-series {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    background: #fff;
    padding: 0.25rem 0.75rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-info h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-tags .tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
}

/* Mixcloud Widget */
.mixcloud-widget {
    margin-top: 1rem;
}

.mixcloud-widget iframe {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 4px;
}

/* Archive Section */
.archive {
    padding: 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.archive h2 {
    display: none;
}

/* Shows Grid */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.show-card {
    background: #1a1a1a;
    overflow: hidden;
    transition: transform 0.2s;
}

.show-card:hover {
    transform: scale(1.03);
}

.show-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.show-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Show Detail Page */
.show-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.show-header {
    text-align: center;
    margin-bottom: 2rem;
}

.show-cover {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.show-detail h1 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.75rem;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 1rem;
}

.show-header .tags {
    justify-content: center;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.show-header .tag {
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Player Embed on Detail Page */
.player-embed {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.player-embed iframe {
    width: 100%;
    height: 120px;
    border: none;
}

/* Tracklist */
.tracklist {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.tracklist h2 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.tracklist ol {
    margin: 0;
    padding-left: 1.5rem;
}

.tracklist li {
    margin: 0.75rem 0;
    padding-left: 0.5rem;
}

.tracklist .artist {
    font-weight: 600;
}

.tracklist .album {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Navigation */
.back-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.back-link a:hover {
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #444;
    background: #000;
    font-size: 0.875rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-cover img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .hero-info {
        padding: 1.5rem;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-tags {
        justify-content: center;
    }

    .archive {
        padding: 1.5rem;
    }

    .shows-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .show-detail {
        padding: 1rem;
    }

    .tracklist {
        padding: 1rem;
    }
}
