/* StatusVerse Premium CSS Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #0c0c0e;
  --surface-color: #16161a;
  --surface-hover: #1e1e24;
  --primary-text: #f3f4f6;
  --secondary-text: #9ca3af;
  --accent-color: #10b981;
  --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --border-color: rgba(255, 255, 255, 0.06);
  --shadow-color: rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-text);
  line-height: 1.6;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glow-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  z-index: 1000;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.logo-icon {
  font-size: 32px;
  color: var(--accent-color);
}

h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #c3c3c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--secondary-text);
  font-size: 16px;
  font-weight: 400;
}

.card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 30px var(--shadow-color);
  animation: fadeInUp 0.8s ease;
}

.last-updated {
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

section {
  margin-bottom: 32px;
}

section:last-of-type {
  margin-bottom: 0;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid var(--accent-color);
  padding-left: 12px;
}

p {
  color: var(--secondary-text);
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 300;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--secondary-text);
}

li {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 300;
}

strong {
  font-weight: 600;
  color: #ffffff;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  color: #059669;
}

footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--secondary-text);
  font-size: 13px;
  width: 100%;
}

.footer-nav {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  color: var(--secondary-text);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }
  .card {
    padding: 24px 16px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 18px;
  }
}
