body {
    background-color: #080d1a; 
    background-image: url('../img/banner.jpg');
    background-size: cover; 
    background-position: center center; 
    background-repeat: no-repeat;
    
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
}

.container {
    width: 100%;
    height: 100vh; 
    padding: 4vh 20px; 
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    align-items: center;
    box-sizing: border-box;
}

/* --- App Web Tabs (Top Navigation) --- */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2vh; 
    flex-wrap: wrap; 
    flex-shrink: 0; 
}

.nav-tabs a {
    position: relative; /* NEW: Allows the Coming Soon badge to anchor to the button */
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #4da6ff; 
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease; 
    background-color: rgba(8, 13, 26, 0.5);
    backdrop-filter: blur(4px); 
}

.nav-tabs a:hover {
    color: #080d1a; 
    background-color: #A4E944; 
    border-color: #A4E944;
    box-shadow: 0 0 20px #A4E944, 0 0 40px rgba(164, 233, 68, 0.4); 
}

/* --- NEW: COMING SOON BADGE --- */
.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background-color: #ff4d4d;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
    animation: pulse-red 2s infinite;
    pointer-events: none; /* Prevents the badge from blocking clicks on the tab */
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 77, 77, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(255, 77, 77, 0.9); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 77, 77, 0.6); }
}

/* --- About & DRE-COMM Page Specifics --- */
.about-content-page {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-panel-static {
    width: 70%; 
    max-width: 680px; 
    min-height: 45vh; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    
    background-color: rgba(8, 13, 26, 0.65); 
    padding: 40px;
    border: 1px solid #4da6ff; 
    border-bottom: 4px solid #A4E944; 
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6); 
    text-align: center; 
    backdrop-filter: blur(6px); 
}

.about-panel-static h2 {
    color: #A4E944; 
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-panel-static p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8; 
    margin-bottom: 20px;
}

.about-panel-static p:last-child {
    margin-bottom: 0; 
}

/* --- Status Console (Bottom) --- */
.status-console {
    margin-top: 2vh; 
    margin-bottom: 5vh; 
    flex-shrink: 0; 
    text-align: center;
    background-color: rgba(8, 13, 26, 0.5); 
    padding: 10px 30px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

h1 {
    font-size: 1.8rem;
    color: #A4E944; 
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 10px 0;
}

.sub-text {
    color: #4da6ff; 
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: #A4E944;
    font-size: 1.2rem;
    margin: 0;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    body {
        background-image: url('../img/banner_mobile.jpg'); 
        background-size: cover; 
        height: 100vh;
        overflow: hidden; 
    }

    .container {
        height: 100vh;
        padding: 2vh 15px; 
    }

    .about-panel-static {
        width: 95%; 
        padding: 25px;
        min-height: auto; 
    }

    .nav-tabs { gap: 10px; }
    .nav-tabs a { padding: 8px 12px; font-size: 0.85rem; }
    .status-console { margin-bottom: 8vh; }
    h1 { font-size: 1.4rem; }
}