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

body {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#app {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
}

.screen {
    display: none;
    text-align: center;
}

.screen.active {
    display: block;
}

/* Landing */
h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.tagline {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.sub {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 2rem;
}

button {
    background: #fff;
    color: #0a0a0a;
    border: none;
    padding: 0.8rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin: 0.5rem;
    transition: all 0.15s;
}

button:hover {
    background: #ccc;
    transform: scale(1.02);
}

button.secondary {
    background: transparent;
    color: #666;
    border: 1px solid #333;
}

button.secondary:hover {
    color: #fff;
    border-color: #666;
}

.stats-preview {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #444;
}

/* Game */
.round-indicator {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.pick-prompt {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.image-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.image-choice {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.image-choice:hover {
    border-color: #fff;
    transform: scale(1.03);
}

.image-choice.picked {
    border-color: #fff;
    opacity: 1;
}

.image-choice.not-picked {
    opacity: 0.3;
    transform: scale(0.95);
}

.image-choice img {
    width: 350px;
    height: 263px;
    object-fit: cover;
    display: block;
}

.vs {
    font-size: 0.85rem;
    color: #444;
    flex-shrink: 0;
}

/* Loading */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-top-color: #fff;
    border-radius: 50%;
    margin: 1rem auto;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Result */
.classification {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.classification.GIGACHAD { color: #ffd700; }
.classification.CURATOR { color: #c0c0c0; }
.classification.POSTER { color: #4ecdc4; }
.classification.NORMIE { color: #888; }
.classification.NPC { color: #555; }
.classification.MIDWIT { color: #ff6b6b; }

.taste-elo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.taste-elo span {
    color: #fff;
    font-weight: 700;
}

.percentile {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.percentile span {
    color: #fff;
    font-weight: 700;
}

.feedback {
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1rem;
}

.p-human {
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.result-badge {
    font-size: 0.75rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .image-pair { flex-direction: column; }
    .image-choice img { width: 280px; height: 210px; }
    .vs { margin: 0.5rem 0; }
    .classification { font-size: 2.5rem; }
}
