@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&display=swap');

:root {
    --bg-dark: #030308; 
    --vulcan-light: #FF5722; 
    --vulcan: #E64A19; 
    --vulcan-dark: #BF360C;
    --vulcan-glow: rgba(255, 87, 34, 0.15);
    --glass-bg: rgba(12, 12, 20, 0.65); 
    --glass-border: rgba(230, 74, 25, 0.2);
    --text-main: #EAEAEA; 
    --text-muted: #6e6e7a;
    --accent-blue: #3b82f6;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    min-height: 100vh; 
    display: flex; flex-direction: column; align-items: center; position: relative; overflow-x: hidden; 
}

/* === ANIMATED BACKGROUND === */
.glow-bg {
    position: fixed;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh;
    background: 
        radial-gradient(ellipse 600px 400px at 30% 20%, rgba(255, 87, 34, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 70% 80%, rgba(191, 54, 12, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 800px 600px at 50% 50%, rgba(230, 74, 25, 0.04) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.sparkles { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; 
    background-image: 
        radial-gradient(1px 1px at 10% 15%, rgba(255,87,34,0.8), transparent),
        radial-gradient(1px 1px at 20% 35%, rgba(255,152,0,0.6), transparent),
        radial-gradient(2px 2px at 35% 55%, rgba(255,87,34,0.5), transparent),
        radial-gradient(1px 1px at 50% 25%, rgba(255,193,7,0.4), transparent),
        radial-gradient(1px 1px at 65% 65%, rgba(230,74,25,0.7), transparent),
        radial-gradient(2px 2px at 80% 45%, rgba(255,87,34,0.3), transparent),
        radial-gradient(1px 1px at 90% 75%, rgba(255,152,0,0.5), transparent);
    background-size: 300px 300px; 
    animation: floatingSparks 25s linear infinite; 
    opacity: 0.5; 
}
@keyframes floatingSparks { 0% { transform: translateY(0); } 100% { transform: translateY(-600px); } }

/* === HEADER === */
header { 
    width: 100%; max-width: 1200px; padding: 18px 40px; 
    display: flex; justify-content: space-between; align-items: center; 
    background: rgba(6, 6, 14, 0.85); 
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 87, 34, 0.1); 
    border-radius: 0 0 20px 20px; 
    z-index: 10; margin-bottom: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.logo { 
    font-family: 'Orbitron', sans-serif;
    font-size: 22px; font-weight: 800; 
    color: var(--vulcan-light); 
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.5), 0 0 60px rgba(255, 87, 34, 0.2);
    line-height: 1; letter-spacing: 3px;
}
.logo span { 
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 400; letter-spacing: 8px; color: var(--text-muted); display: block; margin-top: 5px; 
}
nav a { 
    color: var(--text-muted); text-decoration: none; margin-left: 28px; font-size: 13px; 
    transition: all 0.3s ease; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--vulcan-light);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--vulcan-light);
}
nav a:hover { color: var(--vulcan-light); }
nav a:hover::after { width: 100%; }

/* === HERO === */
.hero { text-align: center; max-width: 900px; padding: 60px 20px 40px; }
.hero h1 { font-size: 44px; font-weight: 300; line-height: 1.3; margin-bottom: 24px; letter-spacing: -0.5px; }
.hero h1 .gradient-text { 
    display: block; font-weight: 800; 
    background: linear-gradient(135deg, #FF9800 0%, var(--vulcan-light) 30%, var(--vulcan) 70%, #BF360C 100%); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.3));
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero p { color: var(--text-muted); font-size: 15px; margin-bottom: 40px; line-height: 1.8; max-width: 560px; margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn { 
    padding: 14px 28px; border-radius: 10px; font-size: 14px; font-weight: 600; 
    cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; 
    justify-content: center; gap: 10px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; 
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-outline { 
    background: rgba(255, 87, 34, 0.08); border: 1px solid rgba(255, 87, 34, 0.4); color: var(--vulcan-light); 
    backdrop-filter: blur(10px);
}
.btn-outline:hover { 
    background: rgba(255, 87, 34, 0.15);
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.25), inset 0 0 25px rgba(255, 87, 34, 0.05); 
    color: #fff; border-color: var(--vulcan-light); 
    transform: translateY(-2px);
}
.btn-solid { 
    background: linear-gradient(135deg, #FF9800 0%, var(--vulcan-light) 50%, var(--vulcan) 100%); 
    color: #000; font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.35); 
}
.btn-solid:hover:not(:disabled) { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 35px rgba(255, 87, 34, 0.5); 
}
.btn:disabled { background: #1a1a2e; color: #444; box-shadow: none; cursor: not-allowed; border: 1px solid #222; }

/* === SECTION TITLES === */
.section-title { 
    font-family: 'Orbitron', sans-serif;
    font-size: 11px; letter-spacing: 6px; color: var(--text-muted); 
    margin: 70px 0 40px; text-align: center; text-transform: uppercase; font-weight: 600;
}
.section-title::after { 
    content: ''; display: block; width: 80px; height: 2px; 
    background: linear-gradient(90deg, transparent, var(--vulcan), transparent);
    margin: 12px auto 0; 
    box-shadow: 0 0 15px var(--vulcan); 
}

/* === MODULE CARDS === */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 120px 24px; max-width: 1000px; width: 100%; padding: 0 20px; margin-bottom: 160px; }
.module-card { 
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.8), rgba(8, 8, 16, 0.9)); 
    border: 1px solid rgba(255, 87, 34, 0.15); 
    border-radius: 20px; padding: 40px 20px; text-align: center; cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    -webkit-box-reflect: below 5px linear-gradient(transparent, transparent, rgba(0,0,0,0.25));
    position: relative;
    overflow: hidden;
}
.module-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.06), transparent);
    transition: left 0.6s ease;
}
.module-card:hover::before { left: 100%; }
.module-card:hover { 
    border-color: rgba(255, 87, 34, 0.5); 
    transform: translateY(-8px); 
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.15), 0 0 0 1px rgba(255, 87, 34, 0.1); 
}
.module-card h3 { 
    font-family: 'Orbitron', sans-serif; 
    font-size: 14px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; 
    color: #fff;
}
.module-card p { color: var(--text-muted); font-size: 13px; }
.module-icon { font-size: 44px; margin-bottom: 20px; filter: drop-shadow(0 0 12px var(--vulcan-light)); }

/* === DOWNLOAD PANEL === */
.download-panel { 
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.8), rgba(8, 8, 16, 0.9)); 
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 20px; padding: 50px 40px; max-width: 800px; width: 90%; text-align: center; margin-bottom: 60px; 
    position: relative;
    box-shadow: 0 0 60px rgba(255, 87, 34, 0.05);
}
.download-panel h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px; letter-spacing: 3px; font-weight: 700;
}
.key-input { 
    background: rgba(0, 0, 0, 0.6); border: 1px solid #222; border-radius: 10px; 
    padding: 15px 16px; color: var(--vulcan-light); font-size: 15px; width: 340px; 
    text-align: center; outline: none; transition: all 0.3s ease; margin-right: 15px; 
    font-family: 'Orbitron', sans-serif; letter-spacing: 2px;
}
.key-input:focus { border-color: var(--vulcan); box-shadow: 0 0 20px rgba(230, 74, 25, 0.15), inset 0 0 10px rgba(230, 74, 25, 0.1); }

/* === FAQ === */
.faq-container { max-width: 800px; width: 90%; margin-bottom: 100px; }
.faq-item { 
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.7), rgba(8, 8, 16, 0.8)); 
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; margin-bottom: 12px; overflow: hidden; 
    transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(255, 87, 34, 0.2); }
.faq-question { padding: 20px 24px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; font-size: 14px; transition: all 0.3s; }
.faq-question:hover { background: rgba(255, 87, 34, 0.05); }
.faq-question span { color: var(--vulcan-light); transition: transform 0.3s; font-size: 12px; }
.faq-answer { padding: 0 24px 20px; color: var(--text-muted); display: none; line-height: 1.7; font-size: 14px; }

/* === MODALS === */
.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    display: none; justify-content: center; align-items: center; z-index: 100; 
}

/* Review Cards in Modal */
.bot-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 87, 34, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bot-review-card:hover {
    background: rgba(255, 87, 34, 0.08);
    border-color: var(--vulcan-light);
    transform: translateY(-4px);
}
.bot-review-icon { font-size: 32px; margin-bottom: 10px; }
.bot-review-card h4 { font-family: 'Orbitron', sans-serif; font-size: 14px; color: #fff; margin-bottom: 8px; }
.bot-review-card span { font-size: 11px; color: var(--vulcan-light); text-transform: uppercase; letter-spacing: 1px; }
.modal-box { 
    background: linear-gradient(145deg, #0f0f1a, #080810); 
    border: 1px solid rgba(255, 87, 34, 0.2); border-radius: 20px; padding: 35px; 
    max-width: 500px; width: 90%; text-align: center; position: relative; 
    box-shadow: 0 0 60px rgba(255, 87, 34, 0.1), 0 25px 50px rgba(0, 0, 0, 0.5); 
}
.modal-close { position: absolute; top: 15px; right: 20px; color: #555; font-size: 24px; cursor: pointer; transition: 0.3s; }
.modal-close:hover { color: var(--vulcan-light); }
.modal-title { font-family: 'Orbitron', sans-serif; font-size: 18px; margin-bottom: 15px; color: #fff; letter-spacing: 1px; }
.modal-desc { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; font-size: 14px; }

.form-textarea { 
    width: 100%; background: rgba(0, 0, 0, 0.5); border: 1px solid #1e1e2e; border-radius: 10px; 
    padding: 14px; color: #fff; margin-bottom: 15px; outline: none; box-sizing: border-box; 
    font-family: 'Inter', sans-serif; resize: vertical; min-height: 120px; transition: border-color 0.3s;
}
.form-textarea:focus { border-color: var(--vulcan); box-shadow: 0 0 15px rgba(230, 74, 25, 0.1); }

/* === PROGRESS BAR === */
.progress-container { width: 100%; margin: 20px 0; }
.progress-bar {
    width: 100%; height: 6px;
    background: #111; border-radius: 3px;
    overflow: hidden; border: none;
}
.progress-fill {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #FF9800, var(--vulcan-light), var(--vulcan));
    transition: width 0.2s ease;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}
.progress-text { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 10px; font-family: 'Orbitron', sans-serif; }

/* === STATS COUNTER === */
.stats-bar {
    display: flex; justify-content: center; gap: 60px;
    margin: 10px 0 30px; padding: 30px 0;
    max-width: 700px; width: 90%;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px; font-weight: 800;
    color: var(--vulcan-light);
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
}
.stat-label {
    font-size: 11px; color: var(--text-muted); 
    text-transform: uppercase; letter-spacing: 2px; margin-top: 6px;
}

/* === FOOTER BADGE === */
.footer-badge {
    margin-bottom: 40px;
    padding: 16px 30px;
    background: rgba(255, 87, 34, 0.05);
    border: 1px solid rgba(255, 87, 34, 0.1);
    border-radius: 50px;
    font-size: 12px; color: var(--text-muted);
    letter-spacing: 1px;
}
.footer-badge span { color: var(--vulcan-light); font-weight: 600; }

/* === UTILITIES === */
.flex-center-gap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.flex-center-wrap-gap { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.text-center { text-align: center; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.w-100 { width: 100%; }
.max-w-400 { max-width: 400px; }
.text-white { color: #fff; }
.text-danger { color: #f38ba8; }
.text-success { color: #a6e3a1; }
.text-vulcan { color: var(--vulcan-light); }
.font-16 { font-size: 16px; }
.border-danger { border-color: #f38ba8 !important; }
.border-success { border-color: #a6e3a1 !important; }
.btn-outline-danger { border-color: #f38ba8; color: #f38ba8; background: rgba(243, 139, 168, 0.05); }
.btn-outline-success { border-color: #a6e3a1; color: #a6e3a1; background: rgba(166, 227, 161, 0.05); }
.modal-footer-line { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.modal-icon { font-size: 50px; margin-bottom: 15px; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 900px) {
    .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 100px 16px; }
    .hero h1 { font-size: 30px; }
    .stats-bar { gap: 30px; flex-wrap: wrap; }
    header { padding: 14px 20px; }
    nav a { margin-left: 16px; font-size: 12px; }
}

@media (max-width: 600px) {
    header { 
        flex-direction: column; gap: 12px; 
        padding: 14px 16px; border-radius: 0 0 14px 14px;
    }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }
    nav a { margin-left: 8px; margin-right: 8px; font-size: 11px; }
    
    .hero { padding: 30px 16px 20px; }
    .hero h1 { font-size: 22px; }
    .hero h1 .gradient-text { font-size: 22px; }
    .hero p { font-size: 13px; margin-bottom: 24px; }
    
    .btn { padding: 12px 20px; font-size: 12px; width: 100%; }
    .flex-center-gap { flex-direction: column; align-items: center; padding: 0 16px; }
    
    .stats-bar { gap: 20px; padding: 20px 0; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 9px; letter-spacing: 1px; }
    
    .section-title { font-size: 10px; letter-spacing: 4px; margin: 40px 0 24px; }
    
    .modules-grid { 
        grid-template-columns: 1fr; gap: 110px 0; 
        padding: 0 16px; margin-bottom: 100px; 
    }
    .module-card { padding: 30px 16px; border-radius: 14px; }
    .module-card h3 { font-size: 13px; }
    .module-icon { font-size: 36px; }
    
    .download-panel { 
        padding: 30px 16px; width: 92%; border-radius: 14px; 
    }
    .download-panel h2 { font-size: 14px; letter-spacing: 2px; }
    .flex-center-wrap-gap { flex-direction: column; align-items: center; }
    .key-input { 
        width: 100%; margin-right: 0; margin-bottom: 12px; 
        font-size: 13px; letter-spacing: 1.5px; padding: 14px 12px;
    }
    
    .faq-container { width: 92%; margin-bottom: 60px; }
    .faq-question { padding: 16px; font-size: 13px; }
    .faq-answer { padding: 0 16px 16px; font-size: 13px; }
    
    .modal-box { padding: 24px 16px; border-radius: 14px; }
    .modal-title { font-size: 15px; }
    .modal-desc { font-size: 13px; }
    
    .footer-badge { font-size: 10px; padding: 12px 20px; margin-bottom: 24px; }
}

/* === FIRE CURSOR EFFECT === */
.cursor-fire {
    position: fixed;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255, 235, 59, 1) 0%, rgba(255, 87, 34, 0.8) 30%, rgba(191, 54, 12, 0.3) 60%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: fireFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    filter: blur(2px);
    mix-blend-mode: screen;
}

@keyframes fireFade {
    0% { transform: translate(-50%, -50%) scale(var(--scale, 1)); opacity: 1; }
    40% { background: radial-gradient(circle, rgba(255, 87, 34, 0.9) 0%, rgba(191, 54, 12, 0.6) 50%, transparent 100%); }
    100% { transform: translate(calc(-50% + var(--drift)), -80px) scale(0); opacity: 0; }
}