:root {
    --ig-orange: #f09433;
    --ig-red: #e6683c;
    --ig-magenta: #dc2743;
    --ig-purple: #cc2366;
    --ig-blue: #bc1888;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #888888;
    --neon-glow: 0 0 20px rgba(220, 39, 67, 0.6), 0 0 40px rgba(220, 39, 67, 0.4);
    --border-color: #222222;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Grid Background */
.bg-grid { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: linear-gradient(var(--border-color) 1px, transparent 1px), linear-gradient(90deg, var(--border-color) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.2; z-index: -1; }
.bg-glow { position: fixed; top: 20%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(220,39,67,0.15) 0%, transparent 70%); z-index: -1; pointer-events: none; }

/* Neon Nav */
.nav { background: rgba(10,10,10,0.8); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; height: 70px; }
.nav-brand { font-size: 24px; font-weight: 900; letter-spacing: 1px; color: white; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: white; text-shadow: 0 0 8px white; }
.nav-btn { background: transparent; border: 1px solid var(--ig-magenta); color: var(--ig-magenta) !important; padding: 8px 20px; border-radius: 4px; box-shadow: inset 0 0 10px rgba(220,39,67,0.2); }
.nav-btn:hover { background: var(--ig-magenta); color: white !important; box-shadow: var(--neon-glow); }

/* Hero Neon */
.hero { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; position: relative; }
.hero h1 { font-size: 60px; font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px var(--text-main); text-shadow: none; display: block; margin-top: 10px; }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; font-weight: 300; }
.btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 16px 35px; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.4s; letter-spacing: 1px; text-transform: uppercase; border: none; }
.btn-primary { background: linear-gradient(90deg, var(--ig-magenta), var(--ig-purple)); color: white; box-shadow: var(--neon-glow); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(220,39,67,0.8), 0 0 60px rgba(220,39,67,0.6); transform: scale(1.05); }
.btn-secondary { background: transparent; color: white; border: 1px solid var(--text-muted); }
.btn-secondary:hover { border-color: white; box-shadow: 0 0 15px rgba(255,255,255,0.3); transform: scale(1.05); }

/* Stats Bar */
.stats { display: flex; justify-content: center; gap: 60px; padding: 40px 20px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: rgba(20,20,20,0.5); flex-wrap: wrap; backdrop-filter: blur(5px); }
.stat-box { text-align: center; }
.stat-box h3 { font-size: 36px; font-weight: 800; color: var(--ig-orange); text-shadow: 0 0 10px rgba(240,148,51,0.5); margin-bottom: 5px; }
.stat-box p { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 60px; text-transform: uppercase; letter-spacing: 2px; }
.section-title span { color: var(--ig-magenta); }

/* Dark Card About */
.about-box { background: var(--bg-card); border: 1px solid var(--border-color); border-left: 4px solid var(--ig-magenta); padding: 50px; border-radius: 8px; margin-bottom: 80px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.about-box p { font-size: 16px; color: #b0b0b0; margin-bottom: 20px; line-height: 1.8; }
.about-box p:last-child { margin-bottom: 0; }

/* Feature Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 40px 30px; transition: 0.4s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--ig-magenta)); transition: 0.5s; }
.card:hover { transform: translateY(-5px); border-color: #333; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.card:hover::before { left: 100%; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: white; display: flex; align-items: center; gap: 10px; }
.card h3::before { content: '>'; color: var(--ig-magenta); font-family: monospace; font-weight: 900; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Image Display */
.showcase-img { width: 100%; border-radius: 8px; border: 1px solid var(--border-color); margin-bottom: 80px; display: block; box-shadow: 0 0 30px rgba(220,39,67,0.1); filter: grayscale(20%) contrast(1.2); transition: 0.4s; }
.showcase-img:hover { filter: grayscale(0%) contrast(1); box-shadow: var(--neon-glow); }

/* Terminal List */
.list-wrapper { max-width: 800px; margin: 0 auto 80px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 40px; }
.list-item { margin-bottom: 30px; border-bottom: 1px dashed var(--border-color); padding-bottom: 30px; }
.list-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.list-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: white; }
.list-item h3 span { color: var(--ig-magenta); margin-right: 10px; }
.list-item p { font-size: 15px; color: var(--text-muted); line-height: 1.6; padding-left: 25px; }

/* Footer */
.footer { border-top: 1px solid var(--border-color); padding: 50px 20px; text-align: center; background: #050505; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.footer-links a:hover { color: var(--ig-magenta); text-shadow: 0 0 8px var(--ig-magenta); }
.footer p { color: #444; font-size: 12px; font-family: monospace; }