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: #d42c2c;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            position: relative;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 1px;
            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;
            cursor: pointer;
            font-size: 24px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
        }
        .game-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .section-title {
            color: #d42c2c;
            border-bottom: 2px solid #d42c2c;
            padding-bottom: 5px;
            margin: 30px 0 15px;
        }
        .sub-title {
            color: #8B4513;
            margin: 20px 0 10px;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            margin-top: 30px;
            border-radius: 5px;
        }
        .tag {
            background-color: #8B4513;
            color: white;
            padding: 3px 8px;
            border-radius: 15px;
            margin: 5px;
            display: inline-block;
            font-size: 14px;
        }
