* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #111214;
    color: #f2f2f2;
}

.page {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.page-center {
    justify-content: center;
}

h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    color: #b8b8b8;
    line-height: 1.5;
}

.sticker-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    margin: 1rem 0;
}

.sticker-image-small {
    max-height: 40vh;
}

.upload-form, .report-reason-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

input[type="file"] {
    background: #1c1d20;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.6rem;
    color: #f2f2f2;
}

textarea {
    background: #1c1d20;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 0.6rem;
    color: #f2f2f2;
    font-family: inherit;
    resize: vertical;
}

button, .button-secondary {
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
}

button {
    background: #3b82f6;
    color: white;
}

button:hover {
    background: #2563eb;
}

.button-secondary {
    background: #2a2b2e;
    color: #f2f2f2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.report-form {
    margin-top: 1rem;
}

.report-button {
    background: transparent;
    color: #b8b8b8;
    border: 1px solid #444;
}

.report-button:hover {
    background: #1c1d20;
    color: #f2f2f2;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.error {
    color: #f87171;
}

.notice {
    color: #4ade80;
}
