* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #0984e3;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffdd59;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd59;
            border-bottom: 2px solid #ffdd59;
        }
        .hamburger {
            display: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #0984e3;
            padding: 20px;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            margin: 12px 0;
            font-size: 1.15rem;
            padding: 5px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            color: #ffdd59;
        }
        .container {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0984e3;
            font-size: 2.5rem;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffdd59;
            position: relative;
        }
        h1::after {
            content: "🎯";
            position: absolute;
            right: 20px;
            bottom: 10px;
        }
        h2 {
            color: #0984e3;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #ffdd59;
            position: relative;
        }
        h2::before {
            content: "🔹";
            margin-right: 10px;
        }
        h3 {
            color: #0984e3;
            font-size: 1.6rem;
            margin: 35px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #dfe6e9;
        }
        h3::after {
            content: "✨";
            margin-left: 8px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #e17055;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 15px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d63031;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #00b894;
        }
        .btn-download:hover {
            background-color: #009473;
        }
        .highlight {
            font-weight: bold;
            color: #d63031;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #0984e3;
        }
        .stats-box p {
            margin: 12px 0;
            font-size: 1.1rem;
        }
        .stats-box p::before {
            content: "•";
            color: #0984e3;
            font-weight: bold;
            margin-right: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #ffdd59;
            color: #2d3436;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #fdcb6e;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            color: #0984e3;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-weight: bold;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .game-type:hover {
            color: #d63031;
            transform: translateX(5px);
        }
        .footer {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 35px 20px;
            border-top: 3px solid #0984e3;
            background-color: white;
            border-radius: 10px 10px 0 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }
        .copyright {
            margin-top: 30px;
            color: #636e72;
            font-size: 0.95rem;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #dfe6e9;
        }
        .tip-box {
            background-color: #ffeaa7;
            border-left: 5px solid #fdcb6e;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box p {
            margin-bottom: 0;
            font-style: italic;
        }
        .tip-box::before {
            content: "💡 Pro Tip: ";
            font-weight: bold;
            color: #2d3436;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .stats-box {
                padding: 20px 15px;
            }
        }
