:root {
  color-scheme: dark;
  --fb1-bg: #0b0218;
  --fb1-bg-soft: #1a0630;
  --fb1-accent: #ff7a1a;
  --fb1-accent-soft: rgba(255, 122, 26, 0.16);
  --fb1-accent-alt: #a65bff;
  --fb1-text: #ffffff;
  --fb1-text-muted: #c5b6ff;
  --fb1-border-subtle: rgba(255, 255, 255, 0.08);
  --fb1-radius-lg: 20px;
  --fb1-radius-full: 999px;
  --fb1-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.fb1-page {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #3c0f63 0, #050010 45%, #000 100%);
  color: var(--fb1-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.fb1-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(5, 0, 15, 0.16), rgba(5, 0, 15, 0.05), transparent);
}

.fb1-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.fb1-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fb1-logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--fb1-accent);
}

.fb1-nav {
  flex: 1;
}

.fb1-nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fb1-nav-link {
  font-size: 0.9rem;
  color: var(--fb1-text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.fb1-nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fb1-accent), var(--fb1-accent-alt));
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.fb1-nav-link:focus-visible,
.fb1-nav-link:hover {
  color: var(--fb1-text);
}

.fb1-nav-link:hover::after,
.fb1-nav-link:focus-visible::after {
  transform: scaleX(1);
}

.fb1-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fb1-btn {
  border-radius: var(--fb1-radius-full);
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease-out, color 0.15s ease-out, transform 0.1s ease-out, box-shadow 0.15s ease-out,
    border-color 0.15s ease-out;
}

button.fb1-btn {
  background: transparent;
  color: inherit;
}

.fb1-btn--primary {
  background: linear-gradient(135deg, var(--fb1-accent), #ffb347);
  color: #1b0500;
  box-shadow: 0 0 0 1px rgba(255, 133, 51, 0.3), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.fb1-btn--primary:hover,
.fb1-btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 133, 51, 0.4), 0 16px 40px rgba(0, 0, 0, 0.75);
}

.fb1-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--fb1-text);
}

.fb1-btn--ghost:hover,
.fb1-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.fb1-btn--hero {
  padding-inline: 1.8rem;
  margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--fb1-accent), #ffb347);
  color: #1b0500;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(255, 133, 51, 0.3), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.fb1-btn--hero:hover,
.fb1-btn--hero:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 133, 51, 0.4), 0 16px 40px rgba(0, 0, 0, 0.75);
}

.fb1-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

.fb1-hero {
  position: relative;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
}

.fb1-hero-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.fb1-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.75rem;
  background: radial-gradient(circle at top, rgba(255, 114, 59, 0.18), transparent 55%),
    linear-gradient(120deg, rgba(7, 0, 20, 0.58), rgba(9, 0, 35, 0.46));
}

.fb1-hero-content {
  max-width: 520px;
  text-align: center;
}

.fb1-hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fb1-text-muted);
  margin-bottom: 0.4rem;
}

.fb1-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.4rem;
  background: linear-gradient(120deg, #ffe9bf, #ffb347, #ff7a1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fb1-hero-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--fb1-text-muted);
}

.fb1-filter {
  margin-top: 1.75rem;
}

.fb1-filter-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.fb1-chip {
  border-radius: var(--fb1-radius-full);
  border: 1px solid var(--fb1-border-subtle);
  background: rgba(26, 6, 48, 0.8);
  color: var(--fb1-text-muted);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
}

.fb1-chip--active {
  background: var(--fb1-accent-soft);
  border-color: rgba(255, 122, 26, 0.7);
  color: #ffe7c5;
}

.fb1-section-heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.fb1-section-title {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
}

.fb1-section-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--fb1-text-muted);
}

.fb1-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.fb1-slot-card {
  background: radial-gradient(circle at top left, rgba(166, 91, 255, 0.22), rgba(10, 0, 30, 0.95));
  border-radius: var(--fb1-radius-lg);
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.fb1-slot-link {
  display: block;
}

.fb1-slot-figure {
  margin: 0;
}

.fb1-slot-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.fb1-slot-caption {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: #f9f5ff;
}

.fb1-info {
  margin-top: 2.5rem;
}

.fb1-info-inner {
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  background: radial-gradient(circle at top right, rgba(255, 122, 26, 0.18), rgba(6, 0, 19, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb1-info-inner p {
  margin: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--fb1-text-muted);
}

.fb1-info-inner .fb1-section-title {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.fb1-info-inner .fb1-section-title:first-of-type {
  margin-top: 0;
}

.fb1-info-lead {
  margin-bottom: 0.5rem !important;
  font-size: 0.95rem !important;
  color: var(--fb1-text) !important;
}

.fb1-info-inner .fb1-h3 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fb1-text);
}

.fb1-info-inner ul,
.fb1-info-inner ol {
  margin: 0.4rem 0 1rem;
  padding-left: 1.4rem;
  color: var(--fb1-text-muted);
  font-size: 0.92rem;
}

.fb1-info-inner li {
  margin-bottom: 0.25rem;
}

.fb1-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--fb1-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb1-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.88rem;
  color: var(--fb1-text-muted);
}

.fb1-table th,
.fb1-table td {
  padding: 0.6rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fb1-table th {
  background: rgba(255, 122, 26, 0.15);
  color: var(--fb1-accent);
  font-weight: 600;
}

.fb1-table tr:last-child td {
  border-bottom: none;
}

.fb1-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
  padding: 1.75rem 1.25rem 2.5rem;
  background: radial-gradient(circle at top, rgba(166, 91, 255, 0.18), rgba(5, 0, 15, 0.96));
}

.fb1-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.fb1-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.82rem;
}

.fb1-footer-link {
  color: var(--fb1-text-muted);
}

.fb1-footer-link:hover,
.fb1-footer-link:focus-visible {
  color: var(--fb1-text);
}

.fb1-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.fb1-footer-payments img {
  height: 22px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}

.fb1-footer-copy {
  margin-top: 1.3rem;
  font-size: 0.75rem;
  color: var(--fb1-text-muted);
}

@media (min-width: 768px) {
  .fb1-hero-overlay {
    justify-content: center;
    padding-inline: 2rem;
  }

  .fb1-hero-content {
    text-align: center;
  }

  .fb1-slots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fb1-header-inner {
    padding-inline: 1.75rem;
  }

  .fb1-footer {
    padding-inline: 1.75rem;
  }
}

@media (max-width: 768px) {
  html,
  body.fb1-page {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.fb1-page {
    position: fixed;
    inset: 0;
  }

  .fb1-hero-overlay {
    padding: 2rem 1rem;
    align-items: center;
    justify-content: center;
  }

  .fb1-hero-content {
    text-align: center;
  }

  .fb1-header-inner {
    gap: 0.75rem;
  }

  .fb1-nav {
    display: none;
  }

  .fb1-actions .fb1-btn--ghost {
    display: none;
  }
}

@media (max-width: 480px) {
  .fb1-hero-overlay {
    padding: 1.5rem 0.75rem;
    align-items: center;
  }
}

