:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e98;
            --accent-color: #ffd166;
            --text-dark: #2d3142;
            --text-light: #f7f7f7;
            --bg-gradient: linear-gradient(135deg, #ff6b35 0%, #004e98 100%);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #f8f9fa;
        }
        .logo-text {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            background: var(--bg-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .nav-link {
            font-weight: 600;
            color: var(--text-dark) !important;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
            border-bottom: 2px solid var(--primary-color);
        }
        .hero-section {
            background: var(--bg-gradient);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 30px 30px;
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        .key-point {
            background-color: #e9f7fe;
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-feature {
            background: linear-gradient(to right, #fff, #f0f8ff);
            border: 1px solid #e1f0fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.2rem 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
        }
        .highlight {
            background-color: var(--accent-color);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        footer {
            background-color: var(--text-dark);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-heading {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
        }
