:root {
    --primary-bg: #002b1d;
    --dark-green: #001a12;
    --gold: #d4af37;
    --gold-bright: #f4cf6d;
    --white: #ffffff;
    --accent: #00ff88;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--white);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold-text { color: var(--gold); }

/* Navigation */
.navbar {
    background: var(--dark-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-weight: 700; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background: url('hero_bg.jpg') center/cover no-repeat;
    text-align: left;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,26,18,0.9) 30%, transparent);
}

.hero-content { position: relative; z-index: 10; max-width: 700px; }
.badge { background: var(--gold); color: var(--dark-green); padding: 5px 15px; font-weight: 900; display: inline-block; border-radius: 5px; margin-bottom: 20px; }
h1 { font-size: 4rem; line-height: 1.1; font-weight: 900; margin-bottom: 20px; }

.btn-main {
    background: var(--gold);
    color: var(--dark-green);
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 900;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.btn-main:hover { background: var(--gold-bright); transform: translateY(-3px); }

/* Live Ticker */
.live-ticker { background: #000; padding: 15px 0; border-bottom: 1px solid var(--gold); }
.ticker-box { display: flex; gap: 20px; }
.ticker-title { color: var(--gold); font-weight: bold; white-space: nowrap; }

/* Features Grid */
.features { padding: 100px 0; background: var(--dark-green); }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; text-transform: uppercase; font-weight: 900; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.3s;
}

.card:hover { border-color: var(--gold); background: rgba(255,255,255,0.07); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }

/* FAQ */
.faq-section { padding: 80px 0; }
details { background: rgba(255,255,255,0.05); padding: 20px; margin-bottom: 10px; border-radius: 10px; cursor: pointer; }
summary { font-weight: bold; font-size: 1.2rem; }

/* Footer */
.main-footer { background: #000; padding: 80px 0 20px; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; }