/*
    ZX1-STYLE.CSS
    Aesthetic: Spaceship Dashboard
    Palette: Black, White, Cyan, Blue
    Fonts: Arial (body), Courier New (console)
*/

/* --- Base & Typography --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #02040a; /* Blue-black background */
    color: #FFFFFF; /* White text */
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding: 20px;
    margin-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #00BFFF; /* DeepSkyBlue for headers */
    text-shadow: 0 0 3px rgba(0, 191, 255, 0.5);
    margin-bottom: 1rem;
}

a {
    color: #00FFFF; /* Cyan for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

/* --- Layout Containers --- */

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #005f7f; /* Dark Blue border */
    padding-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* --- Panels & Cards (Encadrés) --- */

.panel {
    background-color: rgba(10, 25, 47, 0.7); /* Dark, semi-transparent blue */
    border: 1px solid #00BFFF; /* DeepSkyBlue border */
    border-radius: 8px;
    padding: 25px;
    box-shadow: inset 0 0 10px rgba(0, 191, 255, 0.2), 0 0 15px rgba(0, 0, 0, 0.5);
}

.panel-header {
    border-bottom: 1px solid #005f7f; /* Dark Blue border */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* --- Console & Script Text --- */

pre, code, .console-text {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #00FFFF; /* Cyan text */
    background-color: rgba(0, 20, 30, 0.9); /* Very dark blue background */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #005f7f; /* Dark Blue border */
    white-space: pre-wrap; /* Ensures long lines wrap */
    word-wrap: break-word;
}

/* --- Interactive Elements --- */

button, .btn {
    background-color: transparent;
    border: 2px solid #00BFFF; /* DeepSkyBlue border */
    color: #FFFFFF;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
}

button:hover, .btn:hover {
    background-color: #00BFFF; /* DeepSkyBlue fill on hover */
    color: #000000; /* Black text on hover */
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

input, textarea, select {
    background-color: #051019; /* Dark blue-black */
    border: 1px solid #005f7f; /* Dark Blue border */
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #00FFFF; /* Cyan border on focus */
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* --- IntelShip Log Colors --- */
.gg25f-message {
    color: #00FFFF; /* Cyan */
}

.gg25-message {
    color: #FF00FF; /* Magenta */
}
