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

body {
    min-height: 100vh;
    background: #1c1a26;
    color: #f7f3e8;
    color-scheme: light;
    font-family: "Georgia", "Times New Roman", serif;
}

.welcome {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 16px;
    background-image:
            linear-gradient(180deg, #141220a6 0%, #141220a6 100%),
            url("/karlbenz/assets/images/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.woverlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, #ffffff1a, transparent 60%);
    pointer-events: none;
}

.wcard {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 32px 28px;
    max-width: 640px;
    width: min(90vw, 640px);
    background: #191624bf;
    border: 1px solid #ffffff26;
    border-radius: 18px;
    box-shadow: 0 18px 40px #00000059;
    backdrop-filter: blur(4px);
}

.wtag {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffffcc;
    margin-bottom: 16px;
}

.wtitle {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
}

.wsubtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffffd9;
    margin-bottom: 28px;
}

.wbutton {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: #f7d488;
    color: #2c1f0f;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wbutton:hover,
.wbutton:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #00000040;
}