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

body {
    background: #000;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Dots */
.dot {
    position: absolute;
    border-radius: 50%;
    cursor: default;
    opacity: 0.25;
    transition: opacity 0.3s, transform 0.3s;
}
.dot:hover { opacity: 0.45; transform: scale(1.25); }

.d0  { width: 36px;  height: 36px;  background: #3b82f6; }
.d1  { width: 100px; height: 100px; background: #a855f7; }
.d2  { width: 160px; height: 160px; background: #ef4444; }
.d3  { width: 76px;  height: 76px;  background: #22c55e; }
.d4  { width: 120px; height: 120px; background: #f59e0b; }
.d5  { width: 68px;  height: 68px;  background: #ec4899; }
.d6  { width: 135px; height: 135px; background: #06b6d4; }
.d7  { width: 50px;  height: 50px;  background: #f97316; }
.d8  { width: 90px;  height: 90px;  background: #8b5cf6; }
.d9  { width: 144px; height: 144px; background: #3b82f6; }
.d10 { width: 108px; height: 108px; background: #14b8a6; }
.d11 { width: 60px;  height: 60px;  background: #e11d48; }
.d12 { width: 145px; height: 145px; background: #84cc16; }
.d13 { width: 82px;  height: 82px;  background: #d946ef; }

/* Form overlay */
.gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.gate-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gate-input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 14px;
    font-size: 1em;
    border-radius: 6px;
    outline: none;
    width: 200px;
}

.gate-input:focus {
    border-color: #555;
}

.gate-submit {
    background: #222;
    border: 1px solid #333;
    color: #888;
    padding: 10px 16px;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
}

.gate-submit:hover {
    background: #333;
    color: #ccc;
}

/* Honeypot field — hidden from humans */
.gate-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    tab-index: -1;
}

.gate-blocked {
    color: #333;
    font-family: monospace;
    font-size: 0.8em;
}
