* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: #eef2f5;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .install-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 40px 30px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .icon-box {
            width: 96px;
            height: 96px;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .icon-box img {
            width: 68px;
            height: 68px;
            border-radius: 16px;
            object-fit: cover;
        }

        h1 {
            font-size: 26px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .status-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13.5px;
            font-weight: 600;
            color: #64748b;
            margin-bottom: 32px;
        }

        .status-badge i {
            color: #3b82f6;
            font-size: 15px;
        }

        .install-btn {
            width: 100%;
            background: #028a5c;
            color: #ffffff;
            border: none;
            padding: 16px 24px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 8px 20px rgba(2, 138, 92, 0.25);
            transition: all 0.2s ease;
            outline: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .install-btn:hover {
            background: #027a51;
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(2, 138, 92, 0.3);
        }

        .install-btn:active {
            transform: translateY(1px);
            box-shadow: 0 4px 10px rgba(2, 138, 92, 0.2);
        }

        .security-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: #94a3b8;
            margin-top: 24px;
        }

        .security-footer i {
            font-size: 13px;
        }
