:root {
    --fel-green: #32ff32;
    --fel-green-glow: rgba(50, 255, 50, 0.6);
    --dark-stone: #121212;
    --stone-gray: #2a2a2a;
    --gold-accent: #c5a65c;
    --text-color: #e0e0e0;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--dark-stone);
    color: var(--text-color);
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--fel-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 10px var(--fel-green-glow);
}

/* Background Video/Image */
#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

/* Navigation */
header {
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--stone-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 3rem;
    color: var(--gold-accent);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-family: 'Gothic', serif; /* Need to find a good gothic font or use fallback */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Hero Section */
#home {
    text-align: center;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--fel-green);
    text-shadow: 0 0 20px var(--fel-green-glow);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--fel-green);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--fel-green-glow);
}

.cta-button:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 0 25px #fff;
}

/* Box Style */
.legion-box {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--stone-gray);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.legion-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--fel-green-glow);
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.3;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-accent);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid var(--stone-gray);
    color: #fff;
    border-radius: 4px;
}

.form-control:focus {
    border-color: var(--fel-green);
    outline: none;
    box-shadow: 0 0 5px var(--fel-green-glow);
}

/* Tables */
.legion-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.legion-table th, .legion-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--stone-gray);
}

.legion-table th {
    color: var(--gold-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Statistics Cards */
.stat-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--stone-gray);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--fel-green-glow);
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #000;
    border-top: 2px solid var(--stone-gray);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 0 2%;
    }
    nav ul {
        display: none; /* Add mobile menu later if needed */
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}
