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

:root {
  --clr-bg: #13161C;
  --clr-header: #13161C;
  --clr-btn-primary: #A18254;
  --clr-btn-secondary: #464B55;
  --clr-text: #E8E2D9;
  --clr-text-muted: #9A9A9A;
  --clr-border: #2A2D35;
  --clr-card: #1C1F27;
  --clr-card-hover: #22262F;
  --clr-accent: #C4A267;
  --clr-gold-light: #D4B07A;
  --clr-surface: #181B22;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
  --font: 'Arboria', 'Inter', sans-serif;
}

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

html { background: var(--clr-bg); scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--clr-btn-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }

img { max-width: 100%; height: auto; display: block; }

.x7q2a { display: none; }
.k9p1b { visibility: hidden; position: absolute; }
.m3r8c { opacity: 0; pointer-events: none; }

/* ===== LAYOUT ===== */
.f2w9d-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.n5t6e-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.n5t6e-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: nowrap;
}

.n5t6e-logo {
  flex-shrink: 0;
}

.n5t6e-logo img {
  height: 44px;
  width: auto;
}

.n5t6e-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.n5t6e-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.n5t6e-nav a svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.n5t6e-nav a:hover {
  background: rgba(161,130,84,0.12);
  color: var(--clr-btn-primary);
}

.n5t6e-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.n5t6e-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  white-space: nowrap;
}

.n5t6e-online__dot {
  width: 7px;
  height: 7px;
  background: #3ecf4c;
  border-radius: 50%;
  animation: p8v3k-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes p8v3k-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,207,76,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(62,207,76,0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-btn-primary);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
}

.btn--primary:hover {
  background: var(--clr-gold-light);
  color: #fff;
  box-shadow: 0 4px 16px rgba(161,130,84,0.35);
}

.btn--secondary {
  background: var(--clr-btn-secondary);
  color: var(--clr-text);
  padding: 9px 18px;
  font-size: 14px;
}

.btn--secondary:hover {
  background: #555B66;
  color: #fff;
}

.btn--large {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--clr-btn-primary);
  color: var(--clr-btn-primary);
  padding: 8px 18px;
  font-size: 14px;
}

.btn--outline:hover {
  background: var(--clr-btn-primary);
  color: #fff;
}

/* ===== BURGER ===== */
.n5t6e-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.n5t6e-burger span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  width: 100%;
}

.n5t6e-burger.q4m2j--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.n5t6e-burger.q4m2j--open span:nth-child(2) { opacity: 0; width: 0; }
.n5t6e-burger.q4m2j--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.n5t6e-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 12px 20px 20px;
  gap: 4px;
}

.n5t6e-mobile-menu.q4m2j--open { display: flex; }

.n5t6e-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.n5t6e-mobile-menu a svg { opacity: 0.8; flex-shrink: 0; }
.n5t6e-mobile-menu a:hover { background: rgba(161,130,84,0.1); color: var(--clr-btn-primary); }

.n5t6e-mobile-menu__btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--clr-border);
}

.n5t6e-mobile-menu__btns .btn { flex: 1; justify-content: center; }

/* ===== HERO ===== */
.r9k2m-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}

.r9k2m-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/clubhouse-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.r9k2m-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,22,28,0.92) 0%, rgba(19,22,28,0.65) 55%, rgba(19,22,28,0.2) 100%);
}

.r9k2m-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.r9k2m-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(161,130,84,0.18);
  border: 1px solid rgba(161,130,84,0.4);
  color: var(--clr-gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.r9k2m-hero__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}

.r9k2m-hero__title span { color: var(--clr-btn-primary); }

.r9k2m-hero__subtitle {
  font-size: 17px;
  color: rgba(232,226,217,0.8);
  margin-bottom: 28px;
  line-height: 1.6;
}

.r9k2m-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.r9k2m-hero__bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(161,130,84,0.12);
  border: 1px solid rgba(161,130,84,0.25);
  color: var(--clr-text-muted);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 6px;
  margin-top: 18px;
}

.r9k2m-hero__bonus-tag strong { color: var(--clr-accent); }

/* ===== BREADCRUMBS ===== */
.b4x7n-breadcrumbs {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}

.b4x7n-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 13px;
}

.b4x7n-breadcrumbs__list li { display: flex; align-items: center; gap: 6px; color: var(--clr-text-muted); }
.b4x7n-breadcrumbs__list li a { color: var(--clr-text-muted); transition: color var(--transition); }
.b4x7n-breadcrumbs__list li a:hover { color: var(--clr-btn-primary); }
.b4x7n-breadcrumbs__list li.active { color: var(--clr-text); }
.b4x7n-sep { color: rgba(155,155,155,0.4); }

/* ===== SECTION BASE ===== */
.z3v8p-section {
  padding: 56px 0;
}

.z3v8p-section--sm { padding: 36px 0; }

.z3v8p-section__header {
  margin-bottom: 32px;
}

.z3v8p-section__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.z3v8p-section__title--with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.z3v8p-section__title--with-icon svg { color: var(--clr-btn-primary); flex-shrink: 0; }

.z3v8p-section__subtitle {
  color: var(--clr-text-muted);
  font-size: 15px;
}

/* ===== TABLE OF CONTENTS ===== */
.t1c2k-toc {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.t1c2k-toc__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.t1c2k-toc__title svg { color: var(--clr-btn-primary); }

.t1c2k-toc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}

.t1c2k-toc__item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--clr-text);
  font-size: 14px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.t1c2k-toc__item svg { color: var(--clr-btn-primary); flex-shrink: 0; }

.t1c2k-toc__item:hover {
  background: rgba(161,130,84,0.1);
  border-color: rgba(161,130,84,0.25);
  color: var(--clr-gold-light);
}

/* ===== MIRRORS TABLE ===== */
.m7r5k-mirrors {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.m7r5k-mirrors__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--clr-border);
  gap: 16px;
  flex-wrap: wrap;
}

.m7r5k-mirrors__timestamp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.m7r5k-mirrors__timestamp strong { color: var(--clr-accent); }

.m7r5k-mirrors__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #3ecf4c;
  background: rgba(62,207,76,0.1);
  border: 1px solid rgba(62,207,76,0.25);
  padding: 4px 11px;
  border-radius: 20px;
}

.m7r5k-mirrors__status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #3ecf4c;
  border-radius: 50%;
  flex-shrink: 0;
}

.u5w9e-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.u5w9e-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 14px;
}

.u5w9e-table th {
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}

.u5w9e-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  text-align: left;
  vertical-align: middle;
}

.u5w9e-table tr:last-child td { border-bottom: none; }
.u5w9e-table tr:hover td { background: rgba(255,255,255,0.02); }

.u5w9e-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.u5w9e-badge--green { background: rgba(62,207,76,0.12); color: #3ecf4c; border: 1px solid rgba(62,207,76,0.25); }
.u5w9e-badge--gold { background: rgba(161,130,84,0.15); color: var(--clr-accent); border: 1px solid rgba(161,130,84,0.3); }

/* ===== APP INFO ===== */
.a6p3q-app {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.a6p3q-app__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.a6p3q-app__info {
  padding: 32px;
  border-right: 1px solid var(--clr-border);
}

.a6p3q-app__downloads {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.a6p3q-app__downloads-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.a6p3q-app__download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.a6p3q-app__download-btn svg { color: var(--clr-btn-primary); flex-shrink: 0; }

.a6p3q-app__download-btn:hover {
  background: rgba(161,130,84,0.1);
  border-color: rgba(161,130,84,0.35);
  color: var(--clr-gold-light);
  transform: translateY(-2px);
}

.a6p3q-app__download-btn span strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.a6p3q-app__download-btn span small {
  font-size: 12px;
  color: var(--clr-text-muted);
}

/* ===== SLOTS GRID ===== */
.s9g1r-slots {
  position: relative;
}

.s9g1r-slots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.s9g1r-slot-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.s9g1r-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(161,130,84,0.35);
}

.s9g1r-slot-card__thumb {
  aspect-ratio: 4/3;
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

.s9g1r-slot-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.s9g1r-slot-card:hover .s9g1r-slot-card__thumb img { transform: scale(1.05); }

.s9g1r-slot-card__provider-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(19,22,28,0.8);
  backdrop-filter: blur(4px);
  color: var(--clr-text-muted);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}

.s9g1r-slot-card__body {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.s9g1r-slot-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.s9g1r-slot-card__rtp {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* Slider on mobile */
.s9g1r-slots__slider-wrap {
  display: none;
  overflow: hidden;
}

.s9g1r-slots__slider {
  display: flex;
  gap: 14px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.s9g1r-slots__slider .s9g1r-slot-card {
  flex: 0 0 calc(80vw - 40px);
  max-width: 280px;
}

.s9g1r-slots__slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.s9g1r-slider-btn {
  width: 36px;
  height: 36px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-text);
  transition: background var(--transition), border-color var(--transition);
}

.s9g1r-slider-btn:hover {
  background: var(--clr-btn-primary);
  border-color: var(--clr-btn-primary);
  color: #fff;
}

.s9g1r-slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.s9g1r-slider-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-border);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.s9g1r-slider-dot.active {
  background: var(--clr-btn-primary);
  transform: scale(1.2);
}

/* ===== CONTENT BLOCK ===== */
.c8n4v-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.c8n4v-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.c8n4v-content h2:first-child { margin-top: 0; }

.c8n4v-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-gold-light);
  margin: 22px 0 10px;
}

.c8n4v-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  margin: 18px 0 8px;
}

.c8n4v-content p {
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.c8n4v-content ul, .c8n4v-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.c8n4v-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.c8n4v-content ul li::marker { color: var(--clr-btn-primary); }
.c8n4v-content ol li::marker { color: var(--clr-btn-primary); font-weight: 600; }

.c8n4v-content a {
  color: var(--clr-btn-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c8n4v-content strong { color: var(--clr-gold-light); font-weight: 600; }
.c8n4v-content em { color: var(--clr-text-muted); font-style: italic; }

.c8n4v-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}

.c8n4v-content th {
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  white-space: nowrap;
}

.c8n4v-content td {
  padding: 11px 16px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  text-align: left;
  vertical-align: top;
}

.c8n4v-content tr:hover td { background: rgba(255,255,255,0.02); }

.c8n4v-content blockquote {
  border-left: 3px solid var(--clr-btn-primary);
  background: rgba(161,130,84,0.07);
  padding: 14px 20px;
  margin: 16px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text);
  font-style: italic;
}

.c8n4v-content hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 24px 0;
}

/* ===== FAQ ===== */
.q2f7a-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.q2f7a-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.q2f7a-item.open { border-color: rgba(161,130,84,0.35); }

.q2f7a-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: color var(--transition);
}

.q2f7a-question:hover { color: var(--clr-gold-light); }

.q2f7a-question svg {
  flex-shrink: 0;
  color: var(--clr-btn-primary);
  transition: transform var(--transition);
}

.q2f7a-item.open .q2f7a-question svg { transform: rotate(45deg); }

.q2f7a-answer {
  display: none;
  padding: 0 22px 20px;
  color: rgba(232,226,217,0.8);
  font-size: 14.5px;
  line-height: 1.7;
}

.q2f7a-item.open .q2f7a-answer { display: block; }

/* ===== AUTHOR ===== */
.w8d1l-author {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.w8d1l-author__avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  overflow: hidden;
}

.w8d1l-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w8d1l-author__info { flex: 1; }

.w8d1l-author__name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.w8d1l-author__role {
  font-size: 13px;
  color: var(--clr-btn-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.w8d1l-author__bio {
  font-size: 14px;
  color: rgba(232,226,217,0.75);
  line-height: 1.65;
  margin-bottom: 14px;
}

.w8d1l-author__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.w8d1l-author__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.w8d1l-author__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.w8d1l-social-link {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 13px;
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.w8d1l-social-link:hover {
  background: rgba(161,130,84,0.1);
  border-color: rgba(161,130,84,0.3);
  color: var(--clr-btn-primary);
}

/* ===== FOOTER ===== */
.f5o9t-footer {
  background: var(--clr-header);
  border-top: 1px solid var(--clr-border);
  padding: 52px 0 0;
  margin-top: 72px;
}

.f5o9t-footer__grid {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}

.f5o9t-footer__brand {}

.f5o9t-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.f5o9t-footer__logo img { height: 40px; width: auto; }

.f5o9t-footer__tagline {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.f5o9t-footer__country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.f5o9t-footer__nav-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

.f5o9t-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.f5o9t-footer__nav-links a {
  font-size: 13.5px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.f5o9t-footer__nav-links a:hover { color: var(--clr-btn-primary); }

.f5o9t-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.f5o9t-footer__social a {
  width: 34px;
  height: 34px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.f5o9t-footer__social a:hover {
  background: rgba(161,130,84,0.1);
  border-color: rgba(161,130,84,0.3);
  color: var(--clr-btn-primary);
}

.f5o9t-footer__logos-row {
  padding: 28px 0;
  border-bottom: 1px solid var(--clr-border);
}

.f5o9t-footer__logos-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(155,155,155,0.5);
  margin-bottom: 12px;
}

.f5o9t-logos-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.f5o9t-logo-badge {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: border-color var(--transition);
}

.f5o9t-logo-badge svg { flex-shrink: 0; }
.f5o9t-logo-badge:hover { border-color: rgba(161,130,84,0.25); color: var(--clr-text); }

.f5o9t-footer__bottom {
  padding: 24px 0;
}

.f5o9t-footer__legal {
  font-size: 12px;
  color: rgba(155,155,155,0.5);
  line-height: 1.7;
  text-align: center;
}

.f5o9t-footer__legal a { color: rgba(155,155,155,0.6); text-decoration: underline; }
.f5o9t-footer__legal a:hover { color: var(--clr-text-muted); }

/* ===== STICKY WIDGET ===== */
.v4b6w-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #1a1d24 0%, #13161C 100%);
  border-top: 1px solid rgba(161,130,84,0.35);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  animation: v4b6w-slide-up 0.6s 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes v4b6w-slide-up {
  to { transform: translateY(0); }
}

.v4b6w-widget__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.v4b6w-widget__icon {
  width: 42px;
  height: 42px;
  background: rgba(161,130,84,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v4b6w-widget__icon svg { color: var(--clr-btn-primary); }

.v4b6w-widget__label {
  font-size: 13px;
  color: var(--clr-text-muted);
}

.v4b6w-widget__bonus {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.v4b6w-widget__bonus span { color: var(--clr-accent); }

.v4b6w-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.v4b6w-widget__close:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ===== DIVIDERS ===== */
.y3h7x-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--clr-border) 20%, var(--clr-border) 80%, transparent 100%);
  margin: 0;
}

/* ===== FADE IN ANIMATION ===== */
.p5k2a-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.p5k2a-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== INFO PAGE ===== */
.i2n4o-info-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 0 80px;
}

.i2n4o-info-page h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.i2n4o-info-page h2 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 10px;
}

.i2n4o-info-page h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--clr-gold-light);
  margin: 20px 0 8px;
}

.i2n4o-info-page p {
  color: rgba(232,226,217,0.82);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 15px;
}

.i2n4o-info-page ul, .i2n4o-info-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
  color: rgba(232,226,217,0.82);
  font-size: 15px;
}

.i2n4o-info-page li { margin-bottom: 7px; line-height: 1.65; }
.i2n4o-info-page ul li::marker { color: var(--clr-btn-primary); }
.i2n4o-info-page a { color: var(--clr-btn-primary); text-decoration: underline; text-underline-offset: 2px; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* body padding for widget */
body.j7r3q-has-widget { padding-bottom: 70px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .f5o9t-footer__grid { grid-template-columns: 1fr 1fr; }
  .f5o9t-footer__brand { grid-column: 1 / -1; }
  .s9g1r-slots__grid { grid-template-columns: repeat(3, 1fr); }
  .a6p3q-app__inner { grid-template-columns: 1fr; }
  .a6p3q-app__info { border-right: none; border-bottom: 1px solid var(--clr-border); }
}

@media (max-width: 768px) {
  .n5t6e-nav { display: none; }
  .n5t6e-burger { display: flex; }
  .n5t6e-header__inner { flex-wrap: wrap; }
  .n5t6e-header__right .btn { display: none; }

  .s9g1r-slots__grid { display: none; }
  .s9g1r-slots__slider-wrap { display: block; }

  .w8d1l-author { flex-direction: column; align-items: flex-start; gap: 16px; }

  .f5o9t-footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .r9k2m-hero { min-height: 400px; }
  .r9k2m-hero__content { padding: 40px 0; }

  .t1c2k-toc__grid { grid-template-columns: 1fr 1fr; }

  .c8n4v-content { padding: 22px 18px; }

  .z3v8p-section { padding: 36px 0; }

  .v4b6w-widget { flex-wrap: nowrap; }
  .v4b6w-widget__text { flex: 1; }
}

@media (max-width: 480px) {
  .f2w9d-container { padding: 0 14px; }
  .t1c2k-toc__grid { grid-template-columns: 1fr; }
  .r9k2m-hero__actions { flex-direction: column; }
  .r9k2m-hero__actions .btn { width: 100%; justify-content: center; }
  .v4b6w-widget .v4b6w-widget__label { display: none; }
  .n5t6e-header__right { gap: 6px; }
  .n5t6e-header__right .btn { padding: 7px 12px; font-size: 12px; }
}

/* ===== WP-STYLE UNUSED ELEMENTS (obfuscation) ===== */
.wp-block-cover { position: relative; }
.wp-block-group { display: flow-root; }
.entry-content { color: inherit; }
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5em; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; }
.wp-post-image { max-width: 100%; }
#wpadminbar { display: none; }
