/* Simple responsive styles for TinkyEngine */
:root{--bg:#f8fafc;--card:#ffffff;--accent:#0b76ef;--text:#0f1720}
*{box-sizing:border-box}
body{font-family:Inter,Segoe UI,Arial,sans-serif;background: url('background.webp') center/cover fixed no-repeat, var(--bg);background-size:cover;background-attachment:fixed;color:var(--text);margin:0;position:relative;overflow-x:hidden}

/* Light overlay to ensure dark text contrasts against the background image */
body::before{content:"";position:fixed;inset:0;background:rgba(255,255,255,0.72);pointer-events:none;z-index:1}

/* Place content above the overlay */
.container,.site-header,.site-footer{position:relative;z-index:2}
.container{max-width:900px;margin:0 auto;padding:24px}
.site-header{background:linear-gradient(90deg,var(--accent),#0a5fb6);color:#fff}
.site-header .container{display:flex;align-items:center;justify-content:space-between}
.brand{margin:0;font-size:1.25rem}
.nav a{color:rgba(255,255,255,0.92);text-decoration:none;margin-left:16px;transition:color .15s ease}
.nav a:hover{color:#eafdff}
.nav a.active{color:#ffd966;font-weight:600}
main{padding:40px 0}
h2{margin-top:0}
.team{display:grid;grid-template-columns:1fr;gap:16px}
.person{background:var(--card);padding:16px;border-radius:8px;box-shadow:0 1px 3px rgba(0,0,0,.06)}
.site-footer{border-top:1px solid #e6eef9;padding:12px 0;text-align:center;color:#51677a}
@media(min-width:640px){.team{grid-template-columns:1fr 1fr}}
