* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #fff8f0;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e63946;
            padding: 18px 20px;
            color: white;
            position: relative;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            white-space: nowrap;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1d3557;
            margin: 30px 0 25px;
            font-size: 2.4rem;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            color: #1d3557;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-bottom: 3px solid #e63946;
            padding-bottom: 8px;
        }
        h3 {
            color: #457b9d;
            margin: 25px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 3px solid #457b9d;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #333;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #c11d2e;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #1d3557;
        }
        .btn-download:hover {
            background-color: #13243b;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.4s;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #457b9d;
        }
        .tag {
            display: inline-block;
            background-color: #457b9d;
            color: white;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #345e7d;
            transform: translateY(-2px);
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #1d3557;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.05rem;
        }
        .game-type:hover {
            color: #e63946;
            transform: translateX(3px);
        }
        .footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links {
            margin: 25px 0;
            flex-wrap: wrap;
            display: flex;
            gap: 10px;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 1rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .emoji-highlight {
            font-size: 1.2rem;
            margin: 0 5px;
        }
        .quote-box {
            background-color: #f1faee;
            border-left: 4px solid #457b9d;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 25px;
                gap: 20px;
                z-index: 100;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .logo {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 15px auto;
                width: 90%;
            }
            p {
                font-size: 1.05rem;
            }
            .stats-box {
                padding: 20px;
            }
        }
