/* Critical CSS for above-the-fold content */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Optimize for critical rendering */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #121212;
    border-bottom: 1px solid #374151;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* px-4 */
}

.hidden {
    display: none !important;
}

/* Colors - matching Tailwind config */
.text-white {
    color: #ffffff;
}

.text-primary {
    color: #E5FF10; /* primary color */
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-800 {
    color: #1f2937;
}

.bg-dark {
    background-color: #121212;
}

.bg-secondary {
    background-color: #1A1A1A;
}

.bg-primary {
    background-color: #E5FF10;
}

.bg-gray-700 {
    background-color: #374151;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #E5FF10;
    color: #000000;
    border-radius: 9999px; /* rounded-full */
    padding: 0.75rem 2rem; /* px-8 py-3 */
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: rgba(229, 255, 16, 0.9);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1A1A1A;
    color: #ffffff;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #374151;
    transform: translateY(-1px);
}

.btn-secondary.disabled {
    background-color: #374151;
    color: #6b7280;
    cursor: not-allowed;
    transform: none;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    background-color: #121212;
    color: #ffffff;
    padding: 1rem 0; /* py-4 */
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 2.5rem; /* h-10 */
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem; /* space-x-4 */
}

.nav-btn {
    background-color: #E5FF10;
    color: #000000;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(229, 255, 16, 0.9);
    transform: translateY(-1px);
}

/* Main */
.main {
    flex-grow: 1;
}

/* Hero Section */
.hero {
    padding: 4rem 1rem; /* py-16 px-4 */
    background-color: #121212;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; /* gap-10 */
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
    }
}

.hero-title {
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    margin-bottom: 1rem; /* mb-4 */
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem; /* text-xl */
    color: #d1d5db; /* text-gray-300 */
    margin-bottom: 2rem; /* mb-8 */
    line-height: 1.6;
}

.hero-actions {
    margin-top: 1rem;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem; /* rounded-lg */
    position: relative;
    z-index: 10;
}

/* Episodes Preview Section */
.episodes-preview {
    padding: 4rem 1rem; /* py-16 px-4 */
    background-color: #121212;
}

.episodes-header {
    display: flex;
    justify-content: flex-end; /* justify-end */
    margin-bottom: 2rem; /* mb-8 */
}

/* Episode Header (for episodes page) */
.episode-header {
    background-color: #1A1A1A; /* bg-secondary */
    padding: 2rem 0; /* py-8 */
}

.episode-header-content {
    background-color: #E5FF10; /* bg-primary */
    width: 100%;
    border-radius: 0.5rem; /* rounded-lg */
    padding: 4rem 0; /* py-16 */
}

.episode-header-title {
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    color: #000000; /* text-black */
    text-align: center;
}

/* Episode Header Secondary (for video page) */
.episode-header-secondary {
    background-color: #1A1A1A; /* bg-secondary */
    padding: 1rem 0; /* py-4 */
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #E5FF10; /* text-primary */
    text-decoration: none;
    transition: color 0.3s ease;
    gap: 0.25rem; /* mr-1 */
}

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

.episode-title-container {
    margin-top: 0.5rem; /* mt-2 */
}

.episode-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: #ffffff;
}

/* Episodes Page */
.episodes-page {
    background-color: #121212; /* bg-dark */
    padding: 3rem 0; /* py-12 */
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
}

@media (min-width: 640px) {
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
    }
}

@media (min-width: 1024px) {
    .episodes-grid {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
    }
}

/* Pagination */
.pagination {
    margin-top: 3rem; /* mt-12 */
    display: flex;
    justify-content: center;
}

.pagination-content {
    display: flex;
    align-items: center;
    gap: 1rem; /* space-x-4 */
}

.page-info {
    color: #9ca3af; /* text-gray-400 */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.page-number {
    background: none;
    border: 1px solid #374151;
    color: #9ca3af;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.page-number:hover {
    background-color: #374151;
    color: #ffffff;
}

.current-page {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.page-total {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Video Page */
.video-page {
    background-color: #121212; /* bg-dark */
    padding: 2rem 0; /* py-8 */
}

.video-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
}

@media (min-width: 1024px) {
    .video-layout {
        grid-template-columns: repeat(12, 1fr); /* lg:grid-cols-12 gap-8 */
    }
}

.video-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .video-main {
        grid-column: span 8; /* lg:col-span-8 */
    }
}

.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .video-sidebar {
        grid-column: span 4; /* lg:col-span-4 */
    }
}

/* Video Player */
.video-player-container {
    width: 100%;
}

.video-player {
    width: 100%;
    background-color: #000000;
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-xl */
}

.video-player-wrapper {
    width: 100%;
    position: relative;
    background-color: #000000;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-iframe {
    width: 100%;
    height: 0;
    min-height: 360px;
    border: none;
    aspect-ratio: 16/9;
    display: block;
}

.video-player iframe {
    width: 100%;
    height: 0;
    min-height: 360px;
    border: none;
    aspect-ratio: 16/9;
}

/* Download Section */
.download-section {
    margin-top: 1rem;
    width: 100%;
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #1A1A1A;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid #374151;
    width: 100%;
}

.file-size-box {
    background-color: #374151;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    min-width: 100px;
    text-align: center;
}

.file-size-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #E5FF10;
    color: #000000;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.download-button:hover {
    background-color: rgba(229, 255, 16, 0.9);
    transform: translateY(-2px);
}

.download-button .icon {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for download section */
@media (max-width: 768px) {
    .download-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        justify-content: center;
    }
    
    .file-size-box {
        min-width: 80px;
        padding: 0.5rem 0.75rem;
    }
    
    .file-size-text {
        font-size: 0.8rem;
    }
    
    .download-button {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .download-container {
        padding: 0.75rem;
    }
    
    .file-size-box {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .file-size-text {
        font-size: 0.75rem;
    }
    
    .download-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Share Section */
.share-section {
    margin-top: 1rem; /* mt-4 */
    margin-bottom: 1.5rem; /* mb-6 */
    background-color: #1A1A1A; /* bg-secondary */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1rem; /* p-4 */
    border: 1px solid #374151;
}

@media (min-width: 640px) {
    .share-section {
        padding: 1.25rem; /* sm:p-5 */
    }
}

@media (max-width: 480px) {
    .share-section {
        padding: 0.75rem;
    }
    
    .share-buttons {
        gap: 0.375rem;
    }
    
    .share-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

.share-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: #ffffff;
    margin-bottom: 0.75rem; /* mb-3 */
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
}

.share-label {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

@media (min-width: 640px) {
    .share-buttons {
        gap: 0.75rem; /* sm:gap-3 */
    }
    
    .share-label {
        font-size: 1rem;
    }
}

/* Share Buttons */
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    font-size: 18px;
    color: white;
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.telegram {
    background-color: #0088cc;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.linkedin {
    background-color: #0A66C2;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-btn.copy {
    background-color: #374151;
}

.share-btn.copy:hover {
    background-color: #4B5563;
}

@media (max-width: 640px) {
    .share-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .share-label {
        font-size: 0.8rem;
    }
}

/* Copy success animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.copy-success {
    animation: slideIn 0.3s ease;
}

/* Video Details */
.video-details {
    margin-top: 1.5rem; /* mt-6 */
}

.video-meta-info {
    display: flex;
    align-items: center;
    color: #9ca3af; /* text-gray-400 */
    margin-bottom: 1.5rem; /* mb-6 */
    gap: 0.5rem; /* mr-2 */
}

.video-description {
    background-color: #1A1A1A; /* bg-secondary */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1.5rem; /* p-6 */
}

.description-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem; /* mb-4 */
    color: #ffffff;
}

.description-text {
    color: #d1d5db; /* text-gray-300 */
    line-height: 1.6;
}

/* Host Info */
.host-info {
    background-color: #E5FF10; /* bg-primary */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1.5rem; /* p-6 */
    color: #000000; /* text-black */
    margin-bottom: 2rem; /* mb-8 */
}

.host-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    margin-bottom: 1rem; /* mb-4 */
}

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

.host-image {
    width: 12rem; /* w-48 */
    height: 12rem; /* h-48 */
    border-radius: 0.5rem; /* rounded-lg */
    object-fit: cover;
    margin-bottom: 1rem; /* mb-4 */
}

.host-name {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.5rem; /* mb-2 */
}

.host-description {
    font-size: 1rem; /* text-base */
    font-weight: 500;
    margin-bottom: 0.75rem; /* mb-3 */
    text-align: center;
}

.host-disclaimer {
    font-size: 0.875rem; /* text-sm */
    font-weight: 400;
    color: #666666; /* text-gray-600 */
    text-align: center;
    font-style: italic;
    padding: 0.5rem; /* p-2 */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem; /* rounded-md */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Google AdSense Ad */
.google-ad-section {
    margin-bottom: 2rem; /* mb-8 */
}

.google-ad-container {
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem; /* rounded-lg */
    background-color: #1A1A1A; /* bg-secondary */
    padding: 0.5rem; /* p-2 */
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    background-color: #374151;
    border-radius: 0.375rem; /* rounded-md */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Related Videos */
.related-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.related-videos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-video-card {
    width: 100%;
}

.related-video-link {
    display: block;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: #1A1A1A;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-video-link:hover {
    background-color: rgba(26, 26, 26, 0.8);
    transform: translateY(-2px);
}

.related-video-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-video-link:hover .related-video-thumbnail {
    transform: scale(1.05);
}

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

.related-video-link:hover .related-video-play-overlay {
    opacity: 1;
}

.play-icon {
    width: 24px;
    height: 24px;
    color: #000000;
}

.related-video-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background-color: #E5FF10;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.related-video-info-overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.related-video-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.related-video-content {
    padding: 1rem;
}

.related-video-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-video-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.related-video-author {
    color: #E5FF10;
    font-weight: 500;
}

.related-video-size {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.related-video-size .icon {
    width: 14px;
    height: 14px;
}

/* Loading */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0; /* py-16 */
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #374151;
    border-top: 4px solid #E5FF10;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error */
.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0; /* py-10 */
    color: #ef4444;
    gap: 1rem;
}

.error .icon {
    width: 48px;
    height: 48px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
}

@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
    }
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
    }
}

/* Video Card */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* rounded-lg */
    background-color: #1A1A1A; /* bg-secondary */
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    background-color: rgba(26, 26, 26, 0.8); /* hover:bg-opacity-80 */
    transform: translateY(-2px);
}

.video-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9; /* aspect-video */
    overflow: hidden;
}

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

.episode-badge {
    position: absolute;
    top: 1rem; /* top-4 */
    left: 1rem; /* left-4 */
    z-index: 10;
    background-color: #E5FF10;
    color: #000000;
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 0.375rem; /* rounded-md */
    font-weight: 700;
    font-size: 0.875rem;
}

.video-info {
    padding: 1rem; /* p-4 */
}

.episode-number {
    font-size: 0.875rem; /* text-sm */
    color: #E5FF10;
    font-weight: 500;
    margin-bottom: 0.25rem; /* mb-1 */
}

.video-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem; /* mb-2 */
    line-height: 1.4;
}

.video-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* gap-2 */
}

.video-author {
    color: #9ca3af; /* text-gray-400 */
}

.video-size {
    display: flex;
    align-items: center;
    color: #9ca3af; /* text-gray-400 */
    gap: 0.5rem; /* mr-2 */
}

.video-size .icon {
    width: 16px;
    height: 16px;
}

/* Footer */
.footer {
    background-color: #121212;
    color: #ffffff;
    padding: 2rem 0; /* py-8 */
    margin-top: auto; /* mt-auto */
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; /* mb-8 */
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row; /* md:flex-row */
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-brand {
        align-items: flex-start;
        margin-bottom: 0; /* md:mb-0 */
    }
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* space-x-2 */
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    height: 2rem; /* h-8 */
}

.brand-text {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* ml-2 */
}

.footer-description {
    color: #9ca3af; /* text-gray-400 */
    margin-top: 0.5rem; /* mt-2 */
    font-size: 0.875rem; /* text-sm */
}

.footer-actions {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-actions {
        justify-content: flex-end;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem; /* pt-6 */
    border-top: 1px solid #374151; /* border-t border-gray-800 */
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row; /* md:flex-row */
        margin-top: 0; /* md:mt-0 */
    }
}

.copyright {
    color: #9ca3af; /* text-gray-400 */
    font-size: 0.875rem; /* text-sm */
}

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

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* mr-2 */
    color: #9ca3af; /* text-gray-400 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E5FF10; /* hover:text-primary */
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.25rem; /* p-5 */
}

.modal-content {
    background: #ffffff;
    border-radius: 0.75rem; /* rounded-xl */
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    color: #000000;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem; /* p-6 */
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;
    color: #111827;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem; /* text-2xl */
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #f3f4f6;
}

.modal-body {
    padding: 1.5rem; /* p-6 */
}

.video-player {
    margin-bottom: 1.5rem; /* mb-6 */
}

.video-player iframe {
    width: 100%;
    height: 400px;
    border-radius: 0.5rem; /* rounded-lg */
    border: none;
}

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

.video-info p {
    color: #6b7280;
    font-size: 0.875rem; /* text-sm */
}

.video-actions {
    display: flex;
    gap: 0.75rem; /* gap-3 */
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo {
        height: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem; /* text-4xl */
    }
    
    .hero-description {
        font-size: 1.125rem; /* text-lg */
    }
    
    .video-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .episode-header-title {
        font-size: 2.25rem; /* text-4xl */
    }
    
    .episode-title {
        font-size: 1.875rem; /* text-3xl */
    }
    
    .video-layout {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .modal-content {
        margin: 1rem;
    }
    
    .video-player iframe {
        height: 250px;
    }
    
    .video-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .host-image {
        width: 8rem; /* Smaller on mobile */
        height: 8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem; /* px-3 */
    }
    
    .header-content {
        gap: 0.25rem;
    }
    
    .nav-btn {
        padding: 0.375rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .logo {
        height: 1.75rem;
    }
    
    .hero {
        padding: 2rem 0.75rem; /* py-8 px-3 */
    }
    
    .hero-title {
        font-size: 1.875rem; /* text-3xl */
    }
    
    .btn-primary {
        padding: 0.625rem 1.5rem; /* px-6 py-2.5 */
        font-size: 0.875rem; /* text-sm */
    }
    
    .episode-header-title {
        font-size: 1.875rem; /* text-3xl */
    }
    
    .episode-title {
        font-size: 1.5rem; /* text-2xl */
    }
}

