 * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #0f3b00;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .header {
            background: #2c3e50;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .topic-title {
            font-size: 1.3em;
            font-weight: bold;
            color: #ecf0f1;
            text-decoration: none;
        }
        
        .counter {
            background: #34495e;
            padding: 5px 15px;
            border-radius: 20px;
            color: #bdc3c7;
            font-size: 0.9em;
        }
        
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        /* Image container with relative positioning for overlay */
        #image-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
        position: relative;
        }
        
        #main-image {
            max-width: 90vw;
            max-height: 80vh;
            object-fit: contain;
            border: 2px solid #34495e;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            background: #2c3e50;
        }
        /* Navigation overlays */
        .image-nav-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        z-index: 10;
        }

        .nav-arrow {
        pointer-events: auto;
        background: rgba(0, 0, 0, 0.7);
        /* Fallback for older browsers */
        backdrop-filter: blur(5px);
        color: white;
        font-size: 4rem;
        font-weight: bold;
        text-decoration: none;
        padding: 20px 30px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        border-radius: 60px;
        margin: 0 20px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: monospace;
        cursor: pointer;
        }

        .nav-arrow:hover:not(.disabled) {
        background: rgba(0, 0, 0, 0.85);
        transform: scale(1.1);
        backdrop-filter: blur(8px);
        }

        .nav-arrow.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
        .nav-arrow {
        font-size: 2.5rem;
        padding: 12px 20px;
        margin: 0 10px;
        border-radius: 40px;
        }
   }

        @media (max-width: 480px) {
        .nav-arrow {
        font-size: 2rem;
        padding: 8px 16px;
        margin: 0 5px;
        }
        }

        /* Hide old navigation buttons but keep them for fallback */
        .nav-buttons {
        display: none;
        }
        .video-container {
            width: 90vw;
            max-width: 1200px;
            aspect-ratio: 16/9;
            margin: 20px auto;
        }
        
        .video-container iframe {
            width: 100%;
            height: 100%;
            border: 2px solid #34495e;
            border-radius: 8px;
        }
        
/* Info button styling */
.title-section {
    text-align: center;
    margin: 20px 0 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.5);
    border-radius: 50%;
    color: #3498db;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
    position: relative;
}

.info-button:hover {
    background: rgba(52, 152, 219, 0.4);
    transform: scale(1.1);
}

/* Tooltip styling */
.info-tooltip {
    position: fixed;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95em;
    line-height: 1.5;
    max-width: 300px;
    width: max-content;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-left: 4px solid #3498db;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
}

.info-tooltip.show {
    opacity: 1;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .info-button {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .info-tooltip {
        max-width: 250px;
        padding: 12px 16px;
        font-size: 0.9em;
    }
}

/* Counter styling moved to title section */
.title-counter {
    background: #34495e;
    padding: 4px 12px;
    border-radius: 20px;
    color: #bdc3c7;
    font-size: 0.85em;
    font-weight: normal;
}
        
.image-title {
    font-size: 1.4em;
    color: #ecf0f1;
    margin-bottom: 5px;
    cursor: help; /* Shows it's interactive */
    border-bottom: 1px dotted rgba(255,255,255,0.3);
}
        .image-counter {
            color: #95a5a6;
            font-size: 1em;
        }
        
        .description {
            max-width: 800px;
            margin: 20px auto;
            padding: 25px;
            background: #2c3e50;
            border-radius: 8px;
            color: #ecf0f1;
            line-height: 1.8;
            font-size: 1.1em;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .nav-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .nav-button {
            background: #3498db;
            color: white;
            text-decoration: none;
            padding: 15px 40px;
            border-radius: 40px;
            font-size: 1.2em;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(52,152,219,0.3);
        }
        
        .nav-button.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: #7f8c8d;
            pointer-events: none;
}
        
        .nav-button:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(52,152,219,0.4);
        }
        
        .nav-button.prev::before {
            content: "← ";
        }
        
        .nav-button.next::after {
            content: " →";
        }
        
        .quality-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8em;
            z-index: 1000;
        }
        
        .footer {
            background: #2c3e50;
            padding: 15px;
            text-align: center;
            color: #95a5a6;
            margin-top: 40px;
        }
        
        .footer a {
            color: #3498db;
            text-decoration: none;
            margin: 0 10px;
        }
        
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .nav-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-button {
                width: 80%;
                text-align: center;
            }
            
            .description {
                padding: 15px;
                font-size: 1em;
            }
        }
        
/* Share button styling */
 .share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 28px;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.5);
    border-radius: 50%;
    color: #3498db;
    font-size: 16px;
    text-decoration: blink;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-button:hover {
    background: rgba(52, 152, 219, 0.4);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .share-button {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}
/* Update title-section to better align items */
.title-section {
    text-align: center;
    margin: 20px 0 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

/* Circle style for image title (like info button) */
.image-title-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: rgba(52, 152, 219, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.4);
    border-radius: 40px;
    padding: 0 16px;
    color: #ecf0f1;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.image-title-circle:hover {
    background: rgba(52, 152, 219, 0.3);
    transform: scale(1.02);
    border-color: rgba(52, 152, 219, 0.7);
}

/* Mobile optimization for title circle */
@media (max-width: 768px) {
    .image-title-circle {
        min-width: 32px;
        height: 32px;
        padding: 0 12px;
        font-size: 0.85em;
    }
}

/* Share button styling - improved for mobile */
.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 36px;
    height: 36px;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.5);
    border-radius: 40px;
    color: #3498db;
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 14px;
    white-space: nowrap;
}

.share-button:hover {
    background: rgba(52, 152, 219, 0.4);
    transform: scale(1.02);
}

/* Mobile share button - keep pill shape but don't break layout */
@media (max-width: 768px) {
    .share-button {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
        font-size: 0.8em;
        gap: 4px;
    }
}

/* For very small screens, maybe just icon */
@media (max-width: 480px) {
    .share-button {
        padding: 0 10px;
        min-width: auto;
    }
}

/* Info button styling - keep consistent */
.info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.5);
    border-radius: 50%;
    color: #3498db;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.info-button:hover {
    background: rgba(52, 152, 219, 0.4);
    transform: scale(1.1);
}

/* Mobile info button */
@media (max-width: 768px) {
    .info-button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Counter styling */
.title-counter {
    background: #34495e;
    padding: 4px 12px;
    border-radius: 20px;
    color: #bdc3c7;
    font-size: 0.85em;
    font-weight: normal;
    white-space: nowrap;
}

/* Mobile counter */
@media (max-width: 768px) {
    .title-counter {
        padding: 3px 10px;
        font-size: 0.75em;
    }
}
/* Video container for both YouTube and Bitchute */
.video-container {
    width: 90vw;
    max-width: 1200px;
    aspect-ratio: 16/9;
    margin: 20px auto;
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #34495e;
    border-radius: 8px;
}

/* For Bitchute specific iframe */
.video-container[data-platform="bitchute"] iframe {
    border: none;
}
/* Video wrapper and click-to-load styles */
.video-wrapper {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    margin: 20px auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-preview {
    position: relative;
    cursor: pointer;
    background: #1a1a1a;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2a3a 100%);
    text-align: center;
}

.video-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.video-placeholder-text {
    color: #ecf0f1;
    font-size: 1.1em;
    max-width: 80%;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    cursor: pointer;
}

.video-preview:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-preview:hover .play-button {
    transform: scale(1.1);
    background: rgba(52, 152, 219, 1);
}

.privacy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-preview:hover .privacy-overlay {
    transform: translateY(0);
}

.privacy-message {
    color: #ecf0f1;
    font-size: 0.9em;
}

.privacy-message p {
    margin: 5px 0;
}

.privacy-message strong {
    color: #3498db;
}

.load-video-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.load-video-btn:hover {
    background: #2980b9;
}

.video-container {
    display: none;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .privacy-message {
        font-size: 0.8em;
    }
    
    .privacy-message p {
        margin: 3px 0;
    }
    
    .load-video-btn {
        padding: 6px 16px;
        font-size: 0.8em;
    }
    
    .video-placeholder-icon {
        font-size: 48px;
    }
    
    .video-placeholder-text {
        font-size: 0.9em;
    }
}
        .activo {
            font-weight: bold;
            background: #e1ffdd;
        }
/* Navigation buttons below media (Index and Home) */
.media-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto 10px;
    padding: 10px;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.5);
    border-radius: 40px;
    padding: 8px 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-icon:hover {
    background: rgba(52, 152, 219, 0.4);
    transform: scale(1.02);
    border-color: rgba(52, 152, 219, 0.7);
}

.nav-icon .icon {
    font-size: 1.2em;
}

.nav-icon .icon-text {
    white-space: nowrap;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .media-nav {
        gap: 15px;
        margin: 15px auto 8px;
    }
    
    .nav-icon {
        padding: 6px 16px;
        font-size: 0.8em;
    }
    
    .nav-icon .icon {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .media-nav {
        gap: 12px;
    }
    
    .nav-icon {
        padding: 5px 14px;
        font-size: 0.75em;
    }
}
/* External link button for Bitchute */
.load-video-btn.external-link {
    text-decoration: none;
    display: inline-block;
    background: #e67e22;
    border-color: #f39c12;
}

.load-video-btn.external-link:hover {
    background: #d35400;
    transform: scale(1.02);
}

.small-note {
    font-size: 0.7em;
    margin-top: 10px;
    opacity: 0.8;
    line-height: 1.3;
}

/* Mobile optimization for Bitchute notice */
@media (max-width: 768px) {
    .small-note {
        font-size: 0.65em;
    }
}