* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e63946;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 2.2rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 3px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        .main-content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ffd700;
            font-size: 3rem;
            margin-bottom: 30px;
            text-align: center;
            padding: 25px 0;
            border-bottom: 5px solid #e63946;
        }
        h2 {
            color: #ffd700;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 6px solid #e63946;
        }
        h3 {
            color: #f1faee;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚔️";
            margin-right: 12px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #4cc9f0;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            margin: 25px 15px 25px 0;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s;
            text-align: center;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #4cc9f0;
            color: #1a1a2e;
            box-shadow: 0 5px 0 #4361ee;
        }
        .login-btn {
            background-color: #ffd700;
            color: #1a1a2e;
            box-shadow: 0 5px 0 #ffb703;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .btn:active {
            transform: translateY(2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            border: 4px solid #ffd700;
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            border-top: 6px solid #e63946;
        }
        .stats-box h3 {
            color: #ffd700;
            margin-top: 0;
        }
        .stats-box p {
            margin: 15px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #4cc9f0;
            font-size: 1.8rem;
            margin-right: 12px;
        }
        .review-box {
            background-color: #0f3460;
            border-left: 6px solid #ffd700;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            position: relative;
        }
        .review-box::before {
            content: '"';
            font-size: 6rem;
            color: rgba(255, 215, 0, 0.1);
            position: absolute;
            top: -20px;
            left: 15px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-style: italic;
            color: #a8dadc;
            margin-top: 15px;
            font-weight: 500;
            font-size: 1.1rem;
        }
        .tips-list {
            margin: 25px 0 25px 50px;
        }
        .tips-list li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            position: relative;
        }
        .tips-list li::before {
            content: "•";
            color: #4cc9f0;
            font-size: 1.8rem;
            position: absolute;
            left: -25px;
            top: -8px;
        }
        .footer {
            background-color: #0f3460;
            color: white;
            padding: 60px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 40px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffd700;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #f1faee;
            text-decoration: none;
            margin-right: 25px;
            display: inline-block;
            margin-bottom: 15px;
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffd700;
            transform: translateX(5px);
        }
        .recommendation {
            margin: 50px 0;
            padding: 25px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 10px;
            font-size: 1.2rem;
            line-height: 2;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1.1rem;
            color: #a8dadc;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #e63946;
                padding: 30px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
            }
            .nav-links li {
                margin: 20px 0;
                border-bottom: 1px solid rgba(255,255,255,0.2);
                padding-bottom: 15px;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2.4rem;
                padding: 20px 0;
            }
            h2 {
                font-size: 1.9rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 20px 0;
                padding: 18px;
            }
            .stats-box, .review-box {
                padding: 20px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .image-container {
                margin: 30px 0;
            }
        }
