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

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #0d1117;
    color: #c9d1d9;
}

/* ── Layout ── */
.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem 1rem;
    text-align: center;
}

/* ── Giant status text ── */
.status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(80vw, 1200px);
    height: 40vh;
    border-radius: 24px;
    transition: background 0.4s, box-shadow 0.4s;
}

.status-icon {
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 1;
    margin-bottom: 0.2em;
}

.status-text {
    font-size: clamp(2rem, 7vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

/* States */
.status-checking {
    background: rgba(136, 136, 136, 0.1);
    box-shadow: 0 0 80px rgba(136, 136, 136, 0.08);
}
.status-checking .status-text { color: #888; }

.status-blocked {
    background: rgba(35, 134, 54, 0.12);
    box-shadow: 0 0 120px rgba(35, 134, 54, 0.15);
}
.status-blocked .status-text { color: #3fb950; }

.status-not-blocked {
    background: rgba(248, 81, 73, 0.12);
    box-shadow: 0 0 120px rgba(248, 81, 73, 0.15);
}
.status-not-blocked .status-text { color: #f85149; }

/* ── Subtitle ── */
.subtitle {
    margin-top: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #8b949e;
}

/* ── Ad slot (top only) ── */
.ad-slot-top {
    width: 100%;
    min-height: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.ad-slot-top .adsbygoogle {
    width: 100%;
    max-width: 728px;
}

/* ── Donate ── */
.donate-section {
    margin-top: 3rem;
    text-align: center;
}

.donate-label {
    font-size: 1rem;
    color: #8b949e;
    margin-bottom: 0.75rem;
}

.donate-qr {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    border: 2px solid #30363d;
    background: #fff;
    object-fit: contain;
    padding: 8px;
}

/* ── Responsive ── */
@media (max-width: 500px) {
    .status { width: 95vw; height: 30vh; border-radius: 16px; }
    .donate-qr { width: 120px; height: 120px; }
}
