        /* دکمه شیشه‌ای زرد رنگ چشمک‌زن */
        .glass-iptv-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: rgba(255, 215, 0, 0.12);
            backdrop-filter: blur(12px);
            border: 1.5px solid rgba(255, 215, 0, 0.6);
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 18px;
            font-weight: 800;
            color: #FFD700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 15px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            animation: blinkGold 1.2s ease-in-out infinite, floatBtn 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }
        
        .glass-iptv-btn i {
            font-size: 20px;
            color: #FFD700;
        }
        
        .glass-iptv-btn:hover {
            background: rgba(255, 215, 0, 0.25);
            border-color: #FFD700;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px -5px rgba(255, 215, 0, 0.5);
            animation: none;
            color: #FFEA80;
        }
        
        /* افکت چشمک زدن */
        @keyframes blinkGold {
            0% {
                opacity: 0.7;
                box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
                border-color: rgba(255, 215, 0, 0.4);
            }
            50% {
                opacity: 1;
                box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
                border-color: rgba(255, 215, 0, 1);
                background: rgba(255, 215, 0, 0.2);
            }
            100% {
                opacity: 0.7;
                box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
                border-color: rgba(255, 215, 0, 0.4);
            }
        }
        
        /* حرکت ملایم بالا و پایین */
        @keyframes floatBtn {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-4px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        /* ریپل افکت روی دکمه */
        .glass-iptv-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 215, 0, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .glass-iptv-btn:active::before {
            width: 300px;
            height: 300px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        /* دکمه معمولی قرمز */
        .btn-red {
            background: #E50914;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-red:hover {
            background: #FFD700;
            color: #1A1A1A;
        }
        
        @media (max-width: 550px) {
            .glass-iptv-btn {
                font-size: 14px;
                padding: 10px 20px;
            }
            .glass-iptv-btn i {
                font-size: 16px;
            }
        }
