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: #f9f0ff;
        }
        header {
            background-color: #8a2be2;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 25px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 15px;
        }
        h1 {
            color: #4b0082;
            border-bottom: 3px solid #8a2be2;
            padding-bottom: 10px;
            margin-top: 30px;
        }
        h2 {
            color: #6a0dad;
            margin-top: 25px;
        }
        h3 {
            color: #9932cc;
            margin-top: 20px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff69b4;
            color: white;
            padding: 12px 25px;
            margin: 15px 5px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: #e6e6fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .strategy-card {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            display: block;
        }
        footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #8a2be2;
            font-size: 14px;
            color: #666;
        }
        .tag {
            display: inline-block;
            background-color: #d8bfd8;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 15px;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            body {
                padding: 10px;
            }
        }
