/* Minimalistic futuristic theme */
:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #0b0f1a, #1a2333);
    color: #f4f4f9;
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.wrap {
    max-width: 760px;
    padding: 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.slogan {
    font-size: 1.4rem;
    font-weight: 500;
    color: #e0e0ff;
    margin-top: 0.6rem;
}

.tag {
    font-weight: 300;
    font-size: 1.05rem;
    margin-top: 0.6rem;
    color: #bfc3d9;
}

.foot {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: #a8adbf;
    opacity: 0.95;
}