@import url("/static/variables.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", var(--fontfamily, sans-serif);
  color: #0f172a;
  background: #f6f7fb;
}

.splash-page {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 88px;
  box-sizing: border-box;
}

.splash-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-image: url("/static/Assets/Splash1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.splash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 20px 36px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.64) 100%);
  border: 0;
  box-shadow:
    0 14px 30px rgba(105, 132, 173, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.splash-links {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 68px;
}

.splash-links a {
  color: #121212;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.splash-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 245, 250, 0.9) 100%);
  box-shadow:
    0 10px 24px rgba(114, 130, 168, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: #1c1c1c;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.splash-legal-links {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(105, 132, 173, 0.12);
  color: rgba(15, 23, 42, 0.58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.splash-legal-links a {
  color: inherit;
  text-decoration: none;
}

.splash-legal-links a:hover {
  color: rgba(15, 23, 42, 0.8);
  text-decoration: underline;
}

.splash-login-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(114, 130, 168, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

@media (max-width: 1320px) {
  .splash-topbar {
    padding: 18px 26px;
  }

  .splash-links {
    padding-left: 26px;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .splash-page {
    padding-top: 118px;
  }

  .splash-background {
    background-image: url("/static/Assets/Splash1Mobile.png");
    background-position: center top;
  }

  .splash-legal-links {
    left: 16px;
    right: 16px;
    bottom: 14px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .splash-topbar {
    flex-wrap: wrap;
    padding: 16px 18px;
  }

  .splash-links {
    gap: 16px;
    padding-left: 0;
    flex-wrap: wrap;
  }

  .splash-links a,
  .splash-login-btn {
    font-size: 16px;
  }
}
