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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: #1D4091;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
}

.hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1D4091 30%, #2a5bb8 70%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 50px auto 0px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: #fff;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #1D4091, #2a5bb8, #ffffff, #2a5bb8, #1D4091);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: gradientMove 8s ease infinite;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #fff;
}

.hero-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #1D4091, #2a5bb8);
    color: #fff;
    border: 2px solid transparent;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(29, 64, 145, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1D4091;
    border: 2px solid #1D4091;
}

.btn-secondary:hover {
    background: #1D4091;
    color: #0a0a0a;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-cover {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.listen-section {
    padding: 15px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1D4091;
    position: relative;
}


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

.platform-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(29, 64, 145, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 300px;
}


.platform-icon {
    font-size: 1.2rem;
    color: #1D4091;
    flex-shrink: 0;
}

.platform-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #1D4091;
    text-align: left;
    flex: 1;
}

.platform-card p {
    display: none;
}

.platform-link {
    color: #1D4091;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 8px;
    border: 1px solid #1D4091;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
    width: fit-content;
    flex-shrink: 0;
}

.platform-link:hover {
    background: #1D4091;
    color: #fff;
}

.episodes-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.episodes-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.episode-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(29, 64, 145, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    align-items: center;
    max-width: 100%;
}


.episode-card.latest {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #1D4091;
    box-shadow: 0 3px 10px rgba(29, 64, 145, 0.15);
    position: relative;
}

.episode-card.latest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1D4091;
    border-radius: 0 2px 2px 0;
}

.thumbnail-container {
    width: 416px;
    height: 280px;
    border-radius: 6px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(29, 64, 145, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    color: white;
    font-size: 24px;
}

.thumbnail-container:hover .play-overlay {
    opacity: 1;
}

.episode-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.episode-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.episode-platforms {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.episode-platform-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 4px 8px;
    background: rgba(29, 64, 145, 0.1);
    border: 1px solid #1D4091;
    border-radius: 4px;
    color: #1D4091;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.episode-platform-link:hover {
    background: #1D4091;
    color: #fff;
}

.episode-number {
    background: linear-gradient(135deg, #1D4091, #2a5bb8);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 0.3rem;
    width: fit-content;
}

.episode-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1D4091;
    margin-bottom: 0.2rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-subtitle {
    font-size: 0.8rem;
    color: #1D4091;
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #1D4091, #2a5bb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: 2px 0;
    white-space: pre-line;
    line-height: 1.4;
}

.episode-description {
    color: #495057;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.episode-description.collapsed {
    display: block;
    max-height: 8em; /* 5 lines */
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

.episode-description.expanded {
    max-height: 2000px; /* Large enough to contain any description */
}

.episode-description .visible-text {
    display: inline;
}

.episode-description .clickable-text {
    color: #1D4091;
    font-weight: 500;
    display: inline;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 0.3em;
}

.episode-description .clickable-text:hover {
    color: #2a5bb8;
    text-decoration: underline;
}

.episode-description .hidden-text {
    display: none;
}

.episode-description .show-less-button {
    display: none;
    color: #1D4091;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.3em;
}

.episode-description .show-less-button:hover {
    color: #2a5bb8;
    text-decoration: underline;
}

.episode-description.expanded .hidden-text {
    display: inline;
}

.episode-description.expanded .ellipsis,
.episode-description.expanded .clickable-text {
    display: none;
}

.episode-description.expanded .show-less-button {
    display: inline;
}

.latest-episode-header {
    margin-bottom: 0.5rem;
}

.latest-episode-header h3 {
    color: #1D4091;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.previous-episodes-header {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.previous-episodes-header h3 {
    color: #1D4091;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.episode-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1D4091, transparent);
    margin: 1rem 0;
    border: none;
}

.episode-meta {
    display: flex;
    gap: 1rem;
    color: #6c757d;
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
}

.episode-duration {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.episode-interviewer,
.episode-photographer {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.episode-photographer i {
    color: #6c757d;
}

.episode-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


.about-section {
    padding: 40px 0;
    background: #0a0a0a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.host-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.host-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.host-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    margin-block-start: 0rem;
    margin-block-end: 0rem;
}

.host-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.host-link:hover {
    color: #2a5bb8;
}

.host-name span.host-link {
    color: #fff;
    transition: none;
}

.host-role {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1.0rem;
    text-align: center;
}

.host-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    text-align: left;
}

.bio-link {
    color: #2a5bb8;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.bio-link:hover {
    text-decoration: underline;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1D4091;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #ccc;
    font-weight: 500;
}

.footer {
    background: #111;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #1D4091;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2a5bb8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin: 50px auto 20px auto;
        padding: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .platforms-grid {
        flex-direction: column;
        align-items: center;
    }

    .episode-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .thumbnail-container {
        width: 100%;
        height: 240px;
    }

    .episode-thumbnail {
        width: 100%;
        height: 240px;
        align-self: center;
    }

    .episode-platforms {
        flex-wrap: wrap;
    }

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

    .hosts-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 40vh;
        padding: 30px 0;
    }

    .hero-container {
        margin: 50px auto 10px auto;
        padding: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    overflow: hidden;
    border: 1px solid rgba(29, 64, 145, 0.2);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(29, 64, 145, 0.1);
}

.player-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1D4091;
}

.close-player {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    font-size: 0.8rem;
}

.close-player:hover {
    color: #1D4091;
}

#youtube-player {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #1D4091;
    border-radius: 4px;
}
