
:root{
	--text:#e6eef8;
	--muted:rgba(230,238,248,0.75);
	--accent:#4f46e5;
}

/* Y2K-style fonts (Orbitron + Audiowide) */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Orbitron:wght@400;700&display=swap');
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:'Orbitron', 'Audiowide', system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;color:var(--text);background:linear-gradient(180deg,#071029 0%, #091426 100%)}

.center{min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:1rem}
.lead{max-width:700px;margin:0 0 1.25rem;font-size:1.125rem;display:inline-block;color:#071029;background:#ffffff;padding:0.9rem 1.1rem;border-radius:8px;box-shadow:0 6px 18px rgba(0,0,0,0.08);font-family:'Audiowide','Orbitron',sans-serif}
.btn{display:inline-block;background:var(--accent);color:white;padding:0.65rem 1rem;border-radius:8px;text-decoration:none}

/* Image button styles */
.btn-image img{display:block;width:260px;max-width:80%;height:auto;border-radius:12px;box-shadow:0 6px 18px rgba(10,12,20,0.6);cursor:pointer}

/* ==============================
	 Wallpaper template

	 - Place your image at: assets/wallpaper.png
	 - Add the class `has-wallpaper` to the <body> element to enable the repeating wallpaper.
	 - Adjust `background-repeat` and `background-size` below as needed.
	 - Example usage (in HTML): <body class="has-wallpaper"> ... </body>
	 ============================== */

/* Option: repeating tile (default) */
body.has-wallpaper{
	background-image: url("roses.png"), linear-gradient(180deg,#071029 0%, #091426 100%);
	background-repeat: repeat, no-repeat;
	background-position: center, center;
	background-size: auto, cover;
}

/* If you prefer the wallpaper to cover entire background (stretched) uncomment this:
body.has-wallpaper{
	background-image: url("assets/wallpaper.png");
	background-repeat: no-repeat;
	background-size: cover; /* or 'contain' to keep aspect ratio */
	background-position: center;
}
*/


