:root {
            --primary-color: #FF9933;
            --secondary-color: #138808;
            --accent-color: #000080;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #ffffff;
        }
        .logo-text {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            letter-spacing: 1px;
        }
        .logo-accent {
            color: var(--primary-color);
        }
        .nav-custom {
            background: linear-gradient(135deg, var(--accent-color) 0%, #1a237e 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            padding: 0.8rem 1.2rem !important;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(19, 136, 8, 0.85), rgba(255, 153, 51, 0.85)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--accent-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-weight: 700;
        }
        .content-section {
            padding: 2rem 0;
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background-color: var(--bg-light);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .key-term {
            font-weight: 700;
            color: var(--accent-color);
        }
        footer {
            background-color: var(--accent-color);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .social-icon {
            font-size: 1.5rem;
            color: white;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 3rem 0;
            }
            .content-paragraph {
                font-size: 1rem;
            }
        }
