/* ============================================
   987.homes Core CSS - Basefile
   Class prefix: wc6bd-
   Palette: #9966CC primary | #2D2D2D bg
   ============================================ */

:root {
  --wc6bd-primary: #9966CC;
  --wc6bd-primary-dark: #7a4fa8;
  --wc6bd-primary-light: #b591dd;
  --wc6bd-accent: #FFC857;
  --wc6bd-bg: #2D2D2D;
  --wc6bd-bg-2: #1f1c25;
  --wc6bd-surface: #3a2f4a;
  --wc6bd-surface-2: #46375a;
  --wc6bd-text: #F5F3FA;
  --wc6bd-text-soft: #cfc9e0;
  --wc6bd-text-muted: #9a93ac;
  --wc6bd-border: rgba(153,102,204,0.25);
  --wc6bd-radius: 14px;
  --wc6bd-shadow: 0 4px 18px rgba(0,0,0,0.35);
  --wc6bd-silver: #e7e4ee;
}

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

html { -webkit-text-size-adjust: 100%; font-size: 62.5%; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--wc6bd-bg);
  color: var(--wc6bd-text);
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--wc6bd-primary-light); text-decoration: none; }
ul, ol { list-style: none; }

.wc6bd-no-scroll { overflow: hidden; }

/* Layout */
.wc6bd-wrapper { max-width: 100%; padding: 0 1.2rem; margin: 0 auto; }

/* ===== Header ===== */
.wc6bd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(31,28,37,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--wc6bd-border);
  padding: 0.6rem 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wc6bd-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--wc6bd-text); font-weight: 700; font-size: 1.8rem;
}
.wc6bd-brand-logo { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--wc6bd-primary), var(--wc6bd-accent)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 1.2rem; }
.wc6bd-brand-text { color: var(--wc6bd-accent); letter-spacing: 1px; }

.wc6bd-header-actions { display: flex; gap: 0.5rem; align-items: center; }
.wc6bd-header-actions .fas,
.wc6bd-header-actions .material-icons { font-size: 1.8rem; }

.wc6bd-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.22s ease;
  min-height: 44px;
}
.wc6bd-btn-primary {
  background: linear-gradient(135deg, var(--wc6bd-primary), var(--wc6bd-primary-dark));
  color: #fff;
  box-shadow: 0 3px 10px rgba(153,102,204,0.4);
}
.wc6bd-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(153,102,204,0.55); }
.wc6bd-btn-secondary {
  background: transparent;
  color: var(--wc6bd-text);
  border: 1.5px solid var(--wc6bd-primary);
}
.wc6bd-btn-secondary:hover { background: rgba(153,102,204,0.15); }
.wc6bd-btn-accent {
  background: linear-gradient(135deg, var(--wc6bd-accent), #ffb24a);
  color: #2D2D2D;
  box-shadow: 0 3px 10px rgba(255,200,87,0.4);
}

.wc6bd-menu-toggle {
  background: transparent; border: none; color: var(--wc6bd-text);
  font-size: 2rem; cursor: pointer; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center;
}

/* ===== Mobile Side Menu ===== */
.wc6bd-mobile-menu {
  position: fixed; top: 0; left: -100%; width: 82%; max-width: 320px;
  height: 100vh; background: var(--wc6bd-bg-2);
  z-index: 9999; padding: 2rem 1.2rem; overflow-y: auto;
  transition: left 0.3s ease; box-shadow: var(--wc6bd-shadow);
}
.wc6bd-mobile-menu.wc6bd-menu-open { left: 0; }
.wc6bd-mobile-menu h3 { color: var(--wc6bd-accent); font-size: 1.4rem; margin: 1.4rem 0 0.6rem; letter-spacing: 1px; }
.wc6bd-mobile-menu a {
  display: block; color: var(--wc6bd-text-soft); padding: 0.9rem 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.4rem;
}
.wc6bd-mobile-menu a:hover { color: var(--wc6bd-accent); }
.wc6bd-menu-close { position: absolute; top: 1rem; right: 1rem; background: transparent; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; }
.wc6bd-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.wc6bd-overlay.wc6bd-menu-open { opacity: 1; pointer-events: auto; }

/* ===== Main ===== */
main { padding-top: 56px; }
@media (max-width: 768px) { main { padding-bottom: 80px; } }

/* ===== Carousel ===== */
.wc6bd-carousel { position: relative; width: 100%; border-radius: 0 0 18px 18px; overflow: hidden; }
.wc6bd-slides { position: relative; width: 100%; aspect-ratio: 16 / 7; }
.wc6bd-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.wc6bd-slide.wc6bd-slide-active { opacity: 1; }
.wc6bd-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%); }
.wc6bd-slide-caption {
  position: relative; z-index: 2; padding: 1.4rem; color: #fff; max-width: 92%;
}
.wc6bd-slide-caption h2 { font-size: 2rem; line-height: 1.5; color: #fff; margin-bottom: 0.4rem; }
.wc6bd-slide-caption p { font-size: 1.3rem; color: var(--wc6bd-silver); line-height: 1.5; }
.wc6bd-slide-caption a { color: var(--wc6bd-accent); font-weight: 700; border-bottom: 1px dashed; }

.wc6bd-carousel-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 0.6rem; transform: translateY(-50%); z-index: 3; }
.wc6bd-carousel-nav button {
  background: rgba(0,0,0,0.4); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.wc6bd-carousel-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 3; }
.wc6bd-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s; }
.wc6bd-dot.wc6bd-dot-active { background: var(--wc6bd-accent); width: 22px; border-radius: 4px; }

/* ===== Section titles ===== */
.wc6bd-section { padding: 2.4rem 1.2rem; }
.wc6bd-section-title {
  font-size: 2rem; line-height: 1.5; color: #fff; margin-bottom: 0.4rem;
  border-left: 4px solid var(--wc6bd-accent); padding-left: 0.8rem;
}
.wc6bd-section-sub { color: var(--wc6bd-text-soft); font-size: 1.3rem; line-height: 1.5; margin-bottom: 1.2rem; padding-left: 0.8rem; }

/* ===== Hero text block ===== */
.wc6bd-hero-text { padding: 1.4rem 1.2rem; }
.wc6bd-hero-text h1 { font-size: 2.2rem; line-height: 1.5; color: var(--wc6bd-accent); margin-bottom: 0.6rem; }
.wc6bd-hero-text p { color: var(--wc6bd-text-soft); font-size: 1.4rem; line-height: 1.5; margin-bottom: 1rem; }
.wc6bd-hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }

/* ===== Category filter chips ===== */
.wc6bd-chips { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0 1rem; scrollbar-width: none; }
.wc6bd-chips::-webkit-scrollbar { display: none; }
.wc6bd-chip {
  flex: 0 0 auto; padding: 0.6rem 1.1rem; border-radius: 999px;
  background: var(--wc6bd-surface); color: var(--wc6bd-text-soft);
  font-size: 1.25rem; font-weight: 600; border: 1px solid var(--wc6bd-border);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.wc6bd-chip:hover { background: var(--wc6bd-primary); color: #fff; }

/* ===== Game grid ===== */
.wc6bd-game-grid {
  display: grid; gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 540px) { .wc6bd-game-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .wc6bd-game-grid { grid-template-columns: repeat(6, 1fr); } }

.wc6bd-game-card {
  background: var(--wc6bd-surface); border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer; border: 1px solid var(--wc6bd-border);
  transition: transform 0.2s, box-shadow 0.2s; min-height: 44px;
}
.wc6bd-game-card:hover { transform: translateY(-3px); box-shadow: var(--wc6bd-shadow); }
.wc6bd-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.wc6bd-game-card .wc6bd-game-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff; font-size: 1.1rem; line-height: 1.3; padding: 1.5rem 0.5rem 0.4rem; text-align: center;
  font-weight: 600;
}
.wc6bd-game-card .wc6bd-game-badge {
  position: absolute; top: 6px; left: 6px; z-index: 2;
  background: var(--wc6bd-accent); color: #2D2D2D; font-size: 1rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 6px;
}
.wc6bd-game-card .wc6bd-play-overlay {
  position: absolute; inset: 0; background: rgba(153,102,204,0.0); display: flex; align-items: center; justify-content: center; transition: background 0.25s;
}
.wc6bd-game-card:hover .wc6bd-play-overlay { background: rgba(153,102,204,0.45); }
.wc6bd-game-card .wc6bd-play-overlay i { color: #fff; font-size: 2.4rem; opacity: 0; transition: opacity 0.25s; }
.wc6bd-game-card:hover .wc6bd-play-overlay i { opacity: 1; }

/* ===== Category section ===== */
.wc6bd-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.8rem; padding-left: 0.4rem;
}
.wc6bd-cat-header h2 { font-size: 1.9rem; color: #fff; line-height: 1.5; display: flex; align-items: center; gap: 0.5rem; }
.wc6bd-cat-header h2 i { color: var(--wc6bd-accent); font-size: 1.8rem; }
.wc6bd-cat-header a { color: var(--wc6bd-accent); font-size: 1.2rem; font-weight: 600; }

/* ===== Info cards ===== */
.wc6bd-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 540px) { .wc6bd-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .wc6bd-cards { grid-template-columns: repeat(3, 1fr); } }

.wc6bd-card {
  background: var(--wc6bd-surface); border-radius: var(--wc6bd-radius); padding: 1.4rem;
  border: 1px solid var(--wc6bd-border); line-height: 1.5;
}
.wc6bd-card h3 { color: var(--wc6bd-accent); font-size: 1.5rem; margin-bottom: 0.5rem; line-height: 1.5; }
.wc6bd-card p { color: var(--wc6bd-text-soft); font-size: 1.3rem; line-height: 1.5; }
.wc6bd-card .wc6bd-card-icon { font-size: 2.6rem; color: var(--wc6bd-primary-light); margin-bottom: 0.6rem; }

.wc6bd-feature-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .wc6bd-feature-grid { grid-template-columns: repeat(4, 1fr); } }
.wc6bd-feature {
  background: var(--wc6bd-surface); border-radius: 12px; padding: 1.2rem; text-align: center;
  border: 1px solid var(--wc6bd-border); min-height: 44px;
}
.wc6bd-feature .wc6bd-feature-icon { font-size: 2.4rem; color: var(--wc6bd-accent); margin-bottom: 0.4rem; }
.wc6bd-feature h3 { font-size: 1.35rem; color: #fff; line-height: 1.5; margin-bottom: 0.3rem; }
.wc6bd-feature p { font-size: 1.2rem; color: var(--wc6bd-text-soft); line-height: 1.5; }

/* ===== RTP table ===== */
.wc6bd-rtp-grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .wc6bd-rtp-grid { grid-template-columns: repeat(4, 1fr); } }
.wc6bd-rtp-item {
  background: var(--wc6bd-surface); border-radius: 12px; padding: 1rem; text-align: center;
  border: 1px solid var(--wc6bd-border);
}
.wc6bd-rtp-item .wc6bd-rtp-num { font-size: 2rem; font-weight: 800; color: var(--wc6bd-accent); display: block; }
.wc6bd-rtp-item .wc6bd-rtp-label { color: var(--wc6bd-text-soft); font-size: 1.2rem; }

/* ===== Testimonials ===== */
.wc6bd-testimonials { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 540px) { .wc6bd-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .wc6bd-testimonials { grid-template-columns: repeat(3, 1fr); } }
.wc6bd-testimonial {
  background: var(--wc6bd-surface-2); border-radius: 12px; padding: 1.2rem; border-left: 3px solid var(--wc6bd-primary);
}
.wc6bd-testimonial .wc6bd-stars { color: var(--wc6bd-accent); margin-bottom: 0.4rem; font-size: 1.2rem; }
.wc6bd-testimonial p { color: var(--wc6bd-text-soft); font-size: 1.3rem; line-height: 1.5; margin-bottom: 0.6rem; }
.wc6bd-testimonial .wc6bd-author { color: var(--wc6bd-accent); font-weight: 700; font-size: 1.3rem; }

/* ===== Winners ===== */
.wc6bd-winners { display: grid; gap: 0.6rem; }
.wc6bd-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--wc6bd-surface); padding: 0.7rem 1rem; border-radius: 10px; border: 1px solid var(--wc6bd-border);
}
.wc6bd-winner-row .wc6bd-winner-user { color: #fff; font-weight: 600; font-size: 1.25rem; }
.wc6bd-winner-row .wc6bd-winner-game { color: var(--wc6bd-text-soft); font-size: 1.2rem; }
.wc6bd-winner-row .wc6bd-winner-amount { color: var(--wc6bd-accent); font-weight: 800; font-size: 1.35rem; }

/* ===== Payment methods ===== */
.wc6bd-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wc6bd-payment {
  background: var(--wc6bd-surface); padding: 0.7rem 1rem; border-radius: 10px;
  border: 1px solid var(--wc6bd-border); display: flex; align-items: center; gap: 0.5rem;
  color: var(--wc6bd-text-soft); font-size: 1.2rem; font-weight: 600; min-height: 44px;
}
.wc6bd-payment i { color: var(--wc6bd-primary-light); font-size: 1.6rem; }

/* ===== App download CTA ===== */
.wc6bd-app-cta {
  background: linear-gradient(135deg, var(--wc6bd-primary-dark), var(--wc6bd-surface));
  border-radius: var(--wc6bd-radius); padding: 1.6rem; text-align: center; border: 1px solid var(--wc6bd-border);
}
.wc6bd-app-cta h2 { color: #fff; font-size: 2rem; line-height: 1.5; margin-bottom: 0.4rem; }
.wc6bd-app-cta p { color: var(--wc6bd-text-soft); font-size: 1.3rem; line-height: 1.5; margin-bottom: 1rem; }
.wc6bd-app-cta .wc6bd-app-btns { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.wc6bd-faq-item {
  background: var(--wc6bd-surface); border-radius: 10px; margin-bottom: 0.7rem; overflow: hidden; border: 1px solid var(--wc6bd-border);
}
.wc6bd-faq-q {
  width: 100%; text-align: left; background: transparent; border: none; color: #fff;
  padding: 1rem 1.2rem; font-size: 1.35rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; min-height: 44px;
}
.wc6bd-faq-q i { color: var(--wc6bd-accent); transition: transform 0.3s; }
.wc6bd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 1.2rem; color: var(--wc6bd-text-soft); font-size: 1.3rem; line-height: 1.5; }
.wc6bd-faq-item.wc6bd-faq-open .wc6bd-faq-a { max-height: 400px; padding: 0 1.2rem 1rem; }
.wc6bd-faq-item.wc6bd-faq-open .wc6bd-faq-q i { transform: rotate(45deg); }

/* ===== Play Now banner ===== */
.wc6bd-play-banner {
  background: linear-gradient(135deg, var(--wc6bd-accent), #ffb24a); color: #2D2D2D;
  border-radius: var(--wc6bd-radius); padding: 1.6rem; text-align: center; margin: 1.2rem 0;
}
.wc6bd-play-banner h2 { font-size: 2rem; line-height: 1.5; margin-bottom: 0.4rem; }
.wc6bd-play-banner p { font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.5; }

/* ===== SEO text blocks ===== */
.wc6bd-seo-text { color: var(--wc6bd-text-soft); font-size: 1.3rem; line-height: 1.6; }
.wc6bd-seo-text h2 { color: #fff; font-size: 1.7rem; line-height: 1.5; margin: 1.2rem 0 0.5rem; }
.wc6bd-seo-text h3 { color: var(--wc6bd-accent); font-size: 1.4rem; margin: 0.9rem 0 0.4rem; }
.wc6bd-seo-text p { margin-bottom: 0.7rem; }
.wc6bd-seo-text a { color: var(--wc6bd-accent); border-bottom: 1px dashed; }
.wc6bd-seo-text ul { padding-left: 1.6rem; }
.wc6bd-seo-text ul li { list-style: disc; margin-bottom: 0.4rem; }
.wc6bd-promo-link { color: var(--wc6bd-accent); font-weight: 700; cursor: pointer; }

/* ===== Reveal animation ===== */
.wc6bd-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wc6bd-revealed { opacity: 1; transform: translateY(0); }

/* ===== Back to top ===== */
.wc6bd-back-top {
  position: fixed; right: 1rem; bottom: 80px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--wc6bd-primary); color: #fff; border: none;
  font-size: 1.8rem; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
.wc6bd-back-top.wc6bd-back-show { opacity: 1; pointer-events: auto; }

/* ===== Footer ===== */
.wc6bd-footer {
  background: var(--wc6bd-bg-2); padding: 2rem 1.2rem 3.2rem; margin-top: 2rem;
  border-top: 1px solid var(--wc6bd-border); color: var(--wc6bd-text-soft);
}
.wc6bd-footer h3 { color: var(--wc6bd-accent); font-size: 1.4rem; margin-bottom: 0.6rem; }
.wc6bd-footer p { font-size: 1.2rem; line-height: 1.5; margin-bottom: 0.8rem; }
.wc6bd-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1rem 0; }
.wc6bd-footer-links a { color: var(--wc6bd-text-soft); font-size: 1.2rem; border-bottom: 1px dotted; }
.wc6bd-footer-links a:hover { color: var(--wc6bd-accent); }
.wc6bd-footer-promo { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.wc6bd-footer-promo .wc6bd-btn { font-size: 1.2rem; padding: 0.6rem 1rem; }
.wc6bd-footer-copy { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 1.1rem; color: var(--wc6bd-text-muted); }

/* ===== Mobile bottom nav ===== */
.wc6bd-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; height: 62px; z-index: 1000;
  background: rgba(31,28,37,0.98); backdrop-filter: blur(8px);
  border-top: 1px solid var(--wc6bd-border);
  display: flex; justify-content: space-around; align-items: center; padding: 4px 0;
}
.wc6bd-bottom-nav button, .wc6bd-bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-width: 60px; min-height: 58px; background: transparent; border: none;
  color: var(--wc6bd-text-soft); cursor: pointer; font-size: 1rem; text-decoration: none;
  transition: all 0.2s; position: relative;
}
.wc6bd-bottom-nav button i, .wc6bd-bottom-nav a i { font-size: 24px; transition: all 0.2s; }
.wc6bd-bottom-nav button:active, .wc6bd-bottom-nav a:active { transform: scale(0.92); }
.wc6bd-bottom-nav button.active, .wc6bd-bottom-nav a.wc6bd-nav-active {
  color: var(--wc6bd-accent);
}
.wc6bd-bottom-nav button.active::after, .wc6bd-bottom-nav a.wc6bd-nav-active::after {
  content: ''; position: absolute; top: 0; width: 30px; height: 3px; border-radius: 0 0 4px 4px; background: var(--wc6bd-accent);
}
.wc6bd-bottom-nav .wc6bd-nav-badge {
  position: absolute; top: 6px; right: 18px; background: #ff5b6e; color: #fff;
  font-size: 0.9rem; padding: 0 5px; border-radius: 8px; font-weight: 700;
}

/* ===== Desktop nav (hidden on mobile) ===== */
.wc6bd-desktop-nav { display: none; align-items: center; gap: 1rem; }
@media (min-width: 769px) {
  .wc6bd-desktop-nav { display: flex; }
  .wc6bd-bottom-nav { display: none; }
  .wc6bd-wrapper { max-width: 1100px; }
}
.wc6bd-desktop-nav a { color: var(--wc6bd-text-soft); font-size: 1.3rem; font-weight: 600; }
.wc6bd-desktop-nav a:hover { color: var(--wc6bd-accent); }

/* Hide elements meant for desktop-only menu toggle on mobile */
.wc6bd-desktop-only { display: none; }
@media (min-width: 769px) { .wc6bd-desktop-only { display: block; } }