:root {
    --forest-green: #2d3a22;
    --camo-dark: #1b2414;
    --neon-cyan: #4deeea;
    --neon-glow: rgba(77, 238, 234, 0.6);
    --text-light: #f4f6f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--camo-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Banner Section */
.hero {
    background: linear-gradient(rgba(27, 36, 20, 0.7), rgba(27, 36, 20, 0.95)), 
                url('images/tacticool_background.png') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-glow);
    position: relative;
}

.hero video {
    min-height: 59.9vh;
    height: 100%;
    position: absolute;
    box-shadow: 0 0 50vw 300px #000000;
    clip-path: inset(0px -100% 0px -100%);
}

.logo-container img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(77, 238, 234, 0.3));
    margin-bottom: 300px;
}

.hero h1 {
    font-family: 'Black Ops One', cursive;
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-glow);
    margin-bottom: 10px;
    display: none; /* Hidden because the text is built into your awesome logo, but kept for SEO/structure */
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    position: absolute;
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 50px;
    display: block;
    backdrop-filter: blur(30px);
    background: radial-gradient(rgba(0, 0, 0, 0.6) 40%, rgba(0,0,0,0.5), rgba(0,0,0,0.0), rgba(0,0,0,0.0), rgba(0,0,0,0));
    padding: 10px 60px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0));
}

/* Main Content Grid */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
    }
    .hero video {
        min-height: 51vh;
        height: 100%;
    }
}

.card {
    background: rgba(45, 58, 34, 0.4);
    border: 1px solid rgba(77, 238, 234, 0.2);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(5px);
}

.card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 58, 34, 0.8), rgba(27, 36, 20, 0.9));
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 0 25px rgba(77, 238, 234, 0.15);
}

.cta-section:first-of-type {
    margin-bottom: 60px;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Discord & Donate Button Styling */
.discord-btn, .donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #5865F2;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 16px 36px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-btn:hover, .donate-btn:hover {
    background-color: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6), 0 0 15px var(--neon-cyan);
}

.discord-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: rgba(244, 246, 240, 0.5);
    font-family: 'Orbitron', sans-serif;
}