:root {
  --primary-color: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.4);
  --bg-color: #0d0d12;
  --card-bg: rgba(255, 255, 255, 0.03);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  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(--text-main);
  line-height: 1.6;
  min-height: 200vh;
  overflow-x: hidden;
}

.bg-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #0d0d12 70%);
  z-index: -1;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeIn 1s ease-out;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.logo-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--primary-glow);
  filter: blur(40px);
  border-radius: 50%;
}

.logo {
  width: 100%;
  height: 100%;
  border-radius: 28%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(to bottom, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.content-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.2);
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--primary-color);
  margin-right: 12px;
  border-radius: 2px;
}

h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
  color: #e2e8f0;
}

p {
  margin-bottom: 16px;
  color: #cbd5e1;
}

ul {
  list-style: none;
  margin-bottom: 24px;
}

li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #cbd5e1;
}

li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-border), transparent);
  margin: 40px 0;
}

footer {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.accent {
  color: var(--primary-color);
  font-weight: 500;
}

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

@media (max-width: 640px) {
  .content-card {
    padding: 24px;
  }
  h1 {
    font-size: 2rem;
  }
}
