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

.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 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-accept {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-accept:hover {
    background: #2980b9;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

/* Sections */
section {
    padding: 60px 0;
}

.featured {
    background: #f8f9fa;
}

.trending {
    background: white;
}

.latest {
    background: #f8f9fa;
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.podcast-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

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

.podcast-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.podcast-info {
    padding: 25px;
}

.podcast-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.podcast-category {
    color: #3498db;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podcast-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.podcast-host {
    color: #888;
    font-size: 13px;
    margin-top: 10px;
}

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

.topic-tag {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Directory Filters */
.directory {
    padding: 80px 0;
}

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

.search-box input {
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    width: 300px;
    max-width: 100%;
}

.search-box input:focus {
    outline: none;
    border-color: #3498db;
}

.category-filter select {
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    background: white;
    cursor: pointer;
}

.category-filter select:focus {
    outline: none;
    border-color: #3498db;
}

/* Podcast Detail */
.podcast-detail {
    padding: 80px 0;
}

.detail-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.detail-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.detail-info h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.detail-category {
    color: #3498db;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.meta-item h3 {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.meta-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.topics {
    margin-bottom: 30px;
}

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

.topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-item {
    background: #f8f9fa;
    color: #555;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
}

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

.platform-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.platform-link:hover {
    transform: translateY(-2px);
}

.platform-link.spotify {
    background: #1DB954;
    color: white;
}

.platform-link.apple {
    background: #A855F7;
    color: white;
}

.platform-link.youtube {
    background: #FF0000;
    color: white;
}

.platform-link.website {
    background: #6B7280;
    color: white;
}

.external-notice {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #0369a1;
}

/* Categories Page */
.category-section {
    margin-bottom: 50px;
}

.category-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: left;
}

.category-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Content Pages */
.content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
    text-align: left;
}

.content-wrapper h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: #555;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: left;
}

.contact-details {
    margin-top: 40px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Not Found */
.not-found {
    text-align: center;
    padding: 80px 0;
}

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

.not-found p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platform-links {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .podcast-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 25px;
    }
}