

/* Keep minimal custom CSS — layout and colors handled by Tailwind */

.brand-logo{width:80px;height:auto;object-fit:contain}
.server-logo{display:none !important}
.hint{color:#9aa4b2}
.container{max-width:960px;margin:0 auto;padding:20px}

/* Meer verticale ruimte tussen de hoofd-secties */
main > section { margin-block: 2rem; }

/* Force a dark background for the whole site (Tailwind utilities control components) */
html, body {
	height: 100%;
	background: radial-gradient(ellipse at top left, rgba(255,212,0,0.03), transparent 20%), linear-gradient(180deg, #04121f 0%, #071026 100%);
	color: #e6eef6;
}

/* Ensure default text color is visible when Tailwind isn't applied */
body { -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }


