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

body {
  background-color: #030712;
  color: #e5e7eb;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  position: relative;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.glow-blob {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.glow-blob-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.content-wrapper {
  max-width: 800px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.section {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.section:nth-of-type(1) { animation-delay: 0.3s; }
.section:nth-of-type(2) { animation-delay: 0.4s; }
.section:nth-of-type(3) { animation-delay: 0.5s; }
.section:nth-of-type(4) { animation-delay: 0.6s; }
.section:nth-of-type(5) { animation-delay: 0.7s; }
.section:nth-of-type(6) { animation-delay: 0.8s; }

.section:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section h2::before {
  content: "";
  display: block;
  width: 6px;
  height: 24px;
  background: linear-gradient(to bottom, #38bdf8, #818cf8);
  border-radius: 3px;
}

.section p {
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.section ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
  font-weight: bold;
}

.section strong {
  color: #f8fafc;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.link:hover {
  color: #7dd3fc;
  border-bottom-color: #7dd3fc;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b;
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

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

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

@media (max-width: 768px) {
  .title { font-size: 2.5rem; }
  .section { padding: 1.5rem; }
  .section h2 { font-size: 1.25rem; }
}
