* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #1a3b5d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #8b0000;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            font-family: 'Times New Roman', serif;
        }
        .nav {
            display: inline-block;
        }
        .nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #8b0000;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            font-family: 'Times New Roman', serif;
        }
        h2 {
            color: #8b0000;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-left: 4px solid #cd5c5c;
            padding-left: 15px;
            font-family: 'Times New Roman', serif;
        }
        h3 {
            color: #006400;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            font-family: 'Times New Roman', serif;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #8b0000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #6b0000;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #006400;
        }
        .btn-login:hover {
            background-color: #004d00;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .highlight {
            font-weight: bold;
            color: #8b0000;
        }
        .stats-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin: 30px 0;
            border-top: 5px solid #8b0000;
        }
        .review {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 3px solid #006400;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .tips-list {
            margin: 20px 0 20px 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: "•";
            color: #8b0000;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .footer {
            background-color: #1a3b5d;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 20px 0;
        }
        .game-types h4, .tags h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
            color: #ffd700;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 8px;
            transition: 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
            transform: translateX(3px);
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #4a6990;
            text-align: center;
            font-size: 0.9rem;
            color: #d1d8e0;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #8b0000;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav.active {
                display: block;
            }
            .nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .mobile-menu-btn {
                display: inline-block;
                float: right;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
