* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #e6f7ff;
            color: #263238;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #2196f3, #03a9f4);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0d47a1;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1565c0;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4fc3f7;
            font-size: 2rem;
        }
        h3 {
            color: #0288d1;
            margin: 25px 0 15px;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #0d47a1;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #ff9800;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 10px 15px 20px 0;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background: #f57c00;
            transform: translateY(-2px);
        }
        .btn-download {
            background: #43a047;
        }
        .btn-download:hover {
            background: #2e7d32;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 5px solid #81d4fa;
        }
        .review {
            background: #e3f2fd;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #bbdefb;
        }
        .reviewer {
            font-style: italic;
            color: #37474f;
            margin-top: 12px;
            font-size: 1rem;
        }
        .strategy-tip {
            background: #e0f7fa;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #00acc1;
        }
        .event {
            background: #f1f8e9;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-right: 4px solid #66bb6a;
        }
        footer {
            background: #1a237e;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #b3e5fc;
        }
        .game-types a, .tags a {
            color: #81d4fa;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 10px;
        }
        .game-types a:hover, .tags a:hover {
            text-decoration: underline;
        }
        .recommendation {
            margin: 35px 0;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e3f2fd;
        }
        .copyright {
            margin-top: 45px;
            text-align: center;
            color: #b3e5fc;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .image-container {
                margin: 25px 0;
            }
        }
