/* Global layout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #020202;
  color: white;
  font-family: "Times New Roman", Times, serif;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}

/* Subtle background glow */
.stars {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0, transparent 50%);
  opacity: 0.8;
}

/* Second layer unused now */
.stars2 {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(40, 40, 40, 0.6); /* transparent gray */
  backdrop-filter: blur(4px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

/* Nav placeholders */
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.nav-link {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #ffffff;
}

/* Main hero content */
.hero {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  padding-top: 80px;    /* space for header */
  padding-bottom: 60px; /* space for footer */
}

/* Title typography */
.hero-title {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-block;
}

/* 12pt ≈ 16px, 14pt ≈ 18.7px */
.hero-title .letter {
  display: inline-block;
  line-height: 1.2;
}

.hero-title .small {
  font-size: 16px;        /* ~12pt */
}

.hero-title .big {
  font-size: 18.666px;    /* ~14pt */
}

/* Large, centered Scorpio-like constellation behind the title */
.hero::before {
  content: "";
  position: absolute;
  top: 20%;              /* sits just above the title */
  left: 50%;
  transform: translate(-50%, -50%) scale(2.1);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;

  /* Scorpio-like arc + tail (approximate to your cover) */
  box-shadow:
    /* upper arc (right/top cluster) */
    30px -70px 0 1px #ffffff,
    52px -60px 0 0 #ffffff,
    74px -45px 0 1px #ffffff,
    88px -22px 0 0 #ffffff,
    80px   0px 0 1px #ffffff,

    /* middle “kink” */
    56px  18px 0 0 #ffffff,
    38px  36px 0 1px #ffffff,
    20px  52px 0 0 #ffffff,

    /* tail dropping down/left */
     0px  72px 0 1px #ffffff,
   -18px  92px 0 0 #ffffff,
   -34px 112px 0 1px #ffffff,
   -50px 132px 0 0 #ffffff,
   -64px 152px 0 1px #ffffff,

    /* a few faint companions */
    10px -40px 0 0 #ffffff,
   -12px  40px 0 0 #ffffff,
   -30px 130px 0 0 #ffffff;

  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
  pointer-events: none;
  z-index: 4; /* behind title/button */
}

/* Button with glow + fade-in */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  background: white;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 2s ease forwards 1.5s;
  transition: 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.35); /* subtle glow */
}

.btn:hover {
  background: #f2f2f2;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8); /* slightly stronger glow */
  transform: translateY(-1px);
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Footer */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(3px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 20px 10px;
}

.footer-text {
  margin: 2px 0;
  font-size: 0.75rem;
  color: #bbb;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .hero::before {
    transform: translate(-50%, -50%) scale(1.7);
  }
}
