* {
    font-family: 'Pixelify Sans', monospace, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    /* Prevent scrollbars from modals */
}



.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.links {
    display: flex;
    gap: 10px;
}

a {
    text-decoration: underline;
    font-weight: bold;
    color: #fff;
}


#info {
    display: flex;
    gap: 10px;
    position: fixed;
    right: 0;
    bottom: 0;
    margin-right: 10px;
    font-size: 16px;
}

#info-left {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    margin-left: 10px;
    font-size: 16px;
}

.clock {
    color: #fff;
}

/* GLOWS */

.pink-glow {
    text-shadow: 0 0 5px rgb(221, 0, 255), 0 0 10px rgb(221, 0, 255), 0 0 20px rgb(221, 0, 255), 0 0 40px rgb(221, 0, 255);
}

.green-glow {
    text-shadow: 0 0 5px rgb(0, 255, 136), 0 0 10px rgb(0, 255, 136), 0 0 20px rgb(0, 255, 136), 0 0 40px rgb(0, 255, 136);
}

.white-glow {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
}

.black-glow {
    text-shadow: 0 0 5px #000, 0 0 10px #000, 0 0 20px #000, 0 0 40px #000;
}

/* CARD */

.left-cards,
.middle-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    width: clamp(280px, 52vw, 420px);
    background: var(--win-face);
    color: var(--text);
    border: 2px solid #fff;
}

.card__titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    background: #fff;
    color: #000;
    user-select: none;
}


.card__body {
    padding: 10px;
}

/* --- Mobile Responsive --- */

body {
    overflow: auto;
    /* allow scrolling on mobile */
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 820px) {
    .center {
        height: auto;
        padding: 20px 0;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .left-cards,
    .middle-cards {
        width: 100%;
        align-items: center;
    }

    .card {
        width: 90vw;
        max-width: 450px;
    }

    #info,
    #info-left {
        font-size: 14px;
        margin-bottom: 8px;
    }
}