.rap-popup {
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.6); z-index: 9999;
}
.hidden { display: none !important; } 
.rap-content {
    background: #111; border-radius: 12px; color: #fff;
    overflow: hidden; box-shadow: 0 0 25px rgba(0,0,0,0.8);
}
.rap-body { padding: 20px; text-align: center; }
.rap-btn {
    display: inline-block; background: #ff6600; color: #fff;
    padding: 10px 20px; border-radius: 8px; margin-top: 10px;
    text-decoration: none; font-weight: bold;
}
.rap-btn:hover { background: #ff7a26; }
.rap-close {
    position: absolute; top: 10px; right: 15px;
    background: none; border: none; color: #fff;
    font-size: 26px; cursor: pointer;
}

/* Fullscreen */
.rap-fullscreen .rap-content {
    width: 90%; height: 80%; display: flex; flex-direction: column;
}
/* Standard */
.rap-standard .rap-content { width: 400px; max-width: 95%; padding-bottom: 10px; }
/* Bottom Banner */
.rap-bottom { align-items: flex-end; }
.rap-bottom .rap-content {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; background: rgba(20,20,20,0.98); color: #fff; border-radius: 0;
    padding: 10px 20px; box-shadow: 0 -3px 10px rgba(0,0,0,0.4);
}
.rap-bottom .rap-media img, .rap-bottom .rap-media video {
    width: 80px; height: 80px; border-radius: 8px; object-fit: cover; margin-right: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .rap-fullscreen .rap-content { width: 95%; height: 70%; }
    .rap-bottom .rap-content { flex-direction: column; text-align: center; padding: 15px; }
    .rap-bottom .rap-media img { width: 100%; height: 150px; margin: 0 0 10px 0; }
}
