.bet987-floating-trigger {
            position: fixed;
            bottom: 120px;
            right: 35px;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
            color: #ffffff;
            padding: 14px 24px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
            z-index: 9998;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 2px solid rgba(255, 140, 97, 0.8);
            animation: bet987floatBounce 3s ease-in-out infinite;
        }

        @keyframes bet987floatBounce {
            0%, 100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
            }
            50% {
                transform: translateY(-8px) scale(1.02);
                box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7);
            }
        }

        .bet987-floating-trigger:hover {
            background: linear-gradient(135deg, #FF8C61 0%, #FFB094 100%);
            transform: translateY(-5px) scale(1.08);
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.7);
        }

        .bet987-trigger-icon {
            font-size: 26px;
            animation: bet987iconShake 4s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
        }

        @keyframes bet987iconShake {
            0%, 100% {
                transform: rotate(0deg) scale(1);
            }
            10%, 30% {
                transform: rotate(-12deg) scale(1.1);
            }
            20%, 40% {
                transform: rotate(12deg) scale(1.1);
            }
            50% {
                transform: rotate(0deg) scale(1);
            }
        }

        .bet987-trigger-label {
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .bet987-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 20, 0.92);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .bet987-modal-backdrop.show {
            display: flex;
            animation: bet987backdropFade 0.4s ease;
        }

        @keyframes bet987backdropFade {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .bet987-modal-container {
            background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
            border-radius: 24px;
            max-width: 480px;
            width: 92%;
            position: relative;
            border: 3px solid #FF6B35;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4), 0 0 0 1px rgba(255, 140, 97, 0.3);
            animation: bet987modalSlide 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
        }

        @keyframes bet987modalSlide {
            from {
                transform: translateY(80px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .bet987-close-button {
            position: absolute;
            top: 18px;
            right: 18px;
            background: rgba(255, 107, 53, 0.15);
            border: 2px solid #FF6B35;
            color: #FF6B35;
            font-size: 32px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            font-weight: 300;
            line-height: 1;
        }

        .bet987-close-button:hover {
            background: #FF6B35;
            color: #ffffff;
            transform: rotate(180deg) scale(1.1);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
        }

        .bet987-modal-top {
            background: linear-gradient(135deg, #1f2b47 0%, #16213e 100%);
            padding: 40px 30px 30px;
            text-align: center;
            border-bottom: 3px solid #FF6B35;
            position: relative;
            overflow: hidden;
        }

        .bet987-modal-top::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            animation: bet987bgPulse 4s ease-in-out infinite;
        }

        @keyframes bet987bgPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .bet987-header-icon {
            font-size: 64px;
            margin-bottom: 12px;
            animation: bet987headerBounce 3s ease-in-out infinite;
            filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
            position: relative;
            z-index: 1;
        }

        @keyframes bet987headerBounce {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.15);
            }
        }

        .bet987-header-title {
            color: #FF6B35;
            font-size: 32px;
            font-weight: 900;
            margin: 0;
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.6), 0 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 1.5px;
            position: relative;
            z-index: 1;
        }

        .bet987-modal-main {
            padding: 35px 30px;
            text-align: center;
        }

        .bet987-prize-display {
            font-size: 56px;
            font-weight: 900;
            background: linear-gradient(135deg, #FF6B35 0%, #FFB094 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            animation: bet987prizeGlow 2.5s ease-in-out infinite;
            filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.7));
        }

        @keyframes bet987prizeGlow {
            0%, 100% {
                filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.7));
                transform: scale(1);
            }
            50% {
                filter: drop-shadow(0 0 35px rgba(255, 107, 53, 1)) drop-shadow(0 0 45px rgba(255, 140, 97, 0.6));
                transform: scale(1.05);
            }
        }

        .bet987-info-text {
            color: #e0e0e0;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 28px;
            font-weight: 500;
        }

        .bet987-info-text strong {
            color: #FF6B35;
            font-weight: 900;
            text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
        }

        .bet987-benefits {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 25px;
        }

        .bet987-benefit-row {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #e0e0e0;
            font-size: 15px;
            text-align: left;
            font-weight: 600;
            padding: 10px;
            background: rgba(255, 107, 53, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
        }

        .bet987-benefit-row:hover {
            background: rgba(255, 107, 53, 0.12);
            border-color: rgba(255, 107, 53, 0.4);
            transform: translateX(5px);
        }

        .bet987-benefit-check {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
            color: #ffffff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            flex-shrink: 0;
            font-size: 14px;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
        }

        .bet987-modal-bottom {
            padding: 0 30px 35px 30px;
            display: flex;
            justify-content: center;
        }

        .bet987-action-link {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
            color: #ffffff;
            padding: 18px 45px;
            border-radius: 60px;
            font-size: 19px;
            font-weight: 900;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 2px solid rgba(255, 140, 97, 0.8);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .bet987-action-link:hover {
            background: linear-gradient(135deg, #FF8C61 0%, #FFB094 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 35px rgba(255, 107, 53, 0.7);
        }

        .bet987-action-text {
            font-size: 19px;
        }

        .bet987-action-arrow {
            font-size: 22px;
            transition: transform 0.3s ease;
            font-weight: bold;
        }

        .bet987-action-link:hover .bet987-action-arrow {
            transform: translateX(7px);
        }

        @media (max-width: 768px) {
            .bet987-floating-trigger {
                bottom: 90px;
                right: 22px;
                padding: 12px 20px;
            }
            
            .bet987-trigger-icon {
                font-size: 22px;
            }
            
            .bet987-trigger-label {
                font-size: 13px;
            }
            
            .bet987-modal-container {
                max-width: 96%;
                border-width: 2px;
            }
            
            .bet987-header-title {
                font-size: 26px;
            }
            
            .bet987-header-icon {
                font-size: 52px;
            }
            
            .bet987-prize-display {
                font-size: 44px;
            }
            
            .bet987-info-text {
                font-size: 15px;
            }
            
            .bet987-benefit-row {
                font-size: 14px;
            }
            
            .bet987-action-link {
                padding: 16px 35px;
                font-size: 17px;
            }

            .bet987-action-text {
                font-size: 17px;
            }
        }