.opening-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999 !important;   /* FIX */
}

.opening-overlay.hidden {
    display: none;
}

.overlay-inner {
    position: relative;
    width: min(420px, 92vw);
    background: #0b2317;
    border-radius: 18px;
    padding: 0.75rem;
    border: 1px solid rgba(242, 198, 84, 0.5);
}

.overlay-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 0.6rem;
}

.overlay-text {
    text-align: center;
    color: #f2dca1;
    font-size: 0.9rem;
}

.overlay-close {
    position: absolute;
    top: 0.25rem;
    right: 0.35rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: gold;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}