/* ========== FORTNITE-STYLE THEME ========== */
:root {
    --fn-dark: #0f1419;
    --fn-darker: #0a0e12;
    --fn-panel: #151c24;
    --fn-panel-border: #2a3544;
    --fn-accent: #00d4ff;
    --fn-accent-dim: rgba(0, 212, 255, 0.6);
    --fn-purple: #7b2fff;
    --fn-gold: #ffb800;
    --fn-gold-dim: rgba(255, 184, 0, 0.7);
    --fn-text: #e8ecf0;
    --fn-text-muted: #8b98a8;
    --fn-glow: 0 0 20px rgba(0, 212, 255, 0.4);
    --fn-glow-gold: 0 0 20px rgba(255, 184, 0, 0.5);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--fn-text);
    background: var(--fn-dark);
    min-height: 100vh;
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(123, 47, 255, 0.25), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 212, 255, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(123, 47, 255, 0.08), transparent);
}

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

/* Header - Fortnite panel style */
.header {
    background: linear-gradient(180deg, rgba(21, 28, 36, 0.98) 0%, rgba(15, 20, 25, 0.95) 100%);
    border-bottom: 3px solid var(--fn-accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), var(--fn-glow);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--fn-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--fn-accent-dim);
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: text-shadow 0.3s ease;
}

.logo a:hover {
    text-shadow: 0 0 30px var(--fn-accent);
}

/* Hero - Bold gradient + glow */
.hero {
    background: linear-gradient(145deg, #0f1419 0%, #1a1f2e 35%, #151c28 70%, #0d1218 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--fn-panel-border);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(123, 47, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--fn-text-muted);
}

/* Product Section - Dark panels */
.product-section {
    padding: 5rem 0;
    background: var(--fn-darker);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--fn-panel-border);
    box-shadow: var(--fn-glow), 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px var(--fn-accent-dim), 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--fn-panel-border);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--fn-panel);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    background: var(--fn-panel);
    padding: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--fn-panel);
    color: var(--fn-accent);
    border: 2px solid var(--fn-accent);
    padding: 14px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--fn-accent-dim);
}

.carousel-btn:hover {
    background: var(--fn-accent);
    color: var(--fn-dark);
    box-shadow: var(--fn-glow);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background: var(--fn-panel-border);
    border: 2px solid var(--fn-accent);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--fn-accent);
    box-shadow: 0 0 12px var(--fn-accent-dim);
    transform: scale(1.3);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--fn-purple), var(--fn-accent));
    color: var(--fn-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--fn-accent);
    box-shadow: var(--fn-glow);
}

.product-info h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--fn-text);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 2rem;
    color: var(--fn-text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    margin-bottom: 2.5rem;
    display: grid;
    gap: 0.875rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--fn-panel);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--fn-accent);
    border: 2px solid var(--fn-panel-border);
    border-left: 4px solid var(--fn-accent);
}

.feature:hover {
    border-color: var(--fn-accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    transform: translateX(4px);
}

.feature-icon {
    color: var(--fn-gold);
    font-weight: bold;
    font-size: 1.3rem;
    min-width: 24px;
}

.product-specs {
    background: var(--fn-panel);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid var(--fn-panel-border);
}

.product-specs h3 {
    margin-bottom: 1rem;
    color: var(--fn-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-specs p {
    color: var(--fn-text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.product-price {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fn-text);
}

.btn-primary {
    background: linear-gradient(180deg, var(--fn-gold) 0%, #e6a600 100%);
    color: var(--fn-dark);
    padding: 1.125rem 2.5rem;
    border: 2px solid #ffc933;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--fn-glow-gold), 0 6px 0 #b8860b;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(2px);
    box-shadow: 0 0 30px var(--fn-gold-dim), 0 4px 0 #b8860b;
}

/* Section titles */
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--fn-text);
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--fn-dark);
    border-top: 2px solid var(--fn-panel-border);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-item {
    background: var(--fn-panel);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--fn-panel-border);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    border-color: var(--fn-accent);
    transform: translateY(-4px);
    box-shadow: var(--fn-glow);
}

.comparison-item h3 {
    margin-bottom: 1.5rem;
    color: var(--fn-accent);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.comparison-image {
    margin-bottom: 1.5rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--fn-panel-border);
}

.comparison-item p {
    margin-bottom: 1rem;
    color: var(--fn-text-muted);
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--fn-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--fn-panel);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--fn-panel-border);
}

.benefit-card:hover {
    border-color: var(--fn-accent);
    transform: translateY(-6px);
    box-shadow: var(--fn-glow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--fn-gold-dim));
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fn-accent);
    font-weight: 400;
    letter-spacing: 1px;
}

.benefit-card p {
    color: var(--fn-text-muted);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: linear-gradient(145deg, #151c28 0%, #0f1419 50%, #1a1528 100%);
    text-align: center;
    color: #fff;
    border-top: 2px solid var(--fn-purple);
    border-bottom: 2px solid var(--fn-accent);
}

.guarantee .section-title {
    color: #fff;
}

.guarantee p {
    font-size: 1.2rem;
    color: var(--fn-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--fn-dark);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--fn-panel);
    border: 2px solid var(--fn-panel-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--fn-accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.faq-item h3 {
    color: var(--fn-accent);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.faq-item p {
    color: var(--fn-text-muted);
    line-height: 1.9;
}

.faq-item a {
    color: var(--fn-accent);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--fn-accent-dim);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--fn-darker);
    border-top: 2px solid var(--fn-panel-border);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--fn-panel);
    border-radius: 8px;
    min-width: 200px;
    border: 2px solid var(--fn-panel-border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--fn-accent);
    box-shadow: var(--fn-glow);
}

.contact-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--fn-accent);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item span {
    color: var(--fn-text-muted);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--fn-accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0e12 0%, #05080b 100%);
    color: var(--fn-text);
    padding: 4rem 0 1.5rem;
    border-top: 3px solid var(--fn-accent);
}

.footer-legal {
    margin-bottom: 2.5rem;
}

.footer-legal h3 {
    color: var(--fn-accent);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: var(--fn-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.legal-info strong {
    color: var(--fn-text);
    font-weight: 600;
}

.health-notice {
    background: rgba(0, 212, 255, 0.06);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid var(--fn-panel-border);
}

.health-notice h4 {
    color: var(--fn-accent);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.health-notice p {
    color: var(--fn-text-muted);
    line-height: 1.9;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: var(--fn-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.contact-info-footer strong {
    color: var(--fn-text);
    font-weight: 600;
}

.contact-info-footer a {
    color: var(--fn-accent);
    text-decoration: none;
}

.contact-info-footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--fn-accent-dim);
}

.footer-bottom {
    border-top: 2px solid var(--fn-panel-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-links a {
    color: var(--fn-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--fn-accent);
}

.footer-bottom p {
    color: var(--fn-text-muted);
}

/* Legal Pages - Fortnite style */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: var(--fn-dark);
    background-image: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(123, 47, 255, 0.1), transparent);
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--fn-accent);
    font-weight: 400;
    letter-spacing: 3px;
}

.legal-page section {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--fn-panel-border);
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--fn-text);
    font-weight: 400;
    letter-spacing: 2px;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--fn-accent);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: var(--fn-text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: var(--fn-text-muted);
    line-height: 1.8;
}

.legal-page a {
    color: var(--fn-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--fn-accent-dim);
}

.withdrawal-form {
    background: var(--fn-panel);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border: 2px solid var(--fn-panel-border);
}

.withdrawal-form p {
    margin-bottom: 1.25rem;
    color: var(--fn-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-slides {
        height: 400px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.product-image img,
.comparison-image img,
.advisor-image img {
    background-color: var(--fn-panel);
    min-height: 200px;
    display: block;
}
