/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 4px solid #FF1493;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

header .subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #87CEEB;
}

header .date {
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 400;
}

/* Main Content */
main {
    padding: 40px 20px;
}

/* Podcast Section */
.podcast-section {
    background: linear-gradient(135deg, #87CEEB 0%, #FF1493 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.podcast-section h2 {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.podcast-player {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.podcast-player audio {
    width: 100%;
    margin-bottom: 15px;
}

.podcast-description {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* News Sections */
.news-section {
    margin-bottom: 50px;
}

.news-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #87CEEB;
}

/* News Items */
.news-item {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 5px solid #FF1493;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item p {
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.8;
}

.news-item p:last-child {
    margin-bottom: 0;
}

.news-item a {
    color: #FF1493;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.news-item a:hover {
    color: #87CEEB;
    text-decoration: underline;
}

.news-item strong {
    font-weight: 600;
    color: #000000;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    color: #cccccc;
    border-top: 4px solid #FF1493;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand {
    flex: 1 1 220px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #87CEEB, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand a {
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-top: 12px;
}

.footer-links {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1 1 120px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #87CEEB;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #FF1493;
}

.footer-bottom {
    border-top: 1px solid #222222;
    text-align: center;
    padding: 18px 20px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #666666;
}

.footer-bottom a {
    color: #87CEEB;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #FF1493;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    header .subtitle {
        font-size: 1rem;
    }

    .podcast-section h2 {
        font-size: 1.5rem;
    }

    .news-section h2 {
        font-size: 1.6rem;
    }

    .news-item h3 {
        font-size: 1.2rem;
    }

    .news-item {
        padding: 20px;
    }

    .podcast-section {
        padding: 20px;
    }

    .podcast-player {
        padding: 20px;
    }

    body {
        font-size: 15px;
    }

    main {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    header .subtitle {
        font-size: 0.9rem;
    }

    .podcast-section h2 {
        font-size: 1.3rem;
    }

    .news-section h2 {
        font-size: 1.4rem;
    }

    .news-item h3 {
        font-size: 1.1rem;
    }

    .footer-cta {
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    header {
        background-color: #ffffff;
        color: #000000;
        border-bottom: 2px solid #000000;
    }

    .podcast-section {
        display: none;
    }

    .news-item {
        page-break-inside: avoid;
        border-left-color: #000000;
    }

    footer {
        background-color: #ffffff;
        color: #000000;
        border-top: 2px solid #000000;
    }
}
