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

body {
    font-family: 'Georgia', serif;
    background: #E8D4B8;
    color: #3D2817;
    line-height: 1.6;
}

header {
    background: #3D2817;
    padding: 1.5rem 0;
    box-shadow: 0 4px 8px rgba(61, 40, 23, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #E89250;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 100px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #E8D4B8;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #E89250;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: #6B9B8F;
    color: #3D2817;
    border-bottom: 6px solid #3D2817;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 4px;
    color: #3D2817;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #3D2817;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: #E89250;
    color: #3D2817;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 4px 4px 0 #3D2817;
    border: 3px solid #3D2817;
}

.cta-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #3D2817;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    background: #F5E8D8;
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 6px 6px 0 rgba(61, 40, 23, 0.2);
    border: 3px solid #3D2817;
}

h2 {
    color: #3D2817;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 3px;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.episode-card {
    background: #E8D4B8;
    border: 3px solid #3D2817;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 4px 4px 0 rgba(61, 40, 23, 0.3);
}

.episode-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(61, 40, 23, 0.3);
}

.episode-card h3 {
    color: #E89250;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.episode-date {
    color: #6B9B8F;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #3D2817;
}

.cat-image {
    text-align: center;
}

.cat-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #3D2817;
    box-shadow: 4px 4px 0 rgba(61, 40, 23, 0.3);
}

.subscribe-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.platform-btn {
    background: #6B9B8F;
    color: #3D2817;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #3D2817;
    box-shadow: 4px 4px 0 rgba(61, 40, 23, 0.3);
}

.platform-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(61, 40, 23, 0.3);
}

footer {
    background: #3D2817;
    color: #E8D4B8;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 6px solid #E89250;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }
}
