.dag-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 999999;
}

.dag-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#dag-main {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.dag-hidden {
    display: none !important;
}

.dag-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }

.dag-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

.dag-dots {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dag-dots span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #888;
    display: inline-block;
    border-radius: 50%;
}

.dag-dots .active {
    background: #fff;
}