:root {
  --bg: #f5f5f5;
  --bg-card: #ffffff;
  --text-main: #111111;
  --text-muted: #666666;
  --accent: #0a7c93; /* NEW COLOR */
  --accent-soft: #d7f2f7; /* LIGHT VARIANT */
  --radius-lg: 16px;
  --radius-pill: 999px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff, var(--bg));
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.container {
  width: 100%;
  max-width: 740px;
  background: var(--bg-card);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0, 0, 0, 0.03);
  animation: fadeInUp 0.8s ease-out;
}

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

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-link {
  padding: 7px 14px;
  font-size: 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: 0.2s;
}
.nav-link:hover {
  background: #f2f9fa;
  border-color: var(--accent-soft);
  color: var(--text-main);
  transform: translateY(-1px);
}
.nav-link.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(10, 124, 147, 0.2);
}
.nav-link.primary:hover {
  background: #086579;
  box-shadow: 0 4px 12px rgba(10, 124, 147, 0.3);
  transform: translateY(-2px);
}

/* Hero */
.hero-title {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hero-title span {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-text {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.hero-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(10, 124, 147, 0.1);
  font-weight: 500;
}
.dot {
  width: 10px;
  height: 10px;
  background: #00aa44;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 170, 68, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(0, 170, 68, 0.2);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 170, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(0, 170, 68, 0.2);
  }
}

/* Sections */
.section-title {
  font-size: 18px;
  margin: 40px 0 16px;
  color: var(--text-main);
  font-weight: 600;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}
.posts {
  list-style: none;
}
.post-item {
  margin-bottom: 12px;
}
.post-link {
  color: var(--accent);
  padding-left: 18px;
  font-weight: 500;
  position: relative;
}
.post-link::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.post-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-left: 18px;
}

/* Soon Page Styles */
.soon-container {
  text-align: center;
  padding: 60px 20px;
}
.soon-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.soon-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}
.soon-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}
.back-link:hover {
  background: #086579;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 124, 147, 0.3);
}

/* Footer */
.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer a {
  color: var(--accent);
  transition: color 0.2s ease;
}
.footer a:hover {
  color: var(--text-main);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 28px;
  }
  .container {
    padding: 24px 20px;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .soon-title {
    font-size: 28px;
  }
  .soon-icon {
    font-size: 60px;
  }
}
