:root {
            --primary-orange: #FF9933;
            --primary-white: #FFFFFF;
            --primary-green: #138808;
            --accent-blue: #000080;
            --dark-bg: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6e6;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-orange), var(--primary-white), var(--primary-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
            border-bottom: 3px solid var(--primary-orange);
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255,153,51,0.2);
        }
        h1, h2, h3 {
            color: var(--primary-white);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            border-left: 5px solid var(--primary-orange);
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--primary-green);
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-orange);
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-right: 15px;
        }
        .patriotic-highlight {
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-white), var(--primary-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: bold;
        }
        .game-image {
            border-radius: 10px;
            border: 3px solid var(--primary-orange);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-link {
            color: var(--primary-white) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-orange) !important;
        }
        footer {
            background: rgba(0,0,0,0.8);
            border-top: 3px solid var(--primary-green);
            margin-top: 50px;
        }
        .keyword-highlight {
            background: rgba(255,153,51,0.2);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
