* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #121212;
    color: #f5f5f5;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background-color: #d81d1d;
}

h3 {
    font-size: 1.5rem;
}

/* Header */
header {
    background-color: #414535;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    margin-bottom: 5px;
}

.tagline {
    color: #d81d1d;
    font-style: italic;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d81d1d;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    background-color: #1e1e1e;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon i.fa-youtube:hover {
    color: #FF0000;
}

.social-icon i.fa-spotify:hover {
    color: #1DB954;
}

.social-icon i.fa-twitter:hover {
    color: #1DA1F2;
}

.social-icon i.fa-instagram:hover {
    color: #E1306C;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
}

section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Episodes Section */
.episodes {
    background-color: #1a1a1a;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.episode-card {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.episode-thumbnail {
    height: 180px;
    overflow: hidden;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.episode-card:hover .episode-thumbnail img {
    transform: scale(1.05);
}

.default-thumbnail {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #555;
}

.episode-info {
    padding: 20px;
}

.episode-date {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.episode-description {
    margin-bottom: 20px;
    color: #ddd;
}

.episode-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.episode-link {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.episode-link.youtube {
    background-color: #FF0000;
    color: white;
}

.episode-link.spotify {
    background-color: #1DB954;
    color: white;
}

.episode-link.twitter {
    background-color: #1DA1F2;
    color: white;
}

.episode-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.no-episodes {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #222;
    border-radius: 8px;
}

/* About Section */
.about {
    background-color: #414535;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

/* Contact Section */
.contact {
    background-color: #1a1a1a;
    text-align: center;
}

.contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #d81d1d;
}

/* Footer */
footer {
    background-color: #080808;
    padding: 30px 0;
    text-align: center;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 15px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 400px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .episode-grid {
        grid-template-columns: 1fr;
    }
}