/* ============================================================
   INDEX_HOME.CSS
   Home / mode selection page — dark F1-style theme
   ============================================================ */

body {
    background: #0d0d0d;
    color: #e8e8e8;
    font-family: 'Pixel Operator', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- Header ---- */
#home-header {
    padding: 36px 48px 28px 48px;
    border-bottom: 3px solid #e10600;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

#home-logo {
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-bar {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: #e10600;
    border-radius: 2px;
    flex-shrink: 0;
}

#home-subtitle {
    margin-top: 8px;
    font-size: 0.85em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

/* ---- Menu ---- */
#home-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    padding: 60px 24px;
}

/* ---- Buttons ---- */
.home-btn {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: center;
    width: 100%;
    max-width: 420px;
    padding: 20px 28px;
    background: #111111;
    color: #e8e8e8;
    border: 1px solid #222;
    border-left: 4px solid #333;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-family: 'Pixel Operator', 'Gill Sans', sans-serif;
    transition: background 0.15s, border-left-color 0.15s, transform 0.1s;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.home-btn:hover {
    background: #1a1a1a;
    border-left-color: #e10600;
    transform: translateX(4px);
}

.btn-icon {
    grid-row: 1 / 3;
    font-size: 1.6em;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.home-btn:hover .btn-icon {
    color: #e10600;
}

.btn-label {
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
}

.btn-desc {
    font-size: 0.78em;
    letter-spacing: 0.05em;
    color: #666;
    margin-top: 3px;
}
