/* --- GLOBAL IMPORTS & VARS --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Inter:wght@400;600&display=swap');

:root {
    --accent: #00ff41; 
    --gold: #ffd700;
    --bg: #0b0d10;      
    --card-bg: #141619;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --border: #333;
}

body {
    margin: 0; padding: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- BACKGROUND FX --- */
.bg-grid {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(18, 18, 18, 0.9), var(--bg)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff41' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; max-width: 1200px; margin: 0 auto;
    border-bottom: 1px solid transparent;
    position: sticky; top: 0; z-index: 100;
    background: rgba(11, 13, 16, 0.9); /* Slight background for sticky header */
    backdrop-filter: blur(10px);
}

.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 24px; color: #fff;
    text-decoration: none;
}
.logo img { height: 40px; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 14px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

/* --- HERO SECTION --- */
.hero {
    display: grid; grid-template-columns: 1fr 1fr;
    max-width: 1200px; margin: 60px auto; padding: 0 50px;
    align-items: center; gap: 50px;
}

h1 {
    font-family: 'Rajdhani', sans-serif; font-size: 64px; line-height: 1;
    margin-bottom: 20px; text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 255, 65, 0.2);
}

.hero p {
    color: var(--text-dim); font-size: 18px; line-height: 1.6;
    margin-bottom: 40px; max-width: 450px;
}

.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }

/* SHARED BUTTON STYLES */
.btn-primary, .btn-secondary, .btn-premium, .btn-card {
    padding: 15px 30px; border-radius: 5px; font-weight: 800;
    text-decoration: none; font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
    text-align: center; display: inline-block; cursor: pointer;
}

.btn-primary {
    background: var(--accent); color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(0, 255, 65, 0.6); transform: translateY(-2px); }

.btn-secondary {
    background: transparent; color: var(--accent); border: 1px solid var(--accent);
}
.btn-secondary:hover { background: rgba(0, 255, 65, 0.1); }

.btn-premium {
    background: var(--gold); color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.btn-premium:hover { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); transform: translateY(-2px); }

/* HERO EXTRAS */
.platform-bar {
    margin-top: 40px; display: flex; align-items: center; gap: 15px;
    color: var(--text-dim); font-size: 14px;
    background: rgba(255,255,255,0.05); padding: 10px 20px;
    border-radius: 50px; width: fit-content;
}
.kick-symbol {
    font-family: 'Rajdhani', sans-serif; font-weight: 900;
    background: #fff; color: #000; padding: 0px 4px;
    border-radius: 3px; font-size: 12px; margin-left: 10px;
}

/* .hero-image-wrapper { position: relative; }
.glow-fx {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 80%; height: 80%; background: var(--accent);
    filter: blur(80px); opacity: 0.2; z-index: -1;
}
.app-shot {
    width: 100%; border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
} */

/* --- FEATURES SECTION --- */
.features-section { padding: 80px 50px; max-width: 1200px; margin: 0 auto; }
.section-title {
    text-align: center; font-family: 'Rajdhani', sans-serif;
    font-size: 32px; text-transform: uppercase; margin-bottom: 80px; letter-spacing: 2px;
}

.feature-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; margin-bottom: 100px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse .feature-text { direction: ltr; }

.feature-text h3 {
    font-family: 'Rajdhani', sans-serif; font-size: 28px;
    color: var(--accent); margin-bottom: 15px; text-transform: uppercase;
    display: flex; align-items: center; gap: 15px;
}
.feature-text p { font-size: 16px; color: var(--text-dim); line-height: 1.6; margin-bottom: 20px; }

.feature-img-box {
    background: var(--card-bg); border: 1px solid #333;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); transition: 0.3s;
}
.feature-img-box:hover { border-color: var(--accent); }
.feature-img-box img { width: 100%; height: auto; display: block; }

/* --- STATUS GRID (ROADMAP) --- */
.status-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; max-width: 1200px; margin: 0 auto 100px auto; padding: 0 20px;
}
.status-col {
    background: #111; border: 1px solid #333;
    border-radius: 8px; overflow: hidden; position: relative; min-height: 400px;
}
.col-header {
    background: #1a1a1a; padding: 20px; border-bottom: 1px solid #333;
    display: flex; align-items: center; gap: 10px;
}
.col-header h3 { margin: 0; font-family: 'Rajdhani', sans-serif; font-size: 20px; letter-spacing: 1px; color: #fff; }

/* Roadmap Statuses */
.live { border-top: 4px solid var(--accent); }
.status-light { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }

.progress { border-top: 4px solid #ffff00; }
.progress .col-header h3, .progress .status-icon { color: #ffff00; }
.scanner-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: #ffff00; box-shadow: 0 0 15px #ffff00; opacity: 0.5;
    animation: scanDown 3s linear infinite; pointer-events: none; z-index: 10;
}
@keyframes scanDown { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.future { border-top: 4px solid #555; background: #0b0d10; opacity: 0.8; }
.future .col-header h3, .future .status-icon { color: #888; }
.future .col-body {
    background-image: repeating-linear-gradient(45deg, #0b0d10 25%, transparent 25%, transparent 50%, #0b0d10 50%, #0b0d10 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

.col-body { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.item-card {
    background: #1a1a1a; padding: 15px; border-radius: 6px;
    display: flex; align-items: center; gap: 15px; border: 1px solid #333; transition: 0.2s;
}
.item-card strong { display: block; color: #eee; font-size: 14px; }
.item-card small { color: #888; font-size: 12px; }
.live .item-card i { color: var(--accent); font-size: 18px; }
.active-item { border-left: 2px solid #ffff00; background: rgba(255, 255, 0, 0.05); }
.active-item i { color: #ffff00; font-size: 18px; }
.locked-item { background: transparent; border: 1px dashed #444; color: #666; }
.locked-item i { color: #444; }

/* --- PRICING PAGE STYLES --- */
.pricing-header { text-align: center; margin: 60px 0 80px 0; padding: 0 20px; }
.pricing-header h1 { font-family: 'Rajdhani', sans-serif; font-size: 48px; text-transform: uppercase; margin-bottom: 10px; text-shadow: 0 0 20px rgba(0,255,65,0.2); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; max-width: 1200px; margin: 0 auto 100px auto; padding: 0 20px; align-items: center;
}
.price-card {
    background: #141619; border: 1px solid #333; border-radius: 12px;
    padding: 40px; position: relative; transition: 0.3s; display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-5px); border-color: #555; }
.tier-name { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 10px; }
.tier-price { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 30px; display: flex; align-items: baseline;}
.tier-price span { font-size: 16px; color: #666; font-weight: normal; margin-left: 5px; }
.features { list-style: none; padding: 0; margin: 0 0 40px 0; flex-grow: 1; }
.features li { margin-bottom: 15px; color: #ccc; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.features li i { color: #555; }
.features li.active-feat i { color: var(--accent); }
.features li.gold-feat i { color: var(--gold); }
.btn-card { background: #222; color: #fff; border: 1px solid #333; width: 100%; box-sizing: border-box; }
.btn-card:hover { background: #333; }

.price-card.pop {
    border: 1px solid var(--accent);
    background: radial-gradient(circle at top right, rgba(0,255,65,0.05), #141619);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0,0,0,0.5); z-index: 2;
}
.price-card.pop .tier-name { color: var(--accent); }
.price-card.pop .btn-card { background: var(--accent); color: #000; border: none; }
.badge-pop {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; font-weight: bold; font-size: 12px;
    padding: 5px 15px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.price-card.premium { border-color: #444; }
.price-card.premium .tier-name { color: var(--gold); }
.price-card.premium .btn-card { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.price-card.premium .btn-card:hover { background: rgba(255, 215, 0, 0.1); }

/* --- DOCS PAGE STYLES --- */
.docs-container { display: flex; max-width: 1200px; margin: 0 auto; min-height: 100vh; }
.sidebar {
    width: 250px; padding: 40px 20px; border-right: 1px solid var(--border);
    position: sticky; top: 80px; height: calc(100vh - 80px); overflow-y: auto;
}
.sidebar h4 { color: var(--accent); font-family: 'Rajdhani', sans-serif; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar ul { list-style: none; padding: 0; margin: 0 0 30px 0; }
.sidebar li a { display: block; padding: 8px 0; color: #888; text-decoration: none; font-size: 14px; transition: 0.2s; }
.sidebar li a:hover { color: #fff; transform: translateX(5px); }
.content { flex: 1; padding: 40px 60px; }
.doc-section { margin-bottom: 60px; border-bottom: 1px solid #222; padding-bottom: 40px; }
.doc-section h1 { font-family: 'Rajdhani', sans-serif; font-size: 36px; margin-bottom: 20px; color: #fff; }
.doc-section h2 { font-family: 'Rajdhani', sans-serif; font-size: 24px; margin-top: 30px; margin-bottom: 15px; color: #eee; border-left: 3px solid var(--accent); padding-left: 15px; }
.doc-section p { line-height: 1.6; color: #bbb; margin-bottom: 20px; }
.code-box { background: #111; border: 1px solid var(--border); padding: 15px; border-radius: 6px; font-family: 'Courier New', monospace; color: var(--accent); font-size: 13px; margin-bottom: 20px; }
.img-placeholder { width: 100%; height: 200px; background: #1a1a1a; border: 1px dashed #444; display: flex; align-items: center; justify-content: center; color: #555; font-size: 12px; margin: 20px 0; border-radius: 8px; }

/* --- CHANGELOG STYLES --- */
.log-header { text-align: center; padding: 60px 20px; }
.log-header h1 { font-family: 'Rajdhani', sans-serif; font-size: 42px; margin: 0 0 10px 0; text-transform: uppercase; color: #fff; }
.timeline { max-width: 800px; margin: 0 auto 100px auto; padding: 0 20px; border-left: 2px solid #333; margin-left: max(20px, calc(50% - 400px)); }
.update-card { background: #141619; border: 1px solid #333; border-radius: 8px; padding: 30px; margin-bottom: 40px; margin-left: 30px; position: relative; }
.update-card::before { content: ''; position: absolute; left: -41px; top: 30px; width: 16px; height: 16px; background: #000; border: 2px solid var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }
.ver-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #222; padding-bottom: 15px; }
.ver-title { font-family: 'Rajdhani', sans-serif; font-size: 24px; font-weight: bold; color: var(--accent); }
.ver-date { font-size: 12px; color: #666; font-family: monospace; background: #111; padding: 4px 8px; border-radius: 4px; }
.changes-list { list-style: none; padding: 0; margin: 0; }
.changes-list li { margin-bottom: 10px; font-size: 14px; color: #ccc; display: flex; gap: 10px; }
.tag { font-weight: bold; font-size: 10px; padding: 2px 6px; border-radius: 3px; min-width: 60px; text-align: center; height: fit-content; margin-top: 2px; }
.tag.new { background: rgba(0,255,65,0.1); color: var(--accent); border: 1px solid var(--accent); }
.tag.fix { background: rgba(255, 100, 100, 0.1); color: #ff6464; border: 1px solid #ff6464; }
.tag.imp { background: rgba(100, 100, 255, 0.1); color: #6464ff; border: 1px solid #6464ff; }

/* --- FOOTER --- */
footer {
    border-top: 1px solid #222; padding: 40px; text-align: center;
    color: #666; font-size: 12px; display: flex; justify-content: space-between;
    max-width: 1100px; margin: 0 auto;
}
.socials i { font-size: 16px; margin-left: 15px; cursor: pointer; transition: 0.2s; }
.socials i:hover { color: var(--accent); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 20px; }
    .hero { grid-template-columns: 1fr; text-align: center; }
    .cta-group { justify-content: center; }
    .platform-bar { margin: 40px auto; }
    .feature-row, .feature-row.reverse { display: flex; flex-direction: column; }
    .feature-img-box { order: -1; margin-bottom: 20px; }
    .pricing-grid, .status-grid { grid-template-columns: 1fr; }
    .docs-container { flex-direction: column; }
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid #333; height: auto; position: relative; top: 0; padding: 20px; box-sizing: border-box; }
    .content { padding: 20px; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .socials { margin-top: 10px; }
    .price-card.pop { transform: scale(1); } /* Disable zoom effect on mobile */
    .timeline { border-left: none; padding: 0; margin-left: 0; }
    .update-card { margin-left: 0; }
    .update-card::before { display: none; } /* Hide dots on mobile */
}