/* ==========================================================================
   COMMUNICATIONS LOG — PAGE-SPECIFIC STYLES
   Styles for the chatroom container, welcome message, and Cbox integration.
   ========================================================================== */

/* Main container for the communications log page */
.comms-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border: 1px dashed rgba(0, 255, 204, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Welcome section at the top of the comms page */
.comms-welcome {
    margin-bottom: 30px;
}

/* Transmission heading with neon glow */
.comms-welcome h2 {
    font-family: 'Silkscreen', sans-serif;
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px #00ffcc;
    margin-bottom: 15px;
}

/* Welcome text styling */
.comms-welcome p {
    font-family: 'Space Grotesk', sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Container for the Cbox iframe */
.chatbox {
    border: 2px solid #00ffcc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2), 4px 4px 0px #ff00ff;
    background: #0d0d0d;
}

/* Styling for the embedded chat iframe */
.chatbox iframe {
    display: block;
    filter: contrast(1.1) brightness(1.1);
}



