:root {
  --bg: #050505;
  --lime: #9eff00;
  --text: #e5ffe0;
  --muted: #8ea18e;
}

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

body {
  min-height: 100vh;
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151515 0, var(--bg) 45%);
  color: var(--text);
}

/* Layout container */
.page {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
}

/* Faint large background mask */
.bg-mask {
  position: fixed;
  top: 0;
  right: 0;
  width: 550px;
  max-width: 60vw;
  height: 100vh;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("/image/largelogo.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  filter: drop-shadow(0 0 40px #000);
  z-index: -1;
}

/* Card layout */
.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  width: 100%;
  margin: 0 auto;
  padding: 3rem 3rem;
  border-radius: 1.75rem;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);

  box-shadow:
    0 0 40px rgba(0, 0, 0, 0.95),
    0 0 45px rgba(158, 255, 0, 0.18);
  border: 1px solid rgba(158, 255, 0, 0.16);
}

/* Left column logo */
.left {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.logo-wrap {
  display: inline-block;
  padding: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(158, 255, 0, 0.25), transparent 55%);
  animation: float 8s ease-in-out infinite;
}

.logo-wrap img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 1.1rem;
}

/* Right column text */
.right {
  flex: 1;
  text-align: left;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 255, 0, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.tag-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(158, 255, 0, 0.9);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--lime);
  text-shadow:
    0 0 12px rgba(158, 255, 0, 0.8),
    0 0 28px rgba(158, 255, 0, 0.45);
}

.subtitle {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.coming {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--lime);
  margin-bottom: 1.4rem;
  animation: pulse 2.2s ease-in-out infinite;
}

.meta {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 800px) {
  .page {
    padding: 2.4rem 1.2rem 2.8rem;
  }

  .card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.4rem;
  }

  .right {
    text-align: center;
  }

  .logo-wrap img {
    max-width: 210px;
  }

  .bg-mask {
    width: 420px;
    max-width: 80vw;
    opacity: 0.05;
  }
}

@media (max-width: 600px) {
  .bg-mask {
    display: none;
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    text-shadow: 0 0 6px rgba(158, 255, 0, 0.6);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 16px rgba(158, 255, 0, 1),
      0 0 32px rgba(158, 255, 0, 0.9);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.footer-link {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 1.5rem;
}

.footer-link a {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(158, 255, 0, 0.25);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(6px);
}

.footer-link a:hover {
  color: var(--lime);
  border-color: rgba(158, 255, 0, 0.6);
  box-shadow: 0 0 12px rgba(158, 255, 0, 0.35);
}