html, body {
  overscroll-behavior: none;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #00aaff 0%, #a8e063 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.25;
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}

.logo {
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}

h1 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
  text-align: center;
  max-width: 400px;
}

.coming-soon {
  font-size: 1.2rem;
  color: #00796b;
  font-weight: bold;
  margin-bottom: 24px;
}

.link {
  font-size: 1rem;
  color: #007aff;
  text-decoration: none;
  border-bottom: 1px dotted #007aff;
  transition: color 0.2s;
}

.link:hover {
  color: #005fa3;
}

.splash-box {
  background: #fff;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  margin: 48px 0;
}

.link-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 32px;
  background: linear-gradient(60deg, #00aaff 1%, #a8e063 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}

.link-btn:hover {
  background: linear-gradient(60deg, #007aff 1%, #7ed957 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.features-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 32px 28px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto 36px auto;
}

.features-box h2 {
  font-size: 1.4rem;
  color: #00796b;
  margin-bottom: 18px;
  text-align: center;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
}

.features-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.features-table tr:last-child {
  border-bottom: none;
}

.features-table td {
  padding: 12px 8px;
  vertical-align: top;
}

.features-table td:first-child {
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  width: 40%;
}

.features-table td:last-child {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.95rem;
}

footer {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.99);
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
  padding: 20px 0;
  margin-top: auto;
}