/* Iframe Popup Styles */
#iframe-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#iframe-popup.active {
    opacity: 1;
    pointer-events: auto;
}

#iframe-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    background: #0a0a12;
    border: 1px solid var(--color-mars-red);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.2);
    overflow: hidden;
}

#iframe-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 77, 77, 0.2);
    color: var(--color-mars-red);
    border: 1px solid var(--color-mars-red);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#iframe-close-btn:hover {
    background: var(--color-mars-red);
    color: #000;
}

#voice-iframe {
    width: 100%;
    height: 100%;
    border: none;
}