/* 
   80s Police / Retro Office Style 
   Clean, Static, High Contrast
*/

@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Archivo+Black&display=swap');

:root {
    --bg-color: #d8dbe2;      /* Light Police Grey */
    --card-bg: #f2f4f8;       /* Paper/Terminal White */
    --accent-blue: #003366;   /* Deep Police Blue */
    --accent-gold: #cfaa23;   /* Badge Gold/Amber */
    --text-main: #1a1a1a;     /* Ink Black */
    --grid-lines: rgba(0, 51, 102, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Courier Prime', monospace; /* Typewriter/Report font */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* -------------------------------
   Static Background Grid (Graph Paper)
--------------------------------*/
.background-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--grid-lines) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-lines) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* -------------------------------
   Main Interface Card
--------------------------------*/
.main-interface {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 550px;
    background: var(--card-bg);
    border: 4px solid var(--accent-blue);
    box-shadow: 10px 10px 0px rgba(0, 51, 102, 0.2); /* Solid hard shadow, retro style */
}

/* Top Strip */
.header-bar {
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.content-box {
    padding: 2.5rem 2rem;
    text-align: center;
}

/* -------------------------------
   Logo Styling
--------------------------------*/
.logo-wrapper {
    margin-bottom: 1.5rem;
}

.logo {
    width: 300px; /* Adjust based on your logo shape */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Ensure black logo is sharp */
    filter: contrast(110%);
}

/* -------------------------------
   Typography & List
--------------------------------*/
.tagline {
    font-family: 'Archivo Black', sans-serif; /* Thick header font */
    font-size: 1rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.divider {
    border: 0;
    border-top: 2px dashed #ccc;
    margin: 1.5rem 0;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.features li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #333;
}

.features li strong {
    color: var(--accent-blue);
    margin-right: 8px;
}

/* -------------------------------
   Buttons & Footer
--------------------------------*/
.btn-primary {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    text-decoration: none;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--accent-blue);
}

.status-footer {
    margin-top: 2rem;
}

.status-badge {
    background: #e0e0e0;
    color: #555;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border: 1px solid #999;
}

/* -------------------------------
   Responsive
--------------------------------*/
@media (max-width: 600px) {
    .main-interface { width: 95%; }
    .logo { width: 220px; }
}