/* Styling dasar */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            height: 2000px; /* Untuk demo scroll */
        }
        
        /* Container untuk floating buttons */
        .social-floating {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%) translateX(100%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
            transition: transform 0.3s cubic-bezier(0.17, 0.84, 0.44, 1);
            padding-right: 10px;
        }

        .social-floating.active {
            transform: translateY(-50%) translateX(0);
        }

        .social-toggle {
            width: 60px;
            height: 60px;
            background: #333;
            color: white;
            border-radius: 50% 0 0 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-350%);
            z-index: 1001;
        }

        .social-toggle i {
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .social-floating.active + .social-toggle i {
            transform: translateY(-10%) rotate(180deg);
        }
        
        /* Style dasar button */
        .social-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        /* Efek hover */
        .social-btn:hover {
            transform: translateX(-10px) scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* Tooltip */
        .social-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            padding: 5px 15px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            pointer-events: none;
        }
        
        .social-btn:hover::after {
            opacity: 1;
        }
        
        /* Warna khusus untuk setiap platform */
        .facebook {
            background: #3b5998;
        }
        
        .twitter {
            background: #1da1f2;
        }
        
        .instagram {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        
        .whatsapp {
            background: #25d366;
        }
        
        .youtube {
            background: #ff0000;
        }
        
        /* Ikon */
        .social-icon {
            font-size: 24px;
            color: white;
        }
        
        /* Responsive untuk mobile */
        @media (max-width: 768px) {
            .social-floating {
                right: 10px;
                gap: 10px;
            }
            
            .social-btn {
                width: 50px;
                height: 50px;
            }
            
            .social-icon {
                font-size: 18px;
            }
        }