:root {
    --background-color: #0a0a0a;
    --vfx-rain-color: #0c2c1a;
    --text-color: #e0e0e0;
    --button-bg: #1a1a1a;
    --button-hover-bg: #2a2a2a;
    --border-color: #333;
    --terminal-bg: #0D1117;
    --terminal-border: #30363d;
    --terminal-label: #8b949e;
    --terminal-green: #23d18b;
}

html {
    height: 100%;
    background-color: var(--background-color);
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

#vfx-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.github-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
}

.github-icon {
    width: 40px;
    height: 40px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.github-link:hover .github-icon {
    color: var(--terminal-green);
    transform: scale(1.1);
}

/* Terminal-Style Footer */
.server-stats {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 1;
    padding: 10px 15px;
    border: 1px solid var(--terminal-border);
    border-radius: 6px;
    background-color: var(--terminal-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
}

.server-stats p {
    margin: 4px 0;
    color: var(--terminal-label);
}

.server-stats span {
    color: var(--terminal-green);
    font-weight: bold;
}