/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Header ─────────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
}
.nav { display: flex; gap: 2rem; }
.nav-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.nav-link:hover { color: #FFD700; }
.nav-link-dl {
    color: #FFD700;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.35);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.nav-link-dl:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}
.cta-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.cta-btn:hover { background: linear-gradient(135deg, #FFC107, #FF8F00); transform: translateY(-2px); }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-menu-toggle span {
    width: 25px; height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255,215,0,0.15);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}
.mobile-nav-link:hover { color: #FFD700; }
.mobile-cta-btn {
    margin-top: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,215,0,0.05) 0%, transparent 100%);
}
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 250px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.badge-text { color: #FFD700; font-size: 0.9rem; }
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.highlight { color: #FFD700; }
.hero-description { font-size: 1.2rem; color: #cccccc; margin-bottom: 2rem; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 250px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}
.primary-btn:hover {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,215,0,0.3);
    padding: 1rem 2rem;
    border-radius: 250px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.secondary-btn:hover {
    background: rgba(255,215,0,0.07);
    border-color: rgba(255,215,0,0.5);
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: #999999;
    font-size: 0.9rem;
}
.feature-item { display: flex; align-items: center; gap: 0.5rem; }
.feature-item i { color: #FFD700; }
.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 4rem auto 0;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(26,26,26,0.6);
    border: 1px solid #333333;
    transition: all 0.5s ease;
}
.feature-card.active {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.35);
    transform: scale(1.04);
}
.card-icon {
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #333333;
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.feature-card.active .card-icon { background: #FFD700; color: #000000; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: #999999; font-size: 0.9rem; }

/* ── Section Header ────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.3rem; margin-bottom: 0.75rem; }
.section-header p { font-size: 1.15rem; color: #999999; max-width: 600px; margin: 0 auto; }

/* ── Features ─────────────────────────────────────────────────────── */
.features { padding: 5rem 0; background: #1a1a1a; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.feature-item-card {
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.feature-item-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.feature-item-card:hover { border-color: rgba(255,215,0,0.3); transform: translateY(-4px); }
.feature-item-card.visible:hover { transform: translateY(-4px); opacity: 1; }
.feature-icon {
    background: #FFD700;
    color: #000000;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.feature-item-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.feature-item-card p { color: #999999; }

/* ── Pricing (Mode C) ─────────────────────────────────────────────── */
.pricing { padding: 5rem 0; background: #000000; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}
.pricing-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
}
.pricing-card:hover { border-color: rgba(255,215,0,0.3); transform: translateY(-5px); }
.pricing-card.popular { border-color: #FFD700; box-shadow: 0 20px 40px rgba(255,215,0,0.15); }
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-label { font-size: 1.1rem; font-weight: 600; color: #cccccc; margin-bottom: 1rem; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 0.2rem; }
.amount { font-size: 2.8rem; font-weight: bold; color: #FFD700; }
.price-currency { font-size: 1.4rem; color: #FFD700; }
.price-period { color: #999999; font-size: 0.9rem; display: block; margin-bottom: 0.75rem; }
.pricing-save { font-size: 0.85rem; color: #4ade80; font-weight: 600; min-height: 1.2rem; margin-bottom: 1.5rem; }
.plan-btn {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444444;
}
.plan-btn:hover { background: #333333; border-color: rgba(255,215,0,0.3); }
.plan-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
}
.plan-btn.primary:hover { background: linear-gradient(135deg, #FFC107, #FF8F00); }

/* ── Download Section ─────────────────────────────────────────────── */
.download-section { padding: 5rem 0; background: #1a1a1a; }
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}
.download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid #333333;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}
.download-card:hover {
    border-color: rgba(255,215,0,0.4);
    background: rgba(255,215,0,0.05);
    transform: translateX(4px);
}
.dl-icon {
    width: 48px; height: 48px;
    background: #FFD700;
    color: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.dl-info { display: flex; flex-direction: column; flex: 1; }
.dl-platform { font-weight: 700; font-size: 1rem; }
.dl-label { font-size: 0.85rem; color: #999999; }
.dl-arrow { color: #FFD700; font-size: 0.9rem; }
.download-note {
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}
.download-note i { color: #FFD700; }

/* ── Referral (Mode C) ─────────────────────────────────────────────── */
.referral { padding: 4rem 0; background: #000000; }
.referral-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.referral-icon {
    width: 64px; height: 64px;
    background: #FFD700;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.referral-inner h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.referral-inner p { color: #cccccc; margin-bottom: 1.25rem; }
.referral-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
.referral-btn:hover { background: linear-gradient(135deg, #FFC107, #FF8F00); transform: translateY(-2px); }

/* ── Servers (Mode C) ──────────────────────────────────────────────── */
.servers { padding: 5rem 0; background: #1a1a1a; }
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
.server-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.server-item:hover { border-color: rgba(255,215,0,0.3); }
.server-flag { font-size: 1.4rem; }

/* ── Testimonials ─────────────────────────────────────────────────── */
.testimonials { padding: 5rem 0; background: #000000; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}
.testimonial-card {
    background: rgba(26,26,26,0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333333;
}
.stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.stars i { color: #FFD700; font-size: 0.95rem; }
.testimonial-card p { color: #cccccc; font-style: italic; margin-bottom: 1rem; }
.author { color: #FFD700; font-weight: 600; }
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.stat-number { font-size: 2.3rem; font-weight: bold; color: #FFD700; margin-bottom: 0.35rem; }
.stat-label { color: #999999; font-size: 0.9rem; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq { padding: 5rem 0; background: #1a1a1a; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    border: 1px solid #333333;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-item[open] { border-color: rgba(255,215,0,0.25); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    list-style: none;
    transition: background 0.2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: rgba(255,215,0,0.04); }
.faq-question i { color: #FFD700; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item[open] .faq-question i { transform: rotate(180deg); }
.faq-answer p { padding: 0 1.5rem 1.4rem; color: #999999; }

/* ── CTA ──────────────────────────────────────────────────────────── */
.cta { padding: 5rem 0; background: linear-gradient(135deg, #FFD700, #FFA500); }
.cta-content { text-align: center; color: #000000; }
.cta-content h2 { font-size: 2.3rem; margin-bottom: 1rem; }
.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    display: inline-block;
    background: #000000;
    color: #FFD700;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.cta-button:hover { background: #1a1a1a; transform: translateY(-3px); }
.cta-note { margin-top: 1rem; font-size: 0.9rem; opacity: 0.6; }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer { padding: 4rem 0 2rem; background: #000000; border-top: 1px solid #222222; }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-logo { margin-bottom: 0.75rem; }
.footer-section p { color: #999999; font-size: 0.9rem; }
.footer-section h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; color: #FFD700; margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a { color: #999999; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-section ul li a:hover { color: #FFD700; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #222222;
}
.copyright { color: #666666; font-size: 0.85rem; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav { display: none; }
    .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }

    .hero { padding: 6rem 0 3rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-features { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-cards { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }

    .section-header h2 { font-size: 1.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .download-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .servers-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }

    .referral-inner { flex-direction: column; text-align: center; }

    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.8rem; }
    .servers-grid { grid-template-columns: 1fr 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .cta-content h2 { font-size: 1.8rem; }
}
