/* Ensure Font Awesome icons load properly */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Performance Optimizations */
.video-grid {
    contain: layout style paint;
    transform: translateZ(0); /* Force GPU acceleration */
}

.video-card {
    contain: layout style paint;
    will-change: transform;
    backface-visibility: hidden;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #f0f0f0;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 68px;
    height: 48px;
}

/* Fallback placeholder styles */
.video-placeholder-fallback {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-placeholder-fallback:hover {
    transform: scale(1.02);
}

/* Fade-in animation for filtered content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #318f10;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #318f10;
    background-color: rgba(49, 143, 16, 0.1);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #318f10;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23318f10" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    background: linear-gradient(45deg, #318f10, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #318f10;
    color: white;
    border: 2px solid #318f10;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(49, 143, 16, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #318f10;
}

.btn-secondary:hover {
    background: #318f10;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(49, 143, 16, 0.3);
}

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

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(49, 143, 16, 0.1);
    border: 2px solid #318f10;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-social a:hover {
    background: #318f10;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(49, 143, 16, 0.3);
}

.hero-social i {
    font-size: 1.2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Featured Section */
.featured {
    padding: 8rem 0 4rem;
    background-color: #ffffff;
}

.featured .container {
  max-width: 1600px !important;
}

.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    padding: 1.5rem;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.featured-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.featured-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-link {
    background: #318f10;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    background: #2a7a0e;
    transform: translateY(-2px);
    color: white;
}

.btn {
    display: inline-block;
    background-color: #318f10;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #318f10;
}

.btn:hover {
    background-color: #2a7a0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 143, 16, 0.3);
}

/* Footer */
.footer {
    background-color: #333;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #318f10;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

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

.footer-attribution a {
    color: #318f10;
    text-decoration: none;
}

.footer-attribution a:hover {
    color: #2a7a0e;
    text-decoration: underline;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: #318f10;
    background-color: rgba(49, 143, 16, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-radius: 0;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-left, .hero-right {
        flex: none;
        padding: 1rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-social {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 80%;
        margin-top: 2rem;
    }
    
    .hero-logo h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .social-media {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .featured h2 {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-logo {
        max-width: 80px;
        margin-bottom: 0.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social, .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
        height: auto;
    }
    
    .hero-logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .social-media {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured {
        padding: 2rem 0;
    }
    
    .featured h2 {
        font-size: 1.8rem;
    }
}

/* Animation for hamburger menu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #318f10 0%, #2a7a0e 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #318f10;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #2a7a0e;
}

.breadcrumb-nav span {
    color: #666;
}

/* Archive Categories Styles */
.archive-categories {
    padding: 4rem 0;
}

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

.category-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(49, 143, 16, 0.15);
    border-color: #318f10;
    color: #333;
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: #318f10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background-color: #2a7a0e;
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-count {
    display: inline-block;
    background-color: #318f10;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.podcast-video-section {
    padding: 0 0 4rem;
}

/* Video Section Styles */
.video-section {
    padding: 4rem 0;
}

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

.video-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.video-date {
    color: #318f10;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.video-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Recent Episodes Styles */
.recent-episodes {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.recent-episodes h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.episode-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.episode-thumbnail {
    position: relative;
    overflow: hidden;
}

.episode-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.episode-card:hover .episode-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(49, 143, 16, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.episode-card:hover .play-button {
    background-color: #318f10;
    transform: translate(-50%, -50%) scale(1.1);
}

.episode-info {
    padding: 1.5rem;
}

.episode-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.episode-date {
    color: #318f10;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.episode-description {
    color: #666;
    line-height: 1.5;
}

/* Convention Gallery Styles */
.convention-gallery {
    padding: 4rem 0;
}

.convention-section {
    margin-bottom: 4rem;
}

.convention-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.gallery-card img {
    border-radius: 12px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-gallery-btn {
    background-color: #318f10;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-gallery-btn:hover {
    background-color: #2a7a0e;
    transform: translateY(-2px);
}

/* Featured Cosplayers Styles */
.featured-cosplayers {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.featured-cosplayers h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.cosplayer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cosplayer-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

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

.cosplayer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cosplayer-info {
    padding: 1.5rem;
}

.cosplayer-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.cosplayer-info p {
    color: #666;
    margin-bottom: 1rem;
}

.cosplayer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cosplayer-social a {
    color: #318f10;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.cosplayer-social a:hover {
    color: #2a7a0e;
}

/* Reviews Page Styles */
.filter-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #318f10;
    color: #ffffff;
    border-color: #318f10;
}

.reviews-section {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.review-image {
    position: relative;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(49, 143, 16, 0.9);
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.rating {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stars {
    font-size: 0.8rem;
}

.review-content {
    padding: 1.5rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.category {
    background-color: #318f10;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.date {
    color: #666;
}

.review-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-block;
    background-color: #318f10;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #2a7a0e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 143, 16, 0.3);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 2001;
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-gallery {
    padding: 2rem;
}

.lightbox-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.lightbox-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 70vh;
    overflow-y: auto;
}

.lightbox-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-images img:hover {
    transform: scale(1.05);
}

/* Filter Section Styles */
.podcast-filter-section {
    padding: 2rem 0;
}

/* Filter Section Styles */
.filter-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #ffffff;
    border: 2px solid #318f10;
    color: #318f10;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background-color: #318f10;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 143, 16, 0.3);
}

.filter-btn.active {
    background-color: #318f10;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(49, 143, 16, 0.4);
}

.filter-btn.active:hover {
    background-color: #2a7a0e;
    transform: translateY(-1px);
}

/* Mobile responsiveness for filter buttons */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Video Thumbnail Performance Optimization */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-thumbnail:hover .play-button-1 {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-1 svg {
    width: 68px;
    height: 48px;
}

/* Optimize video grid for better performance */
.video-grid {
    contain: layout style paint;
}

.video-card {
    contain: layout style paint;
    will-change: transform;
}

/* Reduce repaints during filtering */
.video-card[style*="display: none"] {
    display: none !important;
}