/* Container Styles - Not really needed anymore but kept for safety */
.npc-container {
  display: none; /* Hide any container remnants */
}

/* FULL SCREEN MODAL STYLES */
.npc-fullscreen-modal {
    display: none; /* Hidden by default, JS turns it on */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 999999;
}

.npc-fullscreen-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Transparent Close Button Styling */
.npc-top-bar {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000000;
}

.npc-close-btn {
    background: transparent; /* Removed Red Background */
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white text */
    border: none; /* Removed border */
    width: 50px;
    height: 50px;
    font-size: 35px; /* Bigger X icon */
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Shadow for visibility on light bg */
    transition: all 0.3s ease;
}

.npc-close-btn:hover {
    color: #fff; /* White on hover */
    transform: scale(1.1);
}