/* root/css/home.css */

/* 1. Global Reset & Layout */
body {
    background-color: #121212; /* Deep dark background */
    color: white;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.launcher-container {
    text-align: center;
    width: 100%;
    max-width: 450px; /* Perfect for mobile and tablet portrait */
}

/* 2. Header Styles */
header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.subtitle {
    color: #a855f7; /* Cool Purple */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 5px;
    margin-bottom: 30px;
}

/* 3. Instructions Box */
.instructions {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instructions h3 {
    margin-top: 0;
    font-size: 0.9rem;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructions p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 10px 0;
}

.instructions strong {
    color: white;
}

.instructions em {
    color: #1DB954; /* Spotify Green for the win condition */
    font-style: normal;
    font-weight: 600;
}

/* 4. Navigation Menu */
.menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 18px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-card:hover {
    transform: scale(1.03);
    background: #282828;
}

.menu-card:active {
    transform: scale(0.98);
}

.menu-card .icon {
    font-size: 2rem;
    margin-right: 18px;
    width: 45px;
    text-align: center;
}

.menu-card .text {
    text-align: left;
}

.menu-card h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-card p {
    margin: 4px 0 0;
    color: #b3b3b3;
    font-size: 0.85rem;
}

/* 5. Menu Color Accents */
.engine {
    border-left: 6px solid #a855f7; /* Cool Purple */
}

.timeline {
    border-left: 6px solid #3b82f6; /* Royal Blue */
}

.scanner {
    border-left: 6px solid #1DB954; /* Spotify Green */
}

/* 6. Footer */
footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #555555;
    letter-spacing: 0.5px;
}

/* 7. Responsive Adjustments */
@media (max-width: 380px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .menu-card {
        padding: 15px;
    }
}