/* ========================================
   PRICING PAGE - DARK MODE GAMING THEME
   Totally Different from Other Pages
   ======================================== */

/* Dark Body Background */
.pricing-body {
    background: #0a0a0f;
    color: #e4e4e7;
}

/* Dark Navigation */
.dark-nav {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-nav .nav-links a {
    color: #e4e4e7;
}

.dark-nav .nav-links a:hover {
    color: #00f5ff;
}

/* Hero Section - Dark Gaming Style */
.pricing-hero-dark {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #0a0a0f 0%, #14141f 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content-dark {
    text-align: center;
    position: relative;
    z-index: 1;
}

.level-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #00f5ff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pricing-hero-dark h1 {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin: 0 0 20px;
    line-height: 1.1;
}

.neon-text {
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #a1a1aa;
    margin-bottom: 40px;
}

/* Billing Switcher - Gaming Style */
.billing-switcher {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    gap: 6px;
}

.billing-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #a1a1aa;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-btn.active {
    background: rgba(0, 245, 255, 0.15);
    color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.billing-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #e4e4e7;
}

.save-chip {
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
}

/* Bento Grid - Gaming Cards */
.pricing-bento {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Bento Card Base */
.bento-card {
    background: rgba(20, 20, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Featured Card - Plus Tier */
.featured-tier {
    background: rgba(20, 20, 31, 1);
    border: 2px solid #00f5ff;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.2);
}

.featured-tier:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 60px rgba(0, 245, 255, 0.3);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.4);
}

.tier-level {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00f5ff;
}

.tier-header-dark {
text-align: center;
margin-bottom: 32px;
}

.tier-emoji {
width: 80px;
height: 80px;
margin: 0 auto 16px;
display: flex;
align-items: center;
justify-content: center;
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.tier-emoji svg {
width: 64px;
height: 64px;
}

.tier-free .tier-emoji svg {
stroke: #a1a1aa;
}

.tier-plus .tier-emoji svg {
stroke: #00f5ff;
}

.tier-pro .tier-emoji svg {
stroke: #fbbf24;
fill: #fbbf24;
}

.tier-title {
font-size: 32px;
font-weight: 900;
color: white;
margin: 0 0 8px;
}

.tier-subtitle {
font-size: 15px;
color: #71717a;
font-weight: 600;
    font-size: 15px;
    color: #71717a;
    font-weight: 600;
}

/* Price Display */
.price-display {
    text-align: center;
    margin-bottom: 32px;
}

.price-main {
    font-size: 60px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.price-sub {
    font-size: 16px;
    color: #71717a;
    font-weight: 600;
}

.billing-note {
    text-align: center;
    font-size: 13px;
    color: #71717a;
    margin-top: 8px;
}

/* Feature List - Dark Theme */
.feature-list-dark {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.feature-header {
    font-size: 12px;
    font-weight: 800;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-item-dark {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #e4e4e7;
    line-height: 1.5;
}

.feature-item-dark.highlight {
    color: white;
    font-weight: 600;
}

.check-icon {
    color: #00f5ff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Buttons - Gaming Style */
.cta-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-dark:hover::before {
    left: 100%;
}

.cta-free {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-free:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-plus {
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.3);
}

.cta-plus:hover {
    box-shadow: 0 12px 32px rgba(0, 245, 255, 0.4);
    transform: translateY(-2px);
}

.cta-pro {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.cta-pro:hover {
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-dark:hover .arrow {
    transform: translateX(4px);
}

.tier-note {
    text-align: center;
    font-size: 13px;
    color: #71717a;
    margin-top: 16px;
}

/* Comparison Section - Dark */
.comparison-dark {
    padding: 80px 0;
    background: #14141f;
}

.section-title-dark {
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle-dark {
    font-size: 18px;
    color: #71717a;
    text-align: center;
    margin-bottom: 48px;
}

.comparison-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-scroll {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 800px;
}

.comparison-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
}

.category-name {
    font-size: 14px;
    font-weight: 800;
    color: #00f5ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-size: 15px;
    color: #e4e4e7;
    font-weight: 500;
}

.feature-value {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
}

.free-val {
    color: #71717a;
    background: rgba(255, 255, 255, 0.02);
}

.plus-val {
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.08);
}

.pro-val {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.08);
}

/* FAQ Section - Dark */
.faq-dark {
    padding: 80px 0;
    background: #0a0a0f;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: rgba(20, 20, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
}

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-q {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.faq-icon {
    font-size: 24px;
    color: #00f5ff;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-card.active .faq-answer-panel {
    max-height: 300px;
}

.faq-answer-panel p {
    padding: 0 24px 24px;
    margin: 0;
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.7;
}

/* Final CTA - Dark */
.final-cta-dark {
    padding: 100px 0;
    background: linear-gradient(180deg, #14141f 0%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-dark {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content-dark h2 {
    font-size: 52px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content-dark > p {
    font-size: 20px;
    color: #71717a;
    margin-bottom: 40px;
}

.cta-buttons-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 245, 255, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

/* Dark Footer */
.dark-footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-footer .footer-links a {
    color: #a1a1aa;
}

.dark-footer .footer-links a:hover {
    color: #00f5ff;
}

.dark-footer .footer-brand p {
    color: #71717a;
}

.dark-footer .footer-bottom p {
    color: #71717a;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-tier {
        transform: scale(1);
    }

    .featured-tier:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-hero-dark h1 {
        font-size: 42px;
    }

    .pricing-hero-dark {
        padding: 80px 0 40px;
    }

    .billing-switcher {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .billing-btn {
        width: 100%;
        justify-content: center;
    }

    .price-main {
        font-size: 48px;
    }

    .bento-card {
        padding: 28px;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 8px;
        font-size: 13px;
    }

    .feature-name {
        font-size: 14px;
    }

    .feature-value {
        padding: 6px 8px;
        font-size: 12px;
    }

    .section-title-dark {
        font-size: 36px;
    }

    .cta-content-dark h2 {
        font-size: 36px;
    }

    .cta-buttons-dark {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero-dark h1 {
        font-size: 32px;
    }

    .tier-emoji {
        font-size: 36px;
    }

    .tier-title {
        font-size: 26px;
    }

    .price-main {
        font-size: 40px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-value {
        text-align: left;
    }
}
