body {
  margin: 0;
  background: #000000;
  color: #ffffff;
  height: 100vh;
  display: flex;
  font-size: small;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#glcanvas {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.brand {
    font-family: 'Press Start 2P', monospace;
    font-size: 8vw;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

.brand.static {
    color: #e53030;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow: 10px -10px 10px #e4322c8a;
    background-image: none !important;
    transition: all 0.2s ease-in-out;
}

.coming {
    margin: 6px 0;
    font-size: 18px;
    letter-spacing: 2px;
    color: #ff4040;
}

.contact {
    margin: 6px 0 12px;
    font-size: 12px;
}

.contact a {
    color: #ffcba8;
    text-decoration: underline;
}

.contact a:hover {
    color: #ffb38c;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    text-shadow: 0 0 5px #ffb38c;
    transition: text-shadow 0.2s ease-in-out;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    font-size: 12px;
    text-decoration: none;
    color: #000000;
    background: #4f4f4f;
    border-left: 4px solid #656565;
    border-right: 4px solid #656565;
    border-top: 4px solid #6b6b6b;
    border-bottom: 4px solid #3a3a3a;
    image-rendering: pixelated;
    font-family: 'Press Start 2P', monospace;
    transition: transform 0.08s linear;
}

.btn:hover {
    background: #9e9e9e;
    border-left: 4px solid #b4b4b4;
    border-right: 4px solid #b4b4b4;
    border-top: 4px solid #bababa;
    border-bottom: 4px solid #898989;
}

.btn:active {
    transform: translateY(2px);
}

.discord {
    background: #5865f2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #000;
    border-color: #384df1;
    border-top: 4px solid #7984f5;
    border-bottom: 4px solid #07287d;
    transition: all 0.25s ease-in-out;
}

.discord:hover {
    background: #7f8aff;
    box-shadow: 0 40px 60px rgba(50, 70, 255, 0.3);
    color: #000;
    border-color: #596cff;
    border-top: 4px solid #b2b9ff;
    border-bottom: 4px solid #002b99;
    transition: all 0.2s ease-in-out;
}

.meta {
    position: absolute;
    top: 60%;
    transform: translateY(-10%);
    text-align: center;
    color: #dcdcdc;
    font-family: 'Press Start 2P', monospace;
    pointer-events: auto;
}

.toggle-anim-ui {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    gap: 14px;
}

.mc-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    width: 36px;
    height: 36px;
}

.mc-toggle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #fff;
    box-shadow:
        0 0 0 2px #fff inset,
        0 2px 0 #111,
        0 0 0 6px #222 inset;
    border-radius: 2px;
    position: relative;
    image-rendering: pixelated;
    transition: background 0.15s, border-color 0.15s;
}

.mc-toggle[aria-pressed="false"] .mc-toggle-box {
    background: #4caf50;
    border-color: #fff;
}

.toggle-label-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
    user-select: none;
    margin-left: 12px;
    margin-top: 2px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .brand { font-size: 12vw; }
    .meta { top: 65%; }
    .btn, .contact, .coming { font-size: 9px; padding: 10px 14px; }
}

