body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f0e6;
        }
        header {
            background-color: #4a2a0f;
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .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;
        }
        .mobile-menu {
            display: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
        }
        .content {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1, h2, h3 {
            color: #4a2a0f;
            margin-top: 40px;
        }
        h1 {
            font-size: 2.2em;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8em;
            border-left: 5px solid #d4af37;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5em;
            color: #6a4b2d;
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 15px 30px;
            margin: 20px 0;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover {
            background-color: #45a049;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 15px 30px;
            margin: 20px 0;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .login-btn:hover {
            background-color: #0b7dda;
        }
        .game-stats {
            background-color: #fff9e6;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .community-tip {
            background-color: #e6f7ff;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 5px solid #2196F3;
        }
        .event-highlight {
            background-color: #fff0f6;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 5px solid #e91e63;
        }
        footer {
            margin-top: 50px;
            padding: 30px;
            background-color: #4a2a0f;
            color: white;
            border-radius: 8px;
            text-align: center;
        }
        .tag {
            display: inline-block;
            background-color: #6a4b2d;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        .type-link {
            display: inline-block;
            background-color: #d4af37;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
