* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #0a3d62 0%, #3c6382 100%);
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 12px;
            color: #fbc531;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            letter-spacing: 1.5px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 14px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 10px;
            border-radius: 5px;
            font-size: 15px;
        }
        .nav-links a:hover {
            color: #fbc531;
            background-color: rgba(255,255,255,0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0a3d62;
            text-align: center;
            margin-bottom: 35px;
            font-size: 36px;
            padding-bottom: 12px;
            border-bottom: 4px solid #fbc531;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #0a3d62;
            margin: 45px 0 25px;
            font-size: 28px;
            border-left: 5px solid #fbc531;
            padding-left: 18px;
        }
        h3 {
            color: #3c6382;
            margin: 35px 0 18px;
            font-size: 22px;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0a3d62;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 4px;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            border: 1px solid #ddd;
        }
        .image-caption {
            font-size: 15px;
            color: #636e72;
            margin-top: 12px;
            font-style: italic;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 12px 18px;
            background-color: #0a3d62;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 17px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #093250;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-left: 6px solid #fbc531;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid #f1f1f1;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin-bottom: 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            position: relative;
        }
        .review:before {
            content: '"';
            font-size: 70px;
            color: #fbc531;
            position: absolute;
            top: 15px;
            left: 20px;
            opacity: 0.2;
        }
        .reviewer {
            font-style: italic;
            color: #636e72;
            margin-top: 18px;
            font-weight: 600;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e1f5fe;
            padding: 9px 18px;
            margin: 0 10px 12px 0;
            border-radius: 25px;
            text-decoration: none;
            color: #0a3d62;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        .tag:hover {
            background-color: #b3e5fc;
            transform: translateY(-3px);
        }
        .game-type {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 12px;
            text-decoration: none;
            color: #0a3d62;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        .game-type:hover {
            color: #fbc531;
        }
        footer {
            background-color: #0a3d62;
            color: white;
            padding: 45px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0 35px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-heading {
            color: #fbc531;
            margin-bottom: 18px;
            font-size: 20px;
            border-bottom: 2px solid #fbc531;
            padding-bottom: 8px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 15px;
            color: #dfe6e9;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #0a3d62;
                padding: 25px 0;
                margin-top: 18px;
                border-radius: 10px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 25px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 92%;
            }
            .stats-item {
                flex-direction: column;
            }
            .stats-item span:last-child {
                margin-top: 8px;
                font-weight: bold;
                color: #0a3d62;
            }
        }
