:root {
            --primary-green: #2ecc71;
            --secondary-blue: #3498db;
            --accent-orange: #e67e22;
            --dark-bg: #1a1a2e;
            --text-light: #ecf0f1;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-green), var(--secondary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 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-green);
        }
        .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 25px rgba(0,0,0,0.2);
        }
        h1, h2, h3 {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-orange);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-blue);
        }
        .key-feature {
            background: rgba(46, 204, 113, 0.1);
            border-left: 4px solid var(--primary-green);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            margin: 20px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary-green);
            color: white;
        }
        .nav-pills .nav-link {
            color: var(--text-light);
            margin: 5px 0;
            border-radius: 5px;
        }
        .nav-pills .nav-link:hover {
            background-color: rgba(46, 204, 113, 0.2);
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 30px 0;
            margin-top: 50px;
            border-top: 2px solid var(--primary-green);
        }
        .highlight-text {
            color: var(--accent-orange);
            font-weight: 700;
        }
        .quote-box {
            border-left: 4px solid var(--accent-orange);
            background: rgba(230, 126, 34, 0.1);
            padding: 20px;
            margin: 20px 0;
            font-style: italic;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
