:root {
            --primary-gold: #FFD700;
            --secondary-purple: #8A2BE2;
            --accent-green: #32CD32;
            --dark-bg: #1a1a2e;
            --content-bg: #16213e;
            --text-light: #e6e6e6;
        }
        body {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--content-bg) 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-gold), var(--accent-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
            border-bottom: 2px solid var(--primary-gold);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        h1, h2, h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }
        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-green);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-green);
            margin-top: 2rem;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(50,205,50,0.1));
            border-left: 4px solid var(--primary-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .game-feature {
            background: rgba(138,43,226,0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 15px 0;
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .strategy-tip {
            background: rgba(50,205,50,0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            border-left: 4px solid var(--accent-green);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            margin: 20px 0;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -10px;
            margin-bottom: 20px;
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 30px 0;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            color: #aaa;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
