* {
    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;
}

/* Top Bar */
.top-bar {
    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;
}

.logo-main {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #000;
}

.logo-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: #00A8B7;
    margin-left: 0.5rem;
}

nav {
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    color: #00A8B7;
}

/* Hero Section */
.hero {
    background: #00A8B7;
    padding: 3rem 4rem;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-cover {
    position: relative;
    flex-shrink: 0;
}

.hero-cover img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.play-btn svg {
    width: 50px;
    height: 50px;
    color: #00A8B7;
    margin-left: 5px;
}

.hero-info {
    flex: 1;
}

.hero-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

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

.hero-tags {
    position: absolute;
    top: 2rem;
    right: 4rem;
}

.hero-tags .tag {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: #000;
}

/* Mixcloud Widget */
.mixcloud-widget {
    max-width: 1200px;
    margin: 2rem auto 0;
}

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

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

.archive h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #00A8B7;
    display: inline-block;
    padding-bottom: 0.25rem;
}

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

.show-card {
    background: #1a1a1a;
    border-radius: 8px;
    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-card .info {
    padding: 1rem;
}

.show-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.show-card .tag {
    display: inline-block;
    background: #00A8B7;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    padding: 0.15rem 0.4rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.show-card .date {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-tags {
        position: static;
        margin-top: 1rem;
    }

    .archive {
        padding: 2rem;
    }
}
