        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
            align-items: center;
        }

        body {
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            background-color: transparent;
        }

        video.bg-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: -2;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
            backdrop-filter: blur(2px);
        }

        .whatsapp-header {
            background-color: transparent;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: transparent;
            flex-shrink: 0;
        }

        .back-button {
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: opacity 0.2s;
            opacity: 0.9;
        }
        .back-button:hover { opacity: 1; }

        .header-text {
            flex: 1;
            text-align: center;
        }

        .header-text h1 {
            font-size: 24px;
            font-weight: 500;
            text-align: center;
        }

        .header-text p {
            font-size: 17px;
            opacity: 0.9;
            text-align: center;
        }

        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 20px;
            text-align: center;
        }

        .profile-container {
            margin-bottom: 14px;
        }

        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 15px;
            overflow: hidden;
            background: transparent;
            display: transparent;
            justify-content: center;
            align-items: center;
            color: transparent;
            font-size: 52px;
            box-shadow: transparent;
            border: transparent;
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .group-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: transparent;
        }

        .group-info {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .members-info {
            display: flex;
            justify-content: center;
            gap: 35px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .member-count,
        .active-members {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(8px);
            padding: 8px 20px;
            border-radius: 45px;
            transition: all 0.2s;
        }
        .member-count:hover,
        .active-members:hover {
            background: rgba(0,0,0,0.55);
            transform: scale(1.02);
        }

        .count {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .label {
            font-size: 12px;
            opacity: 0.85;
            margin-top: 3px;
        }

        .online-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 3px;
            font-size: 12px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #25d366;
            box-shadow: 0 0 4px #25d366;
            animation: pulseGreen 1.4s infinite;
        }

        @keyframes pulseGreen {
            0% { opacity: 0.5; transform: scale(0.8);}
            100% { opacity: 1; transform: scale(1.2);}
        }

        .button-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin: 15px 0 20px;
            width: 100%;
            max-width: 350px;
        }

        .btn-social {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px 20px;
            border-radius: 60px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
            color: white;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .btn-social span {
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
            text-align: center;
        }

        @media (max-width: 480px) {
            .btn-social {
                font-size: 13px;
                padding: 12px 16px;
                gap: 8px;
            }
        }

        @media (max-width: 400px) {
            .btn-social {
                font-size: 11px;
                padding: 10px 12px;
                gap: 6px;
            }
            .btn-social .custom-icon {
                width: 18px;
                height: 18px;
            }
            .btn-social i {
                font-size: 16px;
            }
        }

        @media (max-width: 340px) {
            .btn-social span {
                font-size: 10px;
            }
        }

        .btn-social .custom-icon {
            width: 22px;
            height: 22px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .btn-social i {
            font-size: 20px;
            flex-shrink: 0;
        }

        .btn-social.whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .btn-social.tinder {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
        }

        .btn-social.onlyfans {
            background: linear-gradient(135deg, #00bfff, #0066cc);
        }

        .btn-social:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
        }

        .btn-social.loading {
            pointer-events: none;
            opacity: 0.8;
            transform: scale(0.98);
        }

        .btn-social.loading i, 
        .btn-social.loading .custom-icon {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .btn-social:active {
            transform: translateY(2px);
        }

        .security-notice {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            font-size: 11px;
            background: rgba(0,0,0,0.3);
            padding: 8px 18px;
            border-radius: 60px;
            backdrop-filter: blur(4px);
        }

        .footer {
            padding: 14px;
            font-size: 10px;
            opacity: 0.6;
            text-align: center;
            flex-shrink: 0;
        }

        @keyframes softPulse {
            0% { transform: scale(1); box-shadow: 0 15px 25px rgba(0,0,0,0.2);}
            50% { transform: scale(1.02); box-shadow: 0 20px 30px rgba(0,0,0,0.25);}
            100% { transform: scale(1); box-shadow: 0 15px 25px rgba(0,0,0,0.2);}
        }
        .profile-img {
            animation: softPulse 4s infinite ease-in-out;
        }

        @media (max-width: 520px) {
            .profile-img {
                width: 100px;
                height: 100px;
            }
            .group-name {
                font-size: 20px;
            }
            .members-info {
                gap: 15px;
            }
            .count {
                font-size: 20px;
            }
            .member-count, .active-members {
                padding: 6px 16px;
            }
            .button-container {
                max-width: 280px;
                gap: 12px;
            }
        }