/* ================== Global Layout ================== */
body {
    max-width: 900px;
    margin: auto;
    padding: 20px;

    background-color: #000;
    background-image: url("/images/bg-tile.gif");
    background-repeat: repeat;

    color: #00ff00;
    font-family: sans-serif;
}

/* Keep the custom cursor */
* {
    cursor: url("/images/cursor.png"), pointer;
}

header {
    text-align: center;
    border-bottom: 1px solid #00ff00;
    margin-bottom: 30px;
}

section {
    margin-bottom: 50px;
}

/* Default image styling (rounded) */
img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

footer {
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 14px;
    color: #8b949e;
}

/* ================== Logo ================== */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 20px;
}

.logo img {
    height: 80px;
}

/* ================== Navigation ================== */
.nav-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-card {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px 20px;
    border: 2px solid #00ff00;
    border-radius: 10px;

    background-color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    color: #00ff00;

    transition: 0.2s ease;
}

.nav-card h2 {
    margin: 0;
    font-size: 1.3rem;
}

.nav-card:hover {
    background-color: #00ff00;
    color: #000;
}

/* ================== Server Cards ================== */
.server-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.server {
    width: 280px;
    padding: 15px;

    border: 2px solid #00ff00;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);

    text-align: center;
    transition: 0.2s ease;
}

.server img {
    height: 80px;
    margin-bottom: 10px;
}

.server h3 {
    margin: 5px 0;
}

.server:hover {
    background-color: #00ff00;
}

.server:hover h3,
.server:hover p,
.server:hover .server-status {
    color: #000;
}

/* ================== Server Status Colors ================== */
.server-status {
    font-weight: bold;
}

.server-status.online { color: #3fb950; }
.server-status.offline { color: #f85149; }
.server-status.idle { color: #ffb86c; }
.server-status.sleeping { color: #6272a4; }

/* ================== Overview Section ================== */
.overview-card {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;

    border: 2px solid #00ff00;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);

    text-align: center;
}

.overview-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* ================== Home Content Box ================== */
.home-content {
    display: block;
    text-align: center;
}

.home-box {
    display: block !important;
    clear: both;
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;

    border: 2px solid #00ff00;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}

.home-box h2 {
    margin-top: 0;
}

/* ================== PC Specs Cards ================== */
.info-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    width: 250px;
    padding: 15px;

    border: 2px solid #00ff00;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);

    text-align: center;
    transition: 0.2s ease;
}

.info-card h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    margin: 0;
}

.info-card:hover {
    background-color: #00ff00;
    color: #000;
}

/* ================== Critter Box ================== */
#critter-box {
    position: relative;
    height: 400px;
    overflow: hidden;
}

#critter-box .critter-gif {
    position: absolute;
    pointer-events: none;
}

/* ================== Banners ================== */
.banner-img,
.fun-banner-img {
    display: block;       /* ensures flex gap works */
    border-radius: 0 !important;
    width: 80px;
    height: 31px;
}

/* ================== Top Banner Row Spacing ================== */
#top-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px; /* this is your new spacing */
    margin-bottom: 20px;
}