@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;500;600;700;800&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #f77749;
    --accent-color: #E8D4C0;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Mukta', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s;
}

.nav-logo {
    display: none;
}

/* Mobile navigation backdrop */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}


.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.search-icon {
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-color);
    text-decoration: none;
}

.search-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.phone-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.phone-icon {
    font-size: 1rem;
}

.phone-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-contact::after {
    display: none !important;
}

/* Hamburger Menu */
@media (min-width: 769px) {
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 140px 20px 180px;
    text-align: center;
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge-container {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: #FF6B35;
    padding: 8px 18px;
    border-radius: 32px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    font-style: italic;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-description-en {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Latest Video Section */
.latest-video {
    padding: 60px 20px;
    background: var(--white);
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.latest-video h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: rgb(255, 128, 9);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container iframe {
    display: block;
    border-radius: 10px;
}

/* Live Podcast Section */
.live-podcast {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.live-podcast h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.live-podcast h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.podcast-text {
    flex: 1;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--light-text);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    background: #f0f0f0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--light-text);
    line-height: 1.6;
}

.podcast-image {
    text-align: center;
}

.host-image {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
    height: auto;
}

/* Mithila History Section */
.mithila-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('images/s.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
}

.mithila-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.mithila-section .container {
    position: relative;
    z-index: 2;
}

.mithila-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.mithila-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: #ccc;
}

.btn-dark {
    background: #333;
    color: var(--white);
}

.btn-dark:hover {
    background: #222;
}

.btn-danger {
    background: #e74c3c;
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.875rem;
}

.btn-danger:hover {
    background: #c0392b;
}

.btn-edit {
    background: #3498db;
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.875rem;
}

.btn-edit:hover {
    background: #2980b9;
}

/* Episodes Section */
.episodes {
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    padding: 80px 20px;
    background: var(--white);
}

.episodes h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.episode-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.episode-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.episode-card:hover .play-icon {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.1);
}

.episode-info {
    padding: 20px;
}

.episode-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.episode-host {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.episode-date {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.episode-description {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.loading-text {
    text-align: center;
    color: var(--light-text);
    padding: 2rem;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.carousel-nav {
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.carousel-prev {
    order: -1;
}

.carousel-next {
    order: 1;
}

.testimonials-carousel {
    position: relative;
    flex: 1;
    max-width: 650px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    background: var(--white);
    padding: 3.5rem 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    pointer-events: auto;
}

.testimonial-quote-mark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: Georgia, serif;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-info {
    text-align: left;
}

.testimonial-info strong {
    display: block;
    font-size: 1rem;
    color: #2D3748;
    margin-bottom: 0.1rem;
}

.testimonial-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--light-text);
}

.carousel-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.dot.active {
    background: #000000;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Join Podcast Section */
.join-podcast {
    position: relative;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FF6B35 100%);
    padding: 60px 20px;
    overflow: hidden;
}

/* Decorative animated background pattern */
.join-podcast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Large circles background */
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(255, 107, 53, 0.2) 0%, transparent 40%),
        /* Wave lines effect */
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.08) 40px, rgba(255, 255, 255, 0.08) 41px),
        /* Diagonal cross pattern */
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.06) 60px, rgba(255, 255, 255, 0.06) 61px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.06) 60px, rgba(255, 255, 255, 0.06) 61px),
        /* Dot pattern */
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 
        300px 300px,
        250px 250px,
        200px 200px,
        100% 100%,
        120px 120px,
        120px 120px,
        40px 40px;
    background-position:
        0% 0%,
        100% 100%,
        50% 50%,
        0% 0%,
        0% 0%,
        0% 0%,
        0% 0%;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, repeat;
    pointer-events: none;
    z-index: 1;
    animation: slideBackground 20s ease-in-out infinite;
}

@keyframes slideBackground {
    0%, 100% {
        background-position: 
            0% 0%,
            100% 100%,
            50% 50%,
            0% 0%,
            0% 0%,
            0% 0%,
            0% 0%;
    }
    50% {
        background-position: 
            2% 2%,
            98% 98%,
            50% 50%,
            0% 2%,
            2% 0%,
            2% 0%,
            1% 1%;
    }
}

.join-podcast .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.join-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.join-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.join-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

.join-subtitle a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.join-subtitle a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.join-wrapper {
    display: flex;
    justify-content: center;
    animation: zoomIn 0.8s ease-out 0.2s both;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.join-card-main {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    max-width: 700px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
}

.join-card-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.join-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.join-card-main:hover::after {
    left: 100%;
}

.join-card-image {
    flex: 0 0 40%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
}

.join-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 50%);
    z-index: 1;
}

.join-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 0;
}

.join-card-main:hover .join-image {
    transform: scale(1.08) rotate(1deg);
}

.join-card-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.join-card-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.join-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FF8C42);
    transition: width 0.3s ease;
}

.join-card-main:hover .join-card-content h3::after {
    width: 60%;
}

.join-topics-list {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.join-topics-list li {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.join-topics-list li:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.checkmark {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.join-topics-list li:hover .checkmark {
    transform: scale(1.2);
}

.join-card-content .btn {
    align-self: flex-start;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-card-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.join-card-content .btn:hover::before {
    left: 100%;
}

/* Decorative Dots Pattern */
.decorative-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: 
        radial-gradient(circle, rgba(255, 107, 53, 0.25) 2px, transparent 2px);
    background-size: 15px 15px;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

.decorative-dots-left {
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.decorative-dots-right {
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    opacity: 0.5;
    animation-delay: 0.5s;
}

/* Responsive Design for Join Podcast */
@media (max-width: 768px) {
    .join-podcast {
        padding: 40px 20px;
    }

    .join-header h2 {
        font-size: 1.6rem;
    }

    .join-subtitle {
        font-size: 0.95rem;
    }

    .join-card-main {
        flex-direction: column;
    }

    .join-card-image {
        flex: 0 0 auto;
        min-height: 220px;
    }

    .join-card-content {
        padding: 25px;
    }

    .decorative-dots-right {
        display: none;
    }

    .join-card-main:hover .join-image {
        transform: scale(1.05) rotate(0deg);
    }
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: var(--white);
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    width: 100%;
}

.contact-image-col {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
    width: 100%;
}

.contact-form-col {
    padding: 60px 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-col h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    grid-column: span 1;
}

.form-group.flex-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-submit-container {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.form-submit-container .btn {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
}

/* Main Topics Section */
.main-topics {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.main-topics h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.topics-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.topic-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.topic-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Contact Section OLD */
.contact-old {
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.contact-old .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-old .container {
    position: relative;
    z-index: 2;
}

.contact-old h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-old .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-old .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-old .contact-form input,
.contact-old .contact-form textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-old .contact-form input:focus,
.contact-old .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: #181a1f;
    color: #94a3b8;
    padding: 70px 20px 40px;
    position: relative;
    border-top: 2px solid rgba(255, 107, 53, 0.25);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.35));
}

.footer-logo-container h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

.footer-links h4,
.footer-contact-social h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul a:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

.footer-contact-social {
    display: flex;
    flex-direction: column;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-info a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-social-link svg {
    transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.15);
}

.footer-social-link.fb:hover {
    background: #1877F2;
    color: var(--white);
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
    transform: translateY(-4px);
}

.footer-social-link.yt:hover {
    background: #FF0000;
    color: var(--white);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-4px);
}

.footer-social-link.wa:hover {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.8rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Admin Styles */
.admin-navbar {
    background: var(--text-color);
    color: var(--white);
}

.admin-navbar .logo h1 {
    color: var(--primary-color);
}

.back-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-color);
}

.admin-page {
    background: var(--bg-color);
}

.admin-dashboard {
    padding: 40px 20px;
}

.admin-header {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-header h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.admin-section {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.3rem;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row:last-child {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.2);
}

/* Episodes Table */
.episodes-table-container {
    overflow-x: auto;
}

.episodes-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.episodes-table thead {
    background: #f5f5f5;
}

.episodes-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.episodes-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.episodes-table tbody tr:hover {
    background: #f9f9f9;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.no-data {
    text-align: center;
    color: var(--light-text);
}

/* Members Table */
.members-table-container {
    overflow-x: auto;
}

.members-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.members-table thead {
    background: #f5f5f5;
}

.members-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.members-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.members-table tbody tr:hover {
    background: #f9f9f9;
}

.members-table img {
    border-radius: 50%;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: var(--light-text);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-color);
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .podcast-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(6) {
        grid-column: span 1;
    }

    .contact-form .btn {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {

    /* Navigation - Sidebar Drawer */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .logo {
        display: flex;
        gap: 0.5rem;

    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        gap: 1.8rem;
        padding: 100px 30px 40px;
        margin-left: 0;
        flex: none;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        list-style: none;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-logo {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .nav-links li {
        width: 100%;
        padding: 0.2rem 0;
    }

    .nav-links li a {
        font-size: 1.15rem;
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .social-icons {
        display: none;
    }

    .btn-contact {
        display: none !important;
    }

    /* Hero */
    .hero {
        min-height: 400px;
        padding: 80px 20px 120px;
        clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    /* Latest Video */
    .latest-video {
        padding: 40px 20px;
    }

    .video-container {
        height: 300px;
    }

    .video-container iframe {
        height: 100%;
    }

    /* Live Podcast */
    .live-podcast h2 {
        font-size: 2rem;
    }

    .live-podcast h3 {
        font-size: 1.5rem;
    }

    .podcast-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .host-image {
        max-width: 100%;
    }

    /* Episodes */
    .episodes-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials {
        min-height: 500px;
        padding: 60px 15px;
    }

    .testimonials-container {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .testimonials-carousel {
        max-width: 100%;
        height: 360px;
        /* Give it space for mobile text wrapping */
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .testimonial-quote-mark {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
    }

    .testimonial-card blockquote {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-image {
        width: 55px;
        height: 55px;
    }

    .carousel-dots {
        bottom: -45px;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-image-col {
        display: none;
        /* Hide left column image on mobile */
    }

    .contact-form-col {
        padding: 40px 20px;
    }
}

/* GitHub Sync Status Bar - Loading Only */
.sync-status-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #f77749 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 99;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#syncStatusText {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Team Members Section */
.team-members {
    padding: 80px 0;
    background: var(--bg-color);
}

.team-members h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.team-intro {
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B35 0%, #f77749 100%);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.member-description {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-members {
        padding: 60px 0;
    }

    .team-members h2 {
        font-size: 1.8rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .join-podcast {
        padding: 60px 0;
    }

    .join-podcast h2 {
        font-size: 1.8rem;
    }

    .join-content {
        grid-template-columns: 1fr;
    }
}


    .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group.flex-full {
        grid-column: span 1;
    }

    .form-submit-container {
        grid-column: span 1;
        justify-content: center;
    }

    .form-submit-container .btn {
        width: 100%;
        /* Make submit button full width on mobile for better touch targets */
    }

    /* Topics */
    .topics-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Join Podcast */
    .join-podcast {
        padding: 60px 20px 50px;
    }

    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .join-left h2 {
        font-size: 2rem;
    }

    .join-left p {
        font-size: 1rem;
    }

    .join-right {
        justify-content: center;
    }

    .join-card {
        flex-direction: column;
        max-width: 100%;
    }

    .join-card-img-wrapper {
        width: 100%;
        min-height: 180px;
    }

    .join-topics-box {
        width: 100%;
        padding: 1.5rem;
    }

    /* Footer */
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {

    /* Navigation */
    .logo h1 {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 35px;
    }

    /* Hero */
    .hero {
        min-height: 350px;
        padding: 60px 15px 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-description-en {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 12px 15px;
        text-align: center;
    }

    /* Testimonials */
    .testimonials {
        min-height: 480px;
        padding: 40px 10px;
    }

    .testimonials-carousel {
        height: 380px;
        /* Give it space for wrapping text at very small sizes */
    }

    .testimonial-card {
        padding: 2.2rem 1.2rem 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 40px 15px 30px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Custom Video Player Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.video-modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.15);
    max-width: 800px;
    width: 95%;
    position: relative;
    transform: scale(0.95);
    animation: modalReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalReveal {
    to {
        transform: scale(1);
    }
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-text);
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.video-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.video-player-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-episode-title {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-top: 20px;
}

.modal-episode-description {
    max-height: 100px;
    overflow-y: auto;
    padding-right: 10px;
    color: var(--light-text);
    font-size: 0.95rem;
    margin-top: 8px;
    line-height: 1.6;
}

/* Episode Card Enhancements */
.episode-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
    border: 1px solid transparent;
}

.episode-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.15) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
}

.play-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.episode-card:hover .play-icon {
    background: rgba(255, 107, 53, 1) !important;
    transform: scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6) !important;
}

/* Collapsible Git details styling */
.git-settings-details[open] .git-settings-summary {
    color: var(--primary-color);
}

.git-settings-details .git-settings-summary {
    transition: color 0.2s ease;
}

/* Custom form focus transition */
.form-group input,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Mobile Nav link borders fix */
.nav-links li a {
    transition: color 0.3s ease, padding 0.3s ease;
}

.nav-links li a:hover {
    padding-left: 8px;
    color: var(--primary-color);
}
