:root { --p: #bc13fe; --bg: #0d0d12; --card: #16161f; --text: #e2e2e2; }
body { background-color: var(--bg); color: var(--text); font-family: 'Poppins', sans-serif; margin: 0; }

/* Nav */
.fire-nav { background: rgba(13,13,18,0.95); backdrop-filter: blur(10px); height: 70px; display: flex; align-items: center; border-bottom: 2px solid var(--p); position: sticky; top: 0; z-index: 100; }
.nav-container { width: 90%; max-width: 1200px; margin: auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat'; font-weight: 900; font-size: 24px; letter-spacing: -1px; }
.logo span { color: var(--p); }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { text-decoration: none; color: #fff; font-size: 12px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--p); }

/* Hero Boxes */
.hero-header { padding: 60px 5%; text-align: center; background: linear-gradient(rgba(13,13,18,0.8), var(--bg)), url('https://images.alphacoders.com/132/1324732.png') center/cover; }
.hero-boxes { display: flex; gap: 20px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
.hero-box { background: var(--card); border: 1px solid rgba(255,255,255,0.05); padding: 15px 25px; border-radius: 12px; display: flex; align-items: center; gap: 15px; cursor: pointer; transition: 0.3s; min-width: 280px; }
.hero-box:hover { border-color: var(--p); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.box-icon { font-size: 30px; }
.box-text { text-align: left; }
.box-ip { display: block; font-weight: 900; font-size: 16px; color: #fff; }
.box-sub { font-size: 11px; color: #888; text-transform: uppercase; }

.fire-title h1 { font-family: 'Montserrat'; font-size: 3rem; margin: 0; }
.fire-title h1 span { color: var(--p); }
.fire-title p { color: #888; font-weight: 500; }

/* Content */
.container { width: 90%; max-width: 900px; margin: auto; padding: 40px 0; }
.info-card { background: var(--card); padding: 30px; border-radius: 15px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.03); }
.section-title { font-family: 'Montserrat'; font-size: 1.2rem; margin-bottom: 20px; border-bottom: 2px solid var(--p); display: inline-block; padding-bottom: 5px; }

.cta { background: var(--p); color: #fff; border: none; padding: 12px 30px; border-radius: 8px; font-weight: 700; cursor: pointer; width: 100%; margin-top: 10px; }
input, textarea { width: 100%; background: #0a0a0f; border: 1px solid #222; color: #fff; padding: 12px; margin-bottom: 10px; border-radius: 8px; box-sizing: border-box; }

.staff-mini { display: flex; align-items: center; gap: 10px; background: #0a0a0f; padding: 8px 15px; border-radius: 20px; font-size: 13px; border: 1px solid #222; }
.staff-mini img { border-radius: 5px; }
.staff-grid { display: flex; gap: 10px; margin-top: 15px; }

@media (max-width: 768px) {
    .fire-title h1 { font-size: 2rem; }
    .hero-box { width: 100%; }
    .nav-links { display: none; } /* On mobile, you'd usually use a hamburger, but let's keep it simple */
}

.tab-content { display: none; }
.active { display: block; }
