:root {
    --brand-green: #2ea274;
    --accent-gold: #FFD700;
    --dark-text: #333;
    --light-text: #fff;
}

.bonus-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brand-green);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    animation: slideUp 0.5s ease 2s forwards;
}

.bonus-banner.show {
    transform: translateY(0);
}

.bonus-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-banner-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-text);
}

.bonus-banner-text h3 {
    font-size: 14px;
    color: var(--light-text);
    margin: 0 0 2px 0;
    font-weight: bold;
}

.bonus-banner-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.bonus-banner-btn {
    background: var(--accent-gold);
    color: var(--dark-text);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bonus-banner-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.bonus-banner-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
}

.floating-bonus {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    animation: pulse-green 2s infinite;
}

.bonus-btn {
    background: var(--brand-green);
    border: 2px solid var(--light-text);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--light-text);
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.bonus-btn:hover {
    transform: scale(1.1);
}

.bonus-icon {
    font-size: 28px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 650px;
    width: 90%;
    background: var(--light-text);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-visual {
    background: #23825f;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
}

.popup-visual img {
    width: 120px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.popup-visual h3 {
    font-size: 24px;
    margin: 0;
}

.popup-details {
    padding: 30px 40px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    color: #999;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 30px;
    transition: all 0.3s;
}

.popup-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.popup-title {
    font-size: 28px;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: bold;
}

.popup-bonus {
    margin: 20px 0;
}

.bonus-amount {
    font-size: 60px;
    color: var(--brand-green);
    font-weight: 900;
    line-height: 1;
}

.bonus-label {
    color: #555;
    font-weight: 500;
    font-size: 16px;
    margin: 5px 0 0 0;
}

.popup-features {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: left;
}
.popup-features span {
    color: var(--brand-green);
    margin-right: 5px;
}

.popup-btn {
    background: var(--accent-gold);
    color: var(--dark-text);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    transition: filter 0.3s ease;
    text-transform: uppercase;
}

.popup-btn:hover {
    filter: brightness(1.1);
}

@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
@keyframes pulse-green{0%{transform:scale(1)}50%{transform:scale(1.08)}100%{transform:scale(1)}}

@media (max-width: 768px) {
    .floating-bonus {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 70px;
    }
    .popup-content {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    .popup-visual {
        padding: 25px;
    }
    .popup-visual img {
        width: 80px;
    }
    .popup-visual h3 {
        font-size: 20px;
    }
    .popup-details {
        padding: 25px;
    }
    .popup-title { font-size: 22px; }
    .bonus-amount { font-size: 52px; }
}

@media (max-width: 480px) {
    .bonus-banner {
        flex-direction: column;
        gap: 10px;
    }
}