:root {
    --fialova: #4f3091;
    --zluta: #f5a623;
    --tmava: #2a1a4d;
    --svetla: #f7f5fb;
}

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Nunito:wght@700;800;900&display=swap');

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

body {
    font-family: 'Nunito', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--fialova), var(--tmava));
    color: var(--tmava);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap { padding: 24px; width: 100%; max-width: 640px; }

.card {
    background: var(--svetla);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    border-top: 8px solid var(--zluta);
}

.hand {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: var(--zluta);
    line-height: 1;
}

h1 {
    font-weight: 900;
    font-size: 44px;
    color: var(--fialova);
    margin: 4px 0 16px;
}

.lead { font-weight: 700; font-size: 18px; margin-bottom: 24px; }

.status {
    font-weight: 800;
    background: #fff;
    border: 2px dashed var(--fialova);
    border-radius: 12px;
    padding: 12px 16px;
    display: inline-block;
}
