/* ========================================
   PROMO MODAL PREMIUM STYLES
   ======================================== */
.promo-modal {
    max-width: 500px !important;
    background: linear-gradient(135deg, rgba(20, 35, 55, 0.95) 0%, rgba(10, 15, 25, 0.98) 100%) !important;
    border: 1px solid rgba(234, 196, 133, 0.3) !important;
    backdrop-filter: blur(15px);
    border-radius: 20px !important;
    padding: 50px 40px !important;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(234, 196, 133, 0.05) !important;
}

.promo-modal__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-modal__coin {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 25px rgba(234, 196, 133, 0.6));
    animation: promo-coin-float 3s ease-in-out infinite;
}

@keyframes promo-coin-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.promo-modal__coin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-modal__title {
    font-family: var(--primary-font);
    font-size: 32px;
    color: var(--brand-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(234, 196, 133, 0.3);
}

.promo-modal__text {
    font-family: var(--secondary-font);
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 35px;
}

.promo-modal__text b {
    color: var(--brand-color);
}

.promo-modal__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.promo-modal__btn-more {
    width: 100% !important;
    max-width: 280px;
    height: 65px !important;
    font-size: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal__btn-dismiss {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: var(--primary-font);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.promo-modal__btn-dismiss:hover {
    color: var(--brand-color) !important;
}
