:root{
  --bg: #0a0a0a;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --text: #ffffff;
  --muted: #888888;
  --accent: #1e88e5;
  --accent-contrast: #ffffff;
  --wrap: 1000px;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { 
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.cta-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  padding: 0.9rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(10, 89, 199, .35);
  text-align: center;
  white-space: nowrap;
}
.cta-fab:hover{ filter: brightness(1.06); }

@media (max-width: 720px){
  .cta-fab{
    left: 16px;
    right: 16px;
    border-radius: 12px;
  }
  body{ padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce){
  .cta-fab{ transition: none !important; }
}

.container { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { height: 32px; }

.buttons .btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  margin-left: 8px;
  transition: all 0.2s ease;
}
.btn.accent {
  background: var(--accent);
  color: var(--accent-contrast);
}
.btn.accent:hover {
  background: #1565c0;
}
.btn.outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn.outline:hover {
  border-color: var(--accent);
}

.hero {
  text-align: center;
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.hero p {
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.content-section {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
}

.breadcrumbs {
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.breadcrumbs a { color: var(--muted); }

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.feature-card {
  background: rgb(0, 0, 0);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgb(0, 0, 0);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.info-table th, .info-table td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}
.info-table th {
  background: var(--surface);
  font-weight: 600;
}

footer {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
}
.minor { font-size: 0.9rem; }
.mt-2 { margin-top: 16px; }

.main-404 {
  text-align: center;
  padding: 80px 0;
}
.title-404 {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.skrill-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: rgb(0, 0, 0);
  border-radius: var(--radius);
  font-weight: 500;
  margin: 16px 0;
}

.legal-note {
  background: #000000;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: var(--radius);
  margin: 20px 0;
}

@media (max-width: 768px) {
  .header__container { flex-direction: column; gap: 16px; }
  .footer-columns { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .content-section { padding: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
}