@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Orbitron:wght@400;700&display=swap');

:root {
  --md-primary-fg-color: #ff10f0;
  --md-primary-bg-color: #0d0221;
  --md-accent-fg-color: #00f0ff;
}

[data-md-color-scheme="slate"] {
  --md-default-bg-color: #0d0221;
  --md-default-fg-color: rgba(255, 255, 255, 0.87);
  --md-code-bg-color: #1d0c3f;
  --md-code-fg-color: #00f0ff;
  --md-typeset-a-color: #00f0ff;
}

.md-header {
  background: linear-gradient(135deg, #0d0221 0%, #1d0c3f 100%);
  border-bottom: 2px solid #ff10f0;
  box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
}

.md-header__topic {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

.md-tabs__link {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.md-tabs {
  background: #0d0221;
  border-bottom: 1px solid rgba(255, 16, 240, 0.3);
}

.md-footer {
  background: #0d0221;
  border-top: 1px solid rgba(255, 16, 240, 0.3);
}

.md-nav__link--active,
.md-nav__link:hover {
  color: #00f0ff !important;
}

.md-typeset h1 {
  font-family: 'Orbitron', sans-serif;
  color: #ff10f0;
  text-shadow: 0 0 10px rgba(255, 16, 240, 0.5);
  letter-spacing: 2px;
}

.md-typeset h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00f0ff;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  padding-bottom: 0.3em;
  letter-spacing: 1px;
}

.md-typeset h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff006e;
  letter-spacing: 1px;
}

.md-typeset code {
  color: #00f0ff;
  background: rgba(29, 12, 63, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.md-typeset pre > code {
  border: 1px solid rgba(255, 16, 240, 0.3);
}

.md-typeset .admonition,
.md-typeset details {
  border-color: #ff10f0;
  background: rgba(29, 12, 63, 0.5);
}

.md-typeset .admonition-title,
.md-typeset summary {
  background: rgba(255, 16, 240, 0.15);
}

.md-typeset table:not([class]) th {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  background: rgba(255, 16, 240, 0.15);
  color: #00f0ff;
}

.md-typeset table:not([class]) td {
  border-color: rgba(255, 16, 240, 0.2);
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
}

.hero h1 {
  font-family: 'Monoton', cursive;
  font-size: 3.5rem;
  background: linear-gradient(180deg, #fff 0%, #ff10f0 50%, #8338ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 16, 240, 0.7));
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
}

.hero .tagline {
  font-size: 1.2rem;
  color: #00f0ff;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  margin-bottom: 2rem;
}

.hero .cta {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #ff006e, #8338ec);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
  transition: box-shadow 0.3s;
}

.hero .cta:hover {
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.7);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(29, 12, 63, 0.6);
  border: 1px solid rgba(255, 16, 240, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  color: #00f0ff !important;
  margin: 0.5rem 0;
  border: none;
}
