* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #e63946;
            padding: 15px 0;
            color: white;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            overflow: hidden;
            background-color: #1d3557;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 14px 10px;
            display: block;
            font-weight: 500;
        }
        .nav-links a:hover {
            background-color: #457b9d;
        }
        .mobile-menu-btn {
            display: none;
            background-color: #1d3557;
            color: white;
            border: none;
            padding: 15px;
            font-size: 18px;
            cursor: pointer;
            width: 100%;
            text-align: left;
        }
        h1, h2, h3 {
            color: #1d3557;
            margin: 30px 0 20px;
            border-bottom: 2px solid #e63946;
            padding-bottom: 10px;
        }
        h1 {
            font-size: 32px;
            text-align: center;
            margin-top: 40px;
        }
        h2 {
            font-size: 26px;
        }
        h3 {
            font-size: 22px;
            border-bottom: 1px solid #e63946;
        }
        p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .btn {
            display: inline-block;
            background-color: #457b9d;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #1d3557;
        }
        .btn-download {
            background-color: #2a9d8f;
        }
        .btn-login {
            background-color: #f4a261;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .game-stats {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
        }
        .review {
            background-color: white;
            border-left: 4px solid #e63946;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background-color: #457b9d;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
        }
        .tag:hover {
            background-color: #1d3557;
        }
        .game-types {
            margin: 30px 0;
        }
        .type-link {
            color: #1d3557;
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
        }
        .type-link:hover {
            color: #e63946;
            text-decoration: underline;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #457b9d;
            margin-top: 20px;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                text-align: center;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
        }
