.floating-bonus-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #197B59 0%, #02432D 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(25, 123, 89, 0.5);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-bonus-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 32px rgba(25, 123, 89, 0.7);
}

.floating-bonus-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.bonus-icon {
    font-size: 28px;
    color: #fff;
    line-height: 1;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.bonus-text {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #197B59;
    border-radius: 50%;
    animation: pulseAnimation 2s ease-out infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #02432D 0%, #001a11 100%);
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(25, 123, 89, 0.3);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #197B59 0%, #FFD700 50%, #197B59 100%);
    animation: headerShimmer 3s linear infinite;
}

@keyframes headerShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 68, 68, 0.8);
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px 30px 30px;
}

.bonus-header {
    text-align: center;
    margin-bottom: 30px;
}

.crown-icon {
    font-size: 48px;
    margin-bottom: 12px;
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.modal-subtitle {
    font-size: 15px;
    color: #b0b8c1;
    font-weight: 500;
}

.bonus-details {
    background: rgba(25, 123, 89, 0.15);
    border: 2px solid rgba(25, 123, 89, 0.4);
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.bonus-details::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25, 123, 89, 0.1) 0%, transparent 70%);
    animation: detailsGlow 4s linear infinite;
}

@keyframes detailsGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bonus-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.currency-symbol {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    margin-right: 4px;
    margin-top: 8px;
}

.amount-value {
    font-size: 56px;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.bonus-description {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(25, 123, 89, 0.3);
    border-radius: 12px;
    padding: 16px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(25, 123, 89, 0.15);
    transform: translateY(-4px);
    border-color: rgba(25, 123, 89, 0.6);
}

.feature-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 6px;
}

.feature-text {
    font-size: 12px;
    color: #e0e4e8;
    font-weight: 600;
    display: block;
}

.bonus-steps {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.steps-title {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    font-size: 14px;
    color: #d0d5db;
    padding: 8px 0 8px 40px;
    position: relative;
    font-weight: 500;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #197B59 0%, #02432D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    border: 2px solid rgba(25, 123, 89, 0.5);
}

.claim-bonus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #197B59 0%, #02432D 100%);
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(25, 123, 89, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.claim-bonus-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.claim-bonus-btn:hover::before {
    left: 100%;
}

.claim-bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(25, 123, 89, 0.6);
}

.claim-bonus-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    margin-right: 8px;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.claim-bonus-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.terms-notice {
    font-size: 12px;
    color: #8a9099;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .floating-bonus-btn {
        width: 65px;
        height: 65px;
        bottom: 20px;
        right: 20px;
    }

    .bonus-icon {
        font-size: 26px;
    }

    .bonus-text {
        font-size: 10px;
    }

    .modal-container {
        width: 95%;
        border-radius: 20px;
    }

    .modal-content {
        padding: 35px 24px 24px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .amount-value {
        font-size: 48px;
    }

    .currency-symbol {
        font-size: 28px;
    }

    .bonus-features {
        gap: 10px;
    }

    .feature-item {
        padding: 14px 6px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature-text {
        font-size: 11px;
    }

    .claim-bonus-btn {
        height: 52px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .floating-bonus-btn {
        width: 60px;
        height: 60px;
        bottom: 16px;
        right: 16px;
    }

    .bonus-icon {
        font-size: 24px;
    }

    .bonus-text {
        font-size: 9px;
    }

    .modal-content {
        padding: 10px;
    }

    .crown-icon {
        font-size: 42px;
    }

    .modal-title {
        font-size: 22px;
    }

    .amount-value {
        font-size: 44px;
    }

    .bonus-features {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 0;
        margin-bottom: 10px;
    }

    .feature-item {
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .bonus-header {
        margin-bottom: 10px;
    }

    .bonus-steps {
        margin-bottom: 10px;
    }

    .feature-icon {
        font-size: 22px;
        margin-bottom: 0;
    }

    .feature-text {
        font-size: 13px;
    }
}