/* waifu-wars/css/summons.css - Styles for the dedicated Summons screen */

#summons-container {
    position: absolute;
    top: 75px;
    bottom: 55px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
}

#summons-content {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.click-interceptor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 3;
    pointer-events: auto;
    cursor: pointer;
}

.continue-prompt {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px black;
    z-index: 4;
    pointer-events: none;
    animation: pulse 1.5s infinite;
}

/* Buttons are positioned via JS relative to the 3D scene */
#open-1x-container, #open-3x-container {
    position: absolute;
    bottom: 10%;
    pointer-events: auto;
}

#open-1x-container {
    left: 25%;
    transform: translateX(-50%);
}

#open-3x-container {
    right: 25%;
    transform: translateX(50%);
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.7; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}