/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow: hidden; /* Prevent scroll on meeting view */
}

/* Utilities */
.hidden { display: none !important; }
.active { display: flex !important; }
.highlight { color: #ff4444; font-weight: 700; }

/* Views */
.app-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121212;
    transition: opacity 0.3s ease;
}

/* Splash Screen Animation */
.mamba-pulse {
    animation: pulse-red 1.5s infinite ease-in-out;
    text-align: center;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; text-shadow: 0 0 15px rgba(255, 68, 68, 0.4); }
    100% { transform: scale(0.95); opacity: 0.6; }
}

/* Card Styling (Login/Input) */
.testimonial-card {
    background: #1a1a1a;
    width: 90%;
    max-width: 350px;
    border-radius: 12px;
    border: 1px solid #333;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testimonial-card h1 { font-size: 28px; margin-bottom: 5px; letter-spacing: 2px; }
.testimonial-card p { color: #666; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }

/* Inputs */
.mamba-input {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mamba-input:focus {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

/* Buttons */
.cta-button {
    width: 100%;
    background: transparent;
    border: 2px solid #ff4444;
    color: #ff4444;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ff4444;
    color: #121212;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

/* Meeting View Layout */
#meeting-view {
    justify-content: flex-start; /* Align top */
}

.navbar {
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(255, 68, 68, 0.2);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    z-index: 10;
}

.nav-logo { font-weight: bold; letter-spacing: 2px; font-size: 18px; }

.exit-btn {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}
.exit-btn:hover { background: rgba(255, 68, 68, 0.2); }

#jitsi-container {
    width: 100%;
    height: calc(100vh - 60px); /* Full height minus navbar */
    background: #000;
}