* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: #111111;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

.landing {
    width: min(760px, 100%);
    text-align: center;
}

.logo {
    display: block;
    width: min(420px, 82vw);
    height: auto;
    margin: 0 auto 28px;
}

h1 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}

p {
    margin: 0 auto 14px;
    max-width: 650px;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.6;
    color: #d6d6d6;
}

.discord-button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 22px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.discord-button:hover,
.discord-button:focus-visible {
    background: #ffffff;
    color: #111111;
}

.visitor-counter {
    margin-top: 34px;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.95rem;
    color: #bdbdbd;
}

.counter-digits {
    display: inline-block;
    margin-left: 5px;
    padding: 3px 6px;
    border: 1px solid #555555;
    background: #050505;
    color: #ffffff;
    letter-spacing: 0.12em;
}
