.skybet88-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-bonus-btn {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #155155 0%, #003E3E 100%);
    border: 4px solid rgba(0, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 62, 62, 0.8), 0 0 0 0 rgba(0, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-bonus-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 62, 62, 1), 0 0 40px rgba(0, 255, 255, 0.5);
    border-color: rgba(0, 255, 255, 0.8);
}

.floating-bonus-btn:active {
    transform: scale(0.95);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn-icon-wrapper {
    margin-bottom: 2px;
}

.gift-icon {
    font-size: 28px;
    display: block;
    color: #fff;
    animation: giftRotate 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes giftRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-15deg) scale(1.1);
    }
    75% {
        transform: rotate(15deg) scale(1.1);
    }
}

.btn-text {
    font-size: 9px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 255, 0.6);
    animation: pulseRingEffect 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRingEffect {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.bonus-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.bonus-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bonus-modal-container {
    position: relative;
    max-width: 520px;
    width: 100%;
    background: linear-gradient(135deg, #003E3E 0%, #155155 50%, #003E3E 100%);
    border-radius: 24px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 80px rgba(0, 255, 255, 0.2);
    transform: scale(0.8) translateY(40px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.bonus-modal-overlay.active .bonus-modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.bonus-modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 255, 0.8) 50%, 
        transparent 100%);
    animation: topShimmer 3s linear infinite;
}

@keyframes topShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 85, 85, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.close-icon {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.modal-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.header-icon {
    margin-bottom: 16px;
    animation: headerIconBounce 2s ease-in-out infinite;
}

@keyframes headerIconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

.trophy-emoji {
    font-size: 56px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.6));
}

.modal-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 255, 0.4);
}

.modal-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #00ffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.modal-body {
    padding: 30px;
}

.bonus-highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(21, 81, 81, 0.2) 100%);
    border: 3px solid rgba(0, 255, 255, 0.4);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.bonus-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: boxShine 3s infinite;
}

@keyframes boxShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.currency-symbol {
    font-size: 36px;
    font-weight: 900;
    color: #00ffff;
    margin-right: 4px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 1);
}

.amount-value {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 255, 0.6);
    animation: amountPulse 2s ease-in-out infinite;
}

@keyframes amountPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.bonus-label {
    font-size: 16px;
    font-weight: 700;
    color: #f0f4f8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-list {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(21, 81, 81, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateX(5px);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00ffff 0%, #155155 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #003E3E;
    margin-right: 14px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: #f0f4f8;
    line-height: 1.4;
}

.promo-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.promo-text {
    font-size: 14px;
    font-weight: 600;
    color: #f0f4f8;
    margin: 0;
    line-height: 1.6;
}

.promo-text strong {
    color: #ffd700;
    font-weight: 900;
}

.modal-footer {
    padding: 30px;
    padding-top: 0;
    text-align: center;
}

.claim-bonus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    color: #003E3E;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin-bottom: 16px;
}

.claim-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.7);
}

.claim-bonus-btn:active {
    transform: translateY(-1px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: btnShineEffect 3s infinite;
}

@keyframes btnShineEffect {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.btn-text-content {
    position: relative;
    z-index: 2;
}

.arrow-icon {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.claim-bonus-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.terms-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .skybet88-floating-container {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-bonus-btn {
        width: 70px;
        height: 70px;
    }
    
    .gift-icon {
        font-size: 24px;
    }
    
    .btn-text {
        font-size: 8px;
    }
    
    .bonus-modal-container {
        max-width: 100%;
    }
    
    .modal-header {
        padding: 10px 10px 10px;
    }

    .bonus-highlight-box {
        margin-bottom: 10px;
        padding: 10px;
    }
    
    .trophy-emoji {
        font-size: 48px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .amount-value {
        font-size: 44px;
    }
    
    .currency-symbol {
        font-size: 32px;
    }
    
    .modal-footer {
        padding: 10px;
    }
    
    .claim-bonus-btn {
        padding: 16px 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .skybet88-floating-container {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-bonus-btn {
        width: 65px;
        height: 65px;
    }

    .amount-value {
        font-size: 24px !important;
    }

    .bonus-label {
        font-size: 14px;
    }
    
    .gift-icon {
        font-size: 22px;
    }
    
    .btn-text {
        font-size: 7.5px;
    }
    
    .modal-title {
        font-size: 14px;
    }

    .bonus-modal-container {
        overflow: auto;
        height: 90vh;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    
    .claim-bonus-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}