/* Custom CSS for NaijaCrypto Mastery Landing Page */

/* Video Section & Hidden Content Styles */
.hidden-section {
    display: none !important;
    visibility: hidden !important;
}

/* Always hide language selector - English Nigerian only */
.language-switcher {
    display: none !important;
}

/* Mobile menu fix - ensure it starts closed */
@media (max-width: 991.98px) {
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
    
    /* Ensure toggle button works properly */
    .navbar-toggler.collapsed .navbar-toggler-icon {
        transform: rotate(0deg);
    }
}

/* Clean video section - regenerated completely */
.clean-video-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 1rem 2rem 1rem;
    position: relative;
}

.video-wrapper {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F8F9FA;
    text-shadow: 0 3px 6px rgba(247, 220, 111, 0.6);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #F7DC6F;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.clean-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 0;
}

.images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    padding: 0;
}

.ebook-image {
    flex: 1;
    width: calc(50% - 5px);
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.clean-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 1;
}

/* Hide all YouTube UI elements completely */
.clean-video-container {
    overflow: hidden;
}

.clean-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Audio activation indicator */
.audio-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: pulse 2s infinite;
    transition: opacity 0.3s ease;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    .audio-indicator {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1rem;
        justify-content: center;
        border-radius: 30px;
    }
}

.audio-indicator i {
    font-size: 1rem;
}

.audio-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Video purchase button */
.video-purchase-button {
    text-align: center;
    margin: 2rem 0;
    padding: 0 1rem;
}

.video-purchase-button .btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-purchase-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.pulse-animation {
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading screen styles removed - using video-only loading now */



/* General loading styles removed - only video loading remains */

/* Responsive design for clean video section */
@media (max-width: 768px) {
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .clean-video-section {
        padding: 90px 0.5rem 1rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .clean-video-section {
        padding: 80px 0.25rem 1rem 0.25rem;
    }
}



/* Hidden countdown styling */
.countdown-timer {
    margin-top: 2rem;
}

.countdown-text {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.countdown-display {
    background: #e74c3c;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.countdown-number {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.section-reveal {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Responsive Styles for All Sections */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.8rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.4rem !important;
        line-height: 1.2;
    }
    
    .display-4 {
        font-size: 2.2rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .btn-lg {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    /* Navigation responsive */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .language-switcher {
        top: 75px;
        right: 10px;
        z-index: 1030;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* General section spacing */
    section {
        padding: 60px 0 40px;
    }
    
    .display-4 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .display-5 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    /* Cards and content */
    .card {
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.95rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
    
    /* Feature items */
    .feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .feature-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    /* Extra small screens */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .language-switcher {
        top: 80px;
        right: 8px;
        z-index: 1030;
    }
    
    .language-switcher .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Hero section */
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 1.6rem !important;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* General sections */
    section {
        padding: 40px 0 30px;
    }
    
    .display-4 {
        font-size: 1.5rem !important;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .display-5 {
        font-size: 1.3rem !important;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    /* Text sizes */
    .lead {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    /* Spacing */
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Images */
    .img-fluid {
        max-width: 100%;
        height: auto;
    }
    
    /* FAQ and accordion */
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
    
    /* Footer */
    footer {
        padding: 30px 0 20px;
    }
    
    footer h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Video Play Overlay Styles */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

/* YouTube iframe with volume-only controls */
.youtube-volume-only {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}

/* Ensure proper aspect ratio for video */
.video-container .ratio {
    width: 100%;
    aspect-ratio: 16/9;
}

/* Clean styles - removed play overlay */

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

:root {
    --primary-green: #00b894;
    --primary-blue: #0984e3;
    --primary-gold: #fdcb6e;
    --dark-blue: #2d3436;
    --light-gray: #f8f9fa;
    --success-green: #00b894;
    --danger-red: #e17055;
    --warning-orange: #fd7e14;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1040;
}

.language-switcher .btn {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.7);
}

.language-switcher .btn:hover {
    background: rgba(0, 184, 148, 0.8);
    border-color: var(--primary-green);
}

/* Navbar brand always visible styling */
.navbar-brand {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Responsive adjustments for language switcher */
@media (max-width: 991px) {
    .language-switcher {
        top: 70px;
        right: 15px;
        z-index: 1030;
    }
    
    .language-switcher .btn {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        top: 75px;
        right: 10px;
        z-index: 1030;
    }
    
    .language-switcher .btn {
        font-size: 0.85rem;
        padding: 0.45rem 0.7rem;
    }
    
    /* Ensure navbar toggler doesn't overlap */
    .navbar-toggler {
        z-index: 1051;
        margin-right: 60px;
    }
}

@media (max-width: 576px) {
    .language-switcher {
        top: 80px;
        right: 8px;
        z-index: 1030;
    }
    
    .language-switcher .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    .navbar-toggler {
        margin-right: 50px;
    }
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(33, 37, 41, 0.95) !important;
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    line-height: 1;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Add padding for desktop to account for fixed navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-features .feature-item,
.guarantee-features .feature-item,
.solution-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-features .feature-item i,
.guarantee-features .feature-item i,
.solution-features .feature-item i {
    font-size: 1.2rem;
    min-width: 25px;
}

/* Problem Cards */
.problem-card {
    background: var(--dark-blue);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--danger-red);
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.problem-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card p {
    color: #f8f9fa;
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
    background: var(--dark-blue);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-green);
    color: #f8f9fa;
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Solution Image Container */
.solution-image-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.solution-image-container:hover {
    transform: scale(1.02);
}

/* Method Steps */
.method-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.method-step:hover {
    transform: translateY(-3px);
}

.step-number {
    background: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 50px;
}

.step-content h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--dark-blue);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    color: #f8f9fa;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.testimonial-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.stars {
    font-size: 1rem;
}

/* Qualification Lists */
.qualification-section {
    background: var(--dark-blue);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    color: #f8f9fa;
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.qualification-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.qualification-section.danger .qualification-list li::before {
    content: '✗';
    color: var(--danger-red);
}

/* Offer Section */
.offer-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.price-comparison {
    margin: 20px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: bold;
}

/* Special Price Amount Styling */
.special-price-amount {
    font-size: 30px;
    font-weight: 600;
    color: #00FF88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    display: block;
    margin-top: 5px;
}

/* Guarantee Section */
.guarantee-badge {
    font-size: 5rem;
    color: var(--primary-green);
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: var(--primary-green);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
}

/* Buttons */
.btn-success {
    background: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: #00a085;
    border-color: #00a085;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 184, 148, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Utility Classes */
.rounded-lg {
    border-radius: 15px !important;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 80px; /* Reduced padding for mobile */
    }
    
    .hero-features {
        align-items: center;
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .new-price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding-top: 70px; /* Even smaller padding for very small screens */
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .problem-card,
    .benefit-card,
    .method-step,
    .testimonial-card,
    .qualification-section {
        padding: 1.5rem;
    }
    
    .offer-content {
        padding: 2rem !important;
    }
}

/* Light background sections styling - FIXED FOR DESKTOP */
.bg-light {
    background-color: #2c3e50 !important;
    color: #ffffff !important;
}

.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: #ffffff !important;
}

.bg-light p,
.bg-light .lead {
    color: #f8f9fa !important;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .bg-light {
        background-color: #2c3e50 !important;
    }
    
    .bg-light .problem-card,
    .bg-light .benefit-card,
    .bg-light .testimonial-card,
    .bg-light .qualification-section {
        background: #34495e;
        color: white;
    }
}

/* Loading Animation for Language Switch */
.loading {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.accordion-button:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Video Progress Bar Styling */
.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 0;
    z-index: 9999;
    display: block !important;
    visibility: visible !important;
}

.video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.video-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    border-radius: 0;
    width: 0%;
    animation: videoProgress 285s ease-out forwards;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.6);
    display: block !important;
}

/* Progress labels removed - no longer needed */

/* Progress Animation - Fast start, gradual slowdown */
@keyframes videoProgress {
    0% { width: 0%; }
    5% { width: 15%; }    /* Fast progress in first 14.25s */
    10% { width: 25%; }   /* Still fast in first 28.5s */
    20% { width: 40%; }   /* Moderate speed at 57s */
    30% { width: 52%; }   /* Slowing down at 85.5s */
    40% { width: 62%; }   /* Slower at 114s */
    50% { width: 70%; }   /* Getting slower at 142.5s */
    60% { width: 77%; }   /* Much slower at 171s */
    70% { width: 83%; }   /* Very slow at 199.5s */
    80% { width: 88%; }   /* Crawling at 228s */
    90% { width: 93%; }   /* Almost stopped at 256.5s */
    95% { width: 96%; }   /* Barely moving at 270.75s */
    100% { width: 100%; } /* Complete at 285s (4:45) */
}

/* Scroll Indicator Arrow */
.scroll-indicator {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.scroll-indicator.visible {
    visibility: visible;
    opacity: 1;
    animation: scrollIndicatorFadeIn 1s ease-out forwards;
}

.scroll-arrow {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: bounceArrow 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.scroll-arrow i {
    font-size: 1.2rem;
    animation: chevronPulse 1.5s infinite ease-in-out;
}

/* Scroll indicator animations */
@keyframes scrollIndicatorFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes chevronPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(2px);
    }
}

/* Mobile progress bar adjustments */
@media (max-width: 768px) {
    .video-progress-container {
        padding: 0;
    }
    
    .video-progress-bar {
        height: 3px;
        margin-bottom: 0;
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .language-switcher,
    .btn,
    .video-progress-container {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}
