:root {
    --bg: #0f141a;
    --card: #171e26cc;
    --accent: #ffb347;
    --accent2: #ffd27a;
    --text: #eaf4ff;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: linear-gradient(160deg, #0b0f14, #121922 60%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* floating boxes animation */
.boxbg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.box {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, .08);
    animation: float 18s linear infinite;
}

.box:nth-child(2) {
    left: 20%;
    animation-duration: 24s
}

.box:nth-child(3) {
    left: 60%;
    animation-duration: 20s
}

.box:nth-child(4) {
    left: 80%;
    animation-duration: 26s
}

@keyframes float {
    from {
        transform: translateY(110vh) rotate(0deg)
    }

    to {
        transform: translateY(-20vh) rotate(360deg)
    }
}

.card {
    position: relative;
    background: var(--card);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 2.8rem 2.5rem;
    text-align: center;
    max-width: 520px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

.logo {
    max-width: 120px;
    margin-bottom: 1rem;
}

/* placeholder corgi box emoji block if logo not added yet */
.corgibox {
    font-size: 3rem;
    margin-bottom: .6rem;
}

h1 {
    margin: .2rem 0 .5rem;
    font-weight: 600;
}

p {
    margin: .4rem 0;
    opacity: .9;
}

.tag {
    margin-top: 1.1rem;
    display: inline-block;
    padding: .35rem .8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #000;
    font-weight: 600;
    font-size: .8rem;
}

