.slotbaji-float-wrapper {
    position: fixed;
    z-index: 9999;
}

.slotbaji-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #146067 0%, #1a7580 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(20, 96, 103, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.slotbaji-float-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(20, 96, 103, 0.6);
    background: linear-gradient(135deg, #1a7580 0%, #22919e 100%);
}

.slotbaji-float-btn:active {
    transform: scale(0.95);
}

.slotbaji-float-icon {
    font-size: 32px;
    animation: slotbajiFloatBounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes slotbajiFloatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.slotbaji-gift-emoji {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.slotbaji-float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(20, 96, 103, 0.4);
    animation: slotbajiPulseAnimation 2s ease-out infinite;
    z-index: 1;
}

@keyframes slotbajiPulseAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.slotbaji-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.slotbaji-modal-overlay.slotbaji-modal-active {
    opacity: 1;
    visibility: visible;
}

.slotbaji-modal-content {
    background: linear-gradient(180deg, #0d1214 0%, #1a2427 100%);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    position: relative;
    border: 3px solid #146067;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-sizing: border-box;
    overflow: hidden;
}

.slotbaji-modal-overlay.slotbaji-modal-active .slotbaji-modal-content {
    transform: scale(1) translateY(0);
}

.slotbaji-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(206, 214, 216, 0.1);
    border: 2px solid #146067;
    color: #CED6D8;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slotbaji-modal-close:hover {
    background: #146067;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(20, 96, 103, 0.6);
}

.slotbaji-modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 2px solid rgba(20, 96, 103, 0.3);
}

.slotbaji-modal-icon {
    font-size: 60px;
    color: #fff;
    margin-bottom: 15px;
    animation: slotbajiModalIconSpin 3s ease-in-out infinite;
}

@keyframes slotbajiModalIconSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.slotbaji-modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #CED6D8;
    margin: 0 0 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(206, 214, 216, 0.5);
}

.slotbaji-modal-subtitle {
    font-size: 16px;
    color: #146067;
    font-weight: 600;
    margin: 0;
}

.slotbaji-modal-body {
    padding: 30px 30px 35px;
}

.slotbaji-bonus-badge {
    background: linear-gradient(135deg, #146067 0%, #1a7580 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(20, 96, 103, 0.3);
    border: 2px solid rgba(206, 214, 216, 0.2);
}

.slotbaji-bonus-amount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #CED6D8;
    text-shadow: 0 0 25px rgba(206, 214, 216, 0.8);
    margin-bottom: 8px;
    animation: slotbajiAmountGlow 2s ease-in-out infinite;
}

@keyframes slotbajiAmountGlow {
    0%, 100% {
        text-shadow: 0 0 25px rgba(206, 214, 216, 0.8);
    }
    50% {
        text-shadow: 0 0 35px rgba(206, 214, 216, 1), 0 0 45px rgba(20, 96, 103, 0.6);
    }
}

.slotbaji-bonus-label {
    display: block;
    font-size: 16px;
    color: #CED6D8;
    font-weight: 600;
    letter-spacing: 1px;
}

.slotbaji-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.slotbaji-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #CED6D8;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(20, 96, 103, 0.2);
}

.slotbaji-feature-item:last-child {
    border-bottom: none;
}

.slotbaji-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #146067;
    color: #CED6D8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(20, 96, 103, 0.4);
}

.slotbaji-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 55px);
    margin: 0 auto;
    padding: 18px 30px;
    background: linear-gradient(135deg, #146067 0%, #1a7580 100%);
    border: none;
    border-radius: 12px;
    color: #CED6D8;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(20, 96, 103, 0.4);
    position: relative;
    overflow: hidden;
}

.slotbaji-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 214, 216, 0.3), transparent);
    transition: left 0.5s ease;
}

.slotbaji-cta-button:hover::before {
    left: 100%;
}

.slotbaji-cta-button:hover {
    background: linear-gradient(135deg, #1a7580 0%, #22919e 100%);
    box-shadow: 0 12px 30px rgba(20, 96, 103, 0.6);
    transform: translateY(-2px);
}

.slotbaji-cta-button:active {
    transform: translateY(0);
}

.slotbaji-cta-text {
    position: relative;
    z-index: 1;
}

.slotbaji-cta-arrow {
    margin-left: 10px;
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.slotbaji-cta-button:hover .slotbaji-cta-arrow {
    transform: translateX(5px);
}

.slotbaji-modal-disclaimer {
    text-align: center;
    font-size: 12px;
    color: rgba(206, 214, 216, 0.6);
    margin: 15px 0 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .slotbaji-float-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .slotbaji-float-icon {
        font-size: 28px;
    }

    .slotbaji-modal-content {
        max-width: 95%;
        margin: 0 10px;
    }

    .slotbaji-modal-header {
        padding: 30px 20px 15px;
    }

    .slotbaji-modal-title {
        font-size: 26px;
    }

    .slotbaji-modal-icon {
        font-size: 50px;
    }

    .slotbaji-modal-body {
        padding: 20px 20px 25px;
    }

    .slotbaji-bonus-amount {
        font-size: 40px;
    }

    .slotbaji-cta-button {
        font-size: 16px;
        padding: 16px 25px;
    }
}

@media (max-width: 480px) {
    .slotbaji-float-btn {
        width: 55px;
        height: 55px;
    }

    .slotbaji-modal-title {
        font-size: 22px;
    }

    .slotbaji-bonus-amount {
        font-size: 36px;
    }

    .slotbaji-feature-item {
        font-size: 14px;
    }
}