* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #ff6b35, #e63946);
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom: 2px solid white;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b35, #e63946);
                padding: 25px;
                gap: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            .logo {
                font-size: 1.6rem;
            }
        }
        h1, h2, h3 {
            color: #e63946;
            margin: 30px 0 18px;
            font-weight: 800;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #ff6b35;
            padding-bottom: 12px;
            margin-top: 40px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #ff6b35;
            padding-left: 18px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: #219ebc;
            margin-top: 30px;
            padding-left: 10px;
            border-left: 3px solid #219ebc;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #333;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            margin: 12px 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #06d6a0;
        }
        .btn-download:hover {
            background-color: #05b790;
        }
        .highlight {
            font-weight: 800;
            color: #e63946;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #219ebc;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            width: 100%;
            max-width: 850px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background-color: #e0f7fa;
            color: #219ebc;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #b2ebf2;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 10px 8px;
            text-decoration: none;
            color: #444;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #e63946;
            border-bottom: 2px solid #e63946;
        }
        footer {
            margin-top: 60px;
            padding: 40px 0 30px;
            background-color: #f8f9fa;
            border-top: 1px solid #eee;
        }
        .footer-content {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #eaeaea;
        }
        .copyright {
            margin-top: 25px;
            color: #666;
            font-size: 0.95rem;
            text-align: center;
        }
        .feature-list {
            margin: 20px 0 30px 25px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 25px;
        }
        .feature-list li:before {
            content: "✓";
            color: #06d6a0;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .quote-box {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 5px;
        }
        .quote-box p {
            font-style: italic;
            color: #856404;
            margin-bottom: 0;
        }
        .quote-author {
            font-weight: bold;
            margin-top: 10px;
            color: #533f03;
        }
