* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: #000;
  background-image: url("/img/iliricumship.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #eee;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 0;
}

.main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.logo {
  width: 520px;
  max-width: 80vw;
  margin-bottom: 32px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

.glass {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85);
}

.glass h1 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.glass p {
  margin-bottom: 12px;
  line-height: 1.6;
  opacity: 0.92;
}

.links {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.8);
}

.cta.grafana {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.cta.grafana:hover {
  background: linear-gradient(135deg, #fbbf24, #fb923c);
}

.cta.jaeger {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.cta.jaeger:hover {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.footer {
  position: fixed;
  bottom: 12px;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.65;
}
