:root {
    --bg: #0e1013;
    --panel: #181c22;
    --text: #e7e9ee;
    --muted: #7d8591;
    --blue: #0b67d3;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: radial-gradient(circle at top,
            #222834,
            #0f1217 60%,
            #090b0e);
    color: var(--text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.domain {
    margin-top: 2rem;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: .08em;
    text-align: center;
    word-break: break-word;
}

.footer {
    padding: 1.5rem 0;
    color: var(--muted);
    font-size: .9rem;
}

.debug-info {
    margin-top: 3rem;
    width: min(900px, 100%);
    padding: 1.5rem;
    background: rgba(255,255,255,.05);
    border-radius: 12px;
    overflow: auto;
}

.debug-info h1,
.debug-info h4 {
    margin-top: 0;
}

.debug-info pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: .85rem;
}

.parking-sign {
    width: min(52vw, 260px);
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 22px;
    padding: 14px;
    box-shadow:
        0 15px 40px rgba(0,0,0,.45);
}

.inner {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: #005fcf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.letter {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 12rem;
    line-height: 1;
    transform: translateY(-2%);
}

@media (max-width: 700px) {
    .parking-sign {
        width: min(70vw, 230px);
    }
    .letter {
        font-size: 9rem;
    }
}

@media (max-width: 420px) {
    .parking-sign {
        width: min(78vw, 190px);
    }
    .letter {
        font-size: 7.5rem;
    }
}