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

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

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

/* Global dark overlay for contrast */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.18);
  z-index: 0;
}

/* Main layout */
.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 */
.logo {
  width: 520px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.7));
}

/* Content wrapper */
.content {
  max-width: 720px;
}

/* === GLASS PANEL (INTENTIONALLY VISIBLE) === */
.glass {
  position: relative;
  background: rgba(0, 0, 0, 0.65);   /* clearly visible */
  border-radius: 18px;
  padding: 32px 36px;
  max-width: 720px;

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

/* Headings */
.glass h1 {
  font-size: 2.2rem;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

/* Paragraphs */
.glass p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.92;
}

/* Optional links (used later for microsim landing) */
.links {
  margin-top: 18px;
}

.links a {
  color: #6cc0ff;
  text-decoration: none;
  font-weight: 500;
}

.links span {
  margin: 0 8px;
  opacity: 0.6;
}

.links a:hover {
  text-decoration: underline;
}
/* Footer */
.footer {
  position: fixed;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.65;
  color: #eeeeee;
  z-index: 2;
  pointer-events: none;
}

.footer span {
  opacity: 0.75;
}

.footer a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}

.footer a:hover {
  text-decoration: underline;
}
