body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #1a5276;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #1a5276;
            border-bottom: 2px solid #1a5276;
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
    h2 {
        color: #2874a6;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    h3 {
        color: #3498db;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .download-btn, .login-btn {
        display: inline-block;
        background-color: #27ae60;
        color: white;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin: 15px 5px;
        transition: background-color 0.3s;
    }
    .download-btn:hover, .login-btn:hover {
        background-color: #219653;
    }
    .game-stats {
        background-color: #e8f8f5;
        padding: 20px;
        border-radius: 10px;
        margin: 20px 0;
    }
    .player-review {
        background-color: #fef9e7;
        padding: 20px;
        border-radius: 10px;
        margin: 20px 0;
        border-left: 5px solid #f1c40f;
    }
    .strategy-section {
        background-color: #eaeaea;
        padding: 20px;
        border-radius: 10px;
        margin: 20px 0;
    }
    img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    footer {
        background-color: #1a5276;
        color: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 40px;
        text-align: center;
    }
    .tags {
        margin: 20px 0;
    }
    .tag {
        display: inline-block;
        background-color: #3498db;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        margin: 5px;
        text-decoration: none;
    }
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        nav {
            flex-direction: column;
            align-items: flex-start;
            display: none;
        }
        nav.active {
            display: flex;
        }
        nav a {
            margin: 5px 0;
        }
    }
