/* Black Friday Dark Theme Styles */

.black-friday-theme {
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
}

/* Dark theme color variables */
.black-friday-theme {
    --bf-dark-1: #1a1a1a;
    --bf-dark-2: #252525;
}

.black-friday-theme .hero {
    background: var(--bf-dark-1);
    color: #ffffff;
    padding: 4rem 2rem;
}

.black-friday-theme .hero h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.black-friday-theme .hero .subtitle {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.black-friday-theme .hero .text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Black Friday Badge */
.bf-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
}

/* Discount Highlight */
.bf-discount {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.5);
    margin: 1rem 0;
    line-height: 1.2;
}

.bf-discount-small {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.bf-save-amount {
    color: #4ade80;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Countdown Timer */
.countdown-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.countdown-label-small {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0.25rem;
}

.countdown-expired {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: 600;
}

/* CTA Buttons */
.black-friday-theme .hero-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 100% !important;
    width: 100%;
}

.black-friday-theme .hero-reviews {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem;
}

.black-friday-theme .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.black-friday-theme .btn-primary:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff7b45 0%, #ffa31e 100%);
}

.black-friday-theme .btn-primary.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pricing Display */
.bf-pricing {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.bf-pricing-original {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.bf-pricing-current {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    margin: 0.5rem 0;
}

.bf-pricing-period {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

.bf-pricing-savings {
    color: #4ade80;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Trial Container for Black Friday - add top padding for badge */
.black-friday-theme .trial-container {
    padding-top: 2.2rem;
    background: var(--bf-dark-1) !important;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add margin to title to accommodate badge */
.black-friday-theme .trial-container .trial-title {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.black-friday-theme .trial-subtitle {
    margin-bottom: 1.2rem;
    color: #e0e0e0 !important;
}

/* Trial Card for Black Friday */
.black-friday-theme .trial-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 1.2rem 1rem 0.4rem 1rem;
    margin: 1.2rem auto 1.2rem auto;
    text-align: center;
    max-width: 340px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.black-friday-theme .trial-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.black-friday-theme .trial-plan {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.black-friday-theme .trial-price {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.black-friday-theme .trial-price .trial-month {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 0.2rem;
}

.black-friday-theme .trial-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin: 1rem auto 0.5rem auto;
    width: 100%;
    max-width: 400px;
    display: block;
}

.black-friday-theme .trial-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.black-friday-theme .trial-skip-link {
    display: block;
    color: #ffffff !important;
    text-decoration: underline;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    transition: color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.black-friday-theme .trial-skip-link:hover {
    color: #ffd700 !important;
}

.black-friday-theme .trial-skip-link.loading {
    color: #999 !important;
    text-decoration: none;
    cursor: not-allowed;
}

/* Timeline for Black Friday */
.black-friday-theme .timeline {
    position: relative;
    margin: 1.2rem 0;
}

.black-friday-theme .timeline-line {
    background: linear-gradient(180deg, #ffd700 0%, #ff6b35 100%);
}

.black-friday-theme .timeline-step {
    color: #ffffff;
}

.black-friday-theme .timeline-title {
    color: #ffd700 !important;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.black-friday-theme .timeline-desc {
    color: #e0e0e0 !important;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.5;
}

.black-friday-theme .timeline-content {
    color: #ffffff;
}

/* Hero Section Responsive */
.black-friday-theme .hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 768px) {
    .black-friday-theme .hero .hero-content {
        text-align: center;
    }

    .black-friday-theme .hero h1 {
        font-size: 2rem;
    }

    .bf-discount {
        font-size: 2.5rem;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-unit {
        min-width: 60px;
        padding: 0.75rem;
    }

    .bf-pricing-current {
        font-size: 2rem;
    }

    .black-friday-theme .trial-price {
        font-size: 1.5rem;
    }
    
    .black-friday-theme .trial-price span[style*="font-size: 1.8rem"] {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .countdown-time {
        gap: 0.25rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.1rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-unit {
        min-width: 50px;
        padding: 0.5rem;
    }
}

/* Section Background Colors - Alternating */
.black-friday-theme .hero {
    background: var(--bf-dark-1);
}

.black-friday-theme .social-proof-quotes {
    background: var(--bf-dark-2);
}

.black-friday-theme .what-is {
    background: var(--bf-dark-1);
}

.black-friday-theme .neuroinclusive {
    background: var(--bf-dark-2);
    padding: 4rem 2rem;
}

.black-friday-theme .neuroinclusive h2 {
    color: #ffd700;
}

.black-friday-theme .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.black-friday-theme .feature-title {
    color: #ffd700;
}

.black-friday-theme .feature-description {
    color: #e0e0e0;
}

/* What You Get section */
.black-friday-theme .what-you-get {
    background: var(--bf-dark-1);
}

/* Social proof quotes styling */
.black-friday-theme .social-proof-quote {
    color: #ffffff;
}

.black-friday-theme .social-proof-author {
    color: #e0e0e0;
}

/* Navigation Dark Theme */
body.black-friday-theme .navbar,
.black-friday-theme .navbar {
    background: var(--bf-dark-1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.black-friday-theme .nav-links a,
.black-friday-theme .nav-links a {
    color: #ffffff !important;
}

body.black-friday-theme .nav-links a:hover,
.black-friday-theme .nav-links a:hover {
    color: #ffd700 !important;
}

body.black-friday-theme .nav-links a:hover::after,
body.black-friday-theme .nav-links a[data-current="current"]::after,
.black-friday-theme .nav-links a:hover::after,
.black-friday-theme .nav-links a[data-current="current"]::after {
    background-color: #ffd700 !important;
}

body.black-friday-theme .nav-links a[data-current="current"],
.black-friday-theme .nav-links a[data-current="current"] {
    color: #ffd700 !important;
}

body.black-friday-theme .more-btn,
.black-friday-theme .more-btn {
    color: #ffffff !important;
}

body.black-friday-theme .more-btn:hover,
.black-friday-theme .more-btn:hover {
    color: #ffd700 !important;
}

body.black-friday-theme .nav-dropdown,
.black-friday-theme .nav-dropdown {
    background: var(--bf-dark-2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.black-friday-theme .nav-dropdown a,
.black-friday-theme .nav-dropdown a {
    color: #ffffff !important;
}

body.black-friday-theme .nav-dropdown a:hover,
.black-friday-theme .nav-dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffd700 !important;
}

body.black-friday-theme .nav-dropdown a[data-current="current"],
.black-friday-theme .nav-dropdown a[data-current="current"] {
    color: #ffd700 !important;
}

body.black-friday-theme .nav-dropdown a[data-current="current"]::after,
.black-friday-theme .nav-dropdown a[data-current="current"]::after {
    background-color: #ffd700 !important;
}

body.black-friday-theme .nav-cta a,
.black-friday-theme .nav-cta a {
    color: #ffffff !important;
}

body.black-friday-theme .nav-cta a:hover,
.black-friday-theme .nav-cta a:hover {
    color: #ffd700 !important;
}

body.black-friday-theme .nav-cta a:hover::after,
.black-friday-theme .nav-cta a:hover::after {
    background-color: #ffd700 !important;
}

/* Mobile Navigation Dark Theme */
body.black-friday-theme .mobile-nav,
.black-friday-theme .mobile-nav {
    background: var(--bf-dark-2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.black-friday-theme .mobile-nav a,
.black-friday-theme .mobile-nav a {
    color: #ffffff !important;
}

body.black-friday-theme .mobile-nav a:hover,
.black-friday-theme .mobile-nav a:hover {
    color: #ffd700 !important;
    background-color: rgba(255, 255, 255, 0.05);
}

body.black-friday-theme .mobile-nav a[data-current="current"],
.black-friday-theme .mobile-nav a[data-current="current"] {
    color: #ffd700 !important;
}

body.black-friday-theme .mobile-nav a[data-current="current"]::after,
.black-friday-theme .mobile-nav a[data-current="current"]::after {
    background-color: #ffd700 !important;
}

body.black-friday-theme .mobile-menu-btn span,
.black-friday-theme .mobile-menu-btn span {
    background: #ffffff !important;
}

