:root {
    --primary-red: #e63946;
    --dark-red: #b7094c;
    --fire-orange: #f77f00;
    --charcoal: #1d1e2c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--charcoal);
    color: #ffffff;
    overflow-x: hidden;
}

#webgl-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(29, 30, 44, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: var(--primary-red); }

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-red); }

.emergency-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--fire-orange));
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
}

.hero-content { max-width: 800px; z-index: 2; }
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #fca311);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.15rem; color: #cbd5e1; margin-bottom: 35px; }
.hero-actions { display: flex; justify-content: center; gap: 20px; }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

section { padding: 100px 20px; position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { color: #94a3b8; }

.jakarta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card-media {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.media-frame { width: 100%; height: 220px; }
.media-frame img, .media-frame iframe { width: 100%; height: 100%; object-fit: cover; border: none; }
.card-body { padding: 25px; }
.card-body span { font-size: 0.85rem; color: var(--fire-orange); font-weight: 700; text-transform: uppercase; }
.card-body h3 { font-size: 1.25rem; margin: 10px 0 15px; }
.card-body p { color: #94a3b8; font-size: 0.95rem; }

footer {
    background: #11121d;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 20px;
    text-align: center;
}
footer p { color: #64748b; font-size: 0.9rem; }