:root {
    --bg-color: #0d0d0d;        /* Deep charcoal, almost black */
    --accent-color: #e6db74;   /* Muted, sophisticated lemon (not neon) */
    --text-main: #e0e0e0;      /* Soft white/gray for readability */
    --text-dim: #666666;       /* Dimmed text for metadata */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

main {
    width: 90%;
    max-width: 500px;
}

.brand {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

/* The Progress Bar - Minimalist and Sleek */
.progress-container {
    width: 100%;
    height: 1px; /* Very thin line */
    background-color: #222;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar {
    width: 15%; /* This is your starting point! */
    height: 100%;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(230, 219, 116, 0.3);
}

.meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Courier New', Courier, monospace; /* Coding vibe */
    font-size: 0.7rem;
    color: var(--text-dim);
}

.code {
    color: var(--text-dim);
}
