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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 15px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content button {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #2c3e50;
}

.logo {
    height: 40px;
    width: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2980b9;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 1.1em;
    color: #666;
}

/* Sections */
.featured-section,
.trending-section,
.latest-section {
    margin: 60px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-section h2,
.trending-section h2,
.latest-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.podcast-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.podcast-card img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.podcast-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.podcast-card .category {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    display: inline-block;
    margin-bottom: 10px;
}

.podcast-card p {
    color: #666;
    margin-bottom: 15px;
}

.podcast-card .host {
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.podcast-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.podcast-links a {
    padding: 6px 12px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.85em;
    transition: background 0.3s;
}

.podcast-links a:hover {
    background: #d5dbdb;
}

/* Topic Tags */
.topic-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

/* Filters */
.filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-box input {
    padding: 12px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 25px;
    font-size: 1em;
    width: 300px;
    max-width: 100%;
}

.category-filter select {
    padding: 12px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 25px;
    font-size: 1em;
    background: white;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.category-card .count {
    color: #666;
    margin-bottom: 20px;
}

/* Podcast Detail */
.podcast-detail {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.podcast-image {
    flex-shrink: 0;
}

.podcast-image img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
}

.podcast-info h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.podcast-meta {
    margin-bottom: 20px;
}

.podcast-meta .category {
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 10px;
}

.podcast-meta .host,
.podcast-meta .frequency {
    display: block;
    color: #666;
    margin-bottom: 5px;
}

.podcast-description {
    margin-bottom: 30px;
}

.podcast-description h2 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.topics {
    margin-bottom: 30px;
}

.topics h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.topics ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topics li {
    background: #ecf0f1;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9em;
}

.best-for {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.best-for h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.listen-links {
    margin-bottom: 30px;
}

.listen-links h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.platform-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-links a {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
}

.platform-links a:hover {
    background: #2980b9;
}

.content-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.not-found {
    text-align: center;
    padding: 60px 20px;
}

.not-found h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info .contact-item {
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 1.3em;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
}

.content-section a {
    color: #3498db;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .nav-menu {
        margin-top: 20px;
        gap: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .podcast-header {
        flex-direction: column;
        text-align: center;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .contact-form {
        padding: 20px;
    }
}

<!--