/* ===== Base reset ===== */

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* ===== Full screen maintenance page ===== */
.maintenance{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;

  /* Fotoğraftaki hissi veren mavi gradient */
  background: radial-gradient(1200px 700px at 35% 22%, #2f79ff 0%, #0e2f66 72%, #081a3b 100%);
}

/* ===== Logo sizing (responsive) ===== */
.logo{
  width: min(520px, 70vw);   /* eskisi ~720px idi */
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.25));
  margin-bottom: 0;
}

.maintenance-text{
  margin-top: -256px;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 32px;
  letter-spacing: 0.3px;
  line-height: 1.2;

  font-family: "Gilda Display", serif;
}

