.pkpk-floating-wrapper {
    position: fixed;
    z-index: 9999;
}

/* Floating Button Styles */
.pkpk-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #473B26 0%, #6B5738 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(71, 59, 38, 0.5), 0 0 0 0 rgba(71, 59, 38, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pkpkFloatPulse 2s ease-in-out infinite;
    z-index: 10000;
    overflow: visible;
}

@keyframes pkpkFloatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.pkpk-float-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(71, 59, 38, 0.7), 0 0 0 8px rgba(71, 59, 38, 0.2);
    background: linear-gradient(135deg, #6B5738 0%, #8B734A 100%);
}

.pkpk-float-btn:active {
    transform: translateY(-6px) scale(1.08);
}

.pkpk-float-icon {
    font-size: 28px;
    margin-bottom: 2px;
    
    color: #ffdb00;
    animation: pkpkIconBounce 2s ease-in-out infinite;
}

@keyframes pkpkIconBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-10deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.1) rotate(-10deg);
    }
}

.pkpk-float-text {
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pkpk-float-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid #473B26;
    border-radius: 50%;
    animation: pkpkPulseRing 2s ease-out infinite;
    opacity: 0;
}

@keyframes pkpkPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Modal Overlay */
.pkpk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pkpk-modal-overlay.pkpk-active {
    opacity: 1;
    visibility: visible;
}

.pkpk-modal-container {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: #212121;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px #473B26;
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pkpk-modal-overlay.pkpk-active .pkpk-modal-container {
    transform: scale(1) translateY(0);
}

.pkpk-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(71, 59, 38, 0.2);
    border: 2px solid #473B26;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.pkpk-modal-close:hover {
    background: #473B26;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(71, 59, 38, 0.6);
}

.pkpk-modal-content {
    padding: 20px 15px 15px;
}

/* Modal Header */
.pkpk-modal-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.pkpk-header-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: pkpkHeaderPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pkpkHeaderPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.pkpk-modal-title {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #473B26 0%, #6B5738 50%, #8B734A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(71, 59, 38, 0.3);
}

.pkpk-modal-subtitle {
    font-size: 16px;
    color: #b8b8b8;
    margin: 0;
    font-weight: 600;
}

/* Bonus Card */
.pkpk-modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pkpk-bonus-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #473B26;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(71, 59, 38, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.pkpk-bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(71, 59, 38, 0.1) 50%, transparent 70%);
    animation: pkpkCardShine 3s linear infinite;
}

@keyframes pkpkCardShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pkpk-bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.pkpk-currency {
    font-size: 32px;
    font-weight: 900;
    color: #ffdb00;
    text-shadow: 0 0 20px rgba(71, 59, 38, 0.8);
}

.pkpk-amount {
    font-size: 36px;
    font-weight: 900;
    color: #ffdb00;
    animation: pkpkAmountGlow 2s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes pkpkAmountGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.pkpk-bonus-label {
    font-size: 14px;
    font-weight: 700;
    color: #8B734A;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Features List */
.pkpk-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkpk-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(71, 59, 38, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(71, 59, 38, 0.3);
    transition: all 0.3s ease;
}

.pkpk-feature-item:hover {
    background: rgba(71, 59, 38, 0.2);
    border-color: #473B26;
    transform: translateX(5px);
}

.pkpk-feature-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.pkpk-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #e8e8e8;
}

/* CTA Button */
.pkpk-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #473B26 0%, #6B5738 100%);
    color: #fff;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(71, 59, 38, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.pkpk-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pkpk-cta-button:hover::before {
    left: 100%;
}

.pkpk-cta-button:hover {
    background: linear-gradient(135deg, #6B5738 0%, #8B734A 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(71, 59, 38, 0.6);
}

.pkpk-cta-button:active {
    transform: translateY(-1px);
}

.pkpk-cta-text {
    position: relative;
    z-index: 1;
}

.pkpk-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.pkpk-cta-button:hover .pkpk-cta-arrow {
    transform: translateX(5px);
}

/* Modal Footer */
.pkpk-modal-footer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin: 15px 0 0 0;
}

.pkpk-brand-highlight {
    color: #ffdb00;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(71, 59, 38, 0.5);
}

/* Responsive Design */
@media (max-width: 576px) {
    .pkpk-float-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .pkpk-float-icon {
        font-size: 24px;
    }

    .pkpk-float-text {
        font-size: 9px;
    }

    .pkpk-modal-container {
        max-width: 95%;
        border-radius: 20px;
    }

    .pkpk-modal-content {
        padding: 35px 20px 30px;
    }

    .pkpk-modal-title {
        font-size: 26px;
    }

    .pkpk-modal-subtitle {
        font-size: 14px;
    }

    .pkpk-header-icon {
        font-size: 50px;
    }

    .pkpk-bonus-card {
        padding: 25px 20px;
    }

    .pkpk-currency {
        font-size: 28px;
    }

    .pkpk-amount {
        font-size: 40px;
    }

    .pkpk-bonus-label {
        font-size: 12px;
    }

    .pkpk-feature-item {
        padding: 10px 14px;
    }

    .pkpk-feature-icon {
        font-size: 20px;
    }

    .pkpk-feature-text {
        font-size: 13px;
    }

    .pkpk-cta-button {
        padding: 16px 24px;
        font-size: 14px;
    }

    .pkpk-modal-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .pkpk-modal-title {
        font-size: 24px;
    }

    .pkpk-amount {
        font-size: 36px;
    }

    .pkpk-currency {
        font-size: 24px;
    }
}