/* Modern Coming Soon – News Portal */
:root {
  --bg-start: #f0f7ff;
  --bg-end: #fff8f0;
  --primary: #1e3a5f;
  --accent: #e85d04;
  --accent-soft: #ff9f1c;
  --text: #1a2b3c;
  --text-light: #5a6a7a;
  --white: #ffffff;
  --shadow: 0 25px 50px -12px rgba(30, 58, 95, 0.15);
}

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

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, var(--bg-start) 0%, #f8fbff 50%, var(--bg-end) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

/* Soft background shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  animation: floatShape 18s ease-in-out infinite;
}

.bg-shape.one {
  width: 420px;
  height: 420px;
  background: #a5d8ff;
  top: -120px;
  left: -100px;
}

.bg-shape.two {
  width: 360px;
  height: 360px;
  background: #ffd8a8;
  bottom: -80px;
  right: -80px;
  animation-delay: -6s;
}

.bg-shape.three {
  width: 280px;
  height: 280px;
  background: #c3fae8;
  top: 40%;
  right: 10%;
  animation-delay: -12s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.container {
  position: relative;
  z-index: 10;
  max-width: 920px;
  width: 92%;
  text-align: center;
  padding: 2rem 1rem;
}

/* Hero image */
.hero-wrapper {
  position: relative;
  margin: 0 auto 2.5rem;
  max-width: 640px;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Soft glow under image */
.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 20% 10% -20px;
  background: radial-gradient(ellipse, rgba(30, 58, 95, 0.12) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Typography */
h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.subtitle {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2.25rem;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.subtitle span {
  color: var(--accent);
  font-weight: 600;
}

/* Progress section */
.progress-box {
  max-width: 340px;
  margin: 0 auto 2rem;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 8px;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  position: relative;
  animation: progressGrow 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes progressGrow {
  from { width: 0; }
  to { width: 72%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Status badge */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Footer note */
.footer-note {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 1.5rem 1rem;
  }
  
  .hero-wrapper {
    margin-bottom: 1.75rem;
  }
  
  h1 {
    margin-bottom: 0.5rem;
  }
}