/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: #0d0d0d;
    color: #fff;
    text-align: center;
}

/* Wrapper */
.wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

/* Header */
.site-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    color: #dddddd;
    margin-bottom: 1.5rem;
	text-transform: uppercase;
}

/* Answer Block */
.answer {
    font-size: clamp(6rem, 18vw, 11rem);
    font-weight: 900;
    color: #ff2e2e;
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
}

.subline {
    margin-top: 1rem;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #dcdcdc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Row */
.image-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.img-box {
    width: 260px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

.img-box img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.caption {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: #bbbbbb;
}

/* Meta */
.meta {
    max-width: 700px;
    margin: 2rem auto 1.5rem;
    color: #b5b5b5;
    line-height: 1.5;
}

.timestamp {
    margin-top: 0.4rem;
    font-family: monospace;
    color: #888;
}

/* Footer */
.site-footer {
    font-size: 0.9rem;
    color: #777;
}

.site-footer a {
    color: #ff2e2e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.site-footer a:hover {
    border-bottom-color: #ff2e2e;
}

@media (max-width: 500px) {
    .img-box {
        width: 80%;
    }
}
