/*
Theme Name: Coming Soon Simple
Text Domain: coming-soon-simple
Version: 1.0.0
Requires at least: 5.0
Requires PHP: 7.4
Author: Trae IDE
*/

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, "Apple Color Emoji", "Segoe UI Emoji";
  background: #ffffff;
  color: #0f172a;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.card {
  width: min(720px, 100%);
  padding: 48px 36px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
  animation: card-in 800ms ease both;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.logo-img, .custom-logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(2, 6, 23, 0.15));
}

.title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 8px 0 12px;
  animation: title-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.subtitle {
  font-size: clamp(16px, 2.8vw, 20px);
  color: #334155;
  line-height: 1.8;
  animation: subtitle-in 1000ms ease both;
}

.bg-anim {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.bg-anim::before,
.bg-anim::after {
  content: "";
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(60px);
}

.bg-anim::before {
  background: radial-gradient(closest-side, rgba(2, 132, 199, 0.06), transparent 70%);
  top: -10%;
  left: -20%;
  animation: float 18s ease-in-out infinite;
}

.bg-anim::after {
  background: radial-gradient(closest-side, rgba(250, 204, 21, 0.08), transparent 70%);
  bottom: -20%;
  right: -10%;
  animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(2%, -1%, 0) scale(1.04); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes title-in {
  0% { opacity: 0; transform: translateY(8px) scale(0.98); }
  60% { opacity: 1; transform: translateY(0) scale(1.01); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes subtitle-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}