/* =====================================================================
   Beterraba — design das páginas home / cassino / jogos
   Portado do mockup. Classes prefixadas com btr- p/ não colidir com
   Bootstrap/Tailwind. Efeitos decorativos recriados via CSS.
   ===================================================================== */
:root {
  --btr-bg: #0a0c0f;
  --btr-header: #f05000;
  --btr-chip: #181e29;
  --btr-accent: #f05000;
  --btr-card-border: #1e2633;
  --btr-stroke-grad: linear-gradient(180deg, #1e2633 13%, #0a0c0f 53%);
  --btr-lime: #00d07c;
  --btr-muted: #8a99ad;
  --btr-muted-2: #677386;
  --btr-footer-link: #8a99ad;
  --btr-dark-ink: #0a0c0f;
}

.btr-scope {
  background: var(--btr-bg);
  color: #fff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh
}

.btr-scope * {
  box-sizing: border-box
}

.btr-scope img {
  display: block;
  max-width: 100%
}

.btr-scope a {
  text-decoration: none;
  color: inherit
}

.btr-scope a:hover {
  text-decoration: none
}

/* ============ HEADER ============ */
.btr-header {
  background: var(--btr-header);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 1000
}

.btr-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0
}

.btr-menu-btn {
  background: rgba(255, 255, 255, 0.15);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transition: transform .2s;
  border: none;
  cursor: pointer
}

.btr-menu-btn:hover {
  transform: scale(1.06)
}

.btr-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #e7d2e2;
  transition: .25s
}

.btr-menu-btn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.btr-menu-btn.open span:nth-child(2) {
  opacity: 0
}

.btr-menu-btn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

.btr-logo {
  height: 38px;
  width: auto;
  transform: rotate(0deg);
  flex-shrink: 0;
  transition: transform .3s;
  object-fit: contain;
  animation: btrLogoWiggle 4.8s ease-in-out infinite
}

.btr-logo:hover {
  animation-play-state: paused;
  transform: rotate(4.6deg) scale(1.04)
}

@keyframes btrLogoWiggle {

  0%,
  100% {
    transform: rotate(0deg) translateY(0)
  }

  50% {
    transform: rotate(4.6deg) translateY(-1px)
  }
}

.btr-logo-txt {
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -1px;
  color: #fff;
  transform: rotate(-4deg);
  white-space: nowrap
}

.btr-logo-txt b {
  color: var(--btr-lime)
}

.btr-nav {
  display: flex;
  align-items: center;
  gap: 24px
}

.btr-nav a {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .2s;
  text-transform: uppercase
}

.btr-nav a::after {
  content: '';
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
  transition: width .25s
}

.btr-nav a:hover {
  color: #fff
}

.btr-nav a:hover::after {
  width: 22px
}

.btr-nav a.active {
  color: #fff;
  font-weight: 800
}

.btr-nav a.active::after {
  width: 22px;
  background: #ffffff
}

.btr-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0
}

.btr-btn {
  padding: 11px 22px;
  border-radius: 9px;
  font-size: 13px;
  letter-spacing: .4px;
  white-space: nowrap;
  transition: transform .15s, filter .15s;
  border: none;
  cursor: pointer;
  font-family: inherit
}

.btr-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1)
}

.btr-btn-entrar {
  background: #00d07c;
  color: #0a0c0f;
  font-weight: 800;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 208, 124, 0.3);
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}

.btr-btn-cadastrar {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 800;
  padding: 9px 22px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s, background 0.2s;
}

.btr-btn-cadastrar:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btr-header-icons-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 12px;
}

.btr-header-icon {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
}

.btr-header-icon:hover {
  opacity: 0.85;
  transform: scale(1.08);
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .btr-header-icons-wrap {
    display: none !important;
  }
}

/* DEPOSITAR: botão estilo iOS 26 pill */
.btr-scope a.btr-btn-depositar,
.btr-btn-depositar {
  color: #0a0c0f !important;
  background: #00d07c !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 208, 124, 0.35) !important;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btr-scope a.btr-btn-depositar:hover,
.btr-btn-depositar:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
  box-shadow: 0 6px 20px rgba(0, 208, 124, 0.5) !important;
  color: #0a0c0f !important;
}

.btr-scope a.btr-btn-depositar:active,
.btr-btn-depositar:active {
  transform: scale(0.96) !important;
}

.btr-balance {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 5px 16px;
  line-height: 1.15;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btr-balance:hover {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
}

.btr-balance small {
  font-size: 9px;
  letter-spacing: .5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 700;
}

.btr-balance b {
  font-size: 13px;
  color: #fff;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.2px;
}

.btr-balance-bonus {
  border: 1px solid rgba(0, 208, 124, .35);
  background: rgba(0, 208, 124, .12);
}

.btr-balance-bonus small {
  color: #00d07c;
}

.btr-balance-bonus b {
  color: #00d07c;
}

.btr-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btr-avatar:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}

/* Dropdown do perfil (logado) — próprio, sem Bootstrap */
.btr-profile {
  position: relative
}

.btr-profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 232px;
  background: rgba(18, 24, 38, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
  z-index: 1200;
  display: none;
  animation: btrSlideDown .18s ease
}

.btr-profile-menu.show {
  display: block
}

.btr-dd-head {
  padding: 6px 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 6px
}

.btr-dd-head p {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.btr-dd-head span {
  font-size: 11px;
  color: var(--btr-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block
}

.btr-profile-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 9px;
  color: #e7d2e2;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s, color .15s
}

.btr-profile-menu a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff
}

.btr-profile-menu a.btr-dd-danger {
  color: #ff5a7a
}

.btr-profile-menu a.btr-dd-danger:hover {
  background: rgba(255, 90, 122, .12);
  color: #ff7a93
}

.btr-profile-menu a i {
  width: 18px;
  text-align: center;
  font-size: 13px
}

/* mobile drawer */
.btr-mobile-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--btr-header);
  display: none;
  flex-direction: column;
  padding: 10px 26px 22px;
  z-index: 999;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45)
}

.btr-mobile-nav.show {
  display: flex !important;
  animation: btrSlideDown .25s ease
}

.btr-mobile-nav a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--btr-muted);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.btr-mobile-nav a.active,
.btr-mobile-nav a:hover {
  color: #fff
}

@keyframes btrSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ============ LAYOUT ============ */
.btr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

/* ============ HERO ============ */
.btr-hero {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(117deg, #4a0a1e 0%, #F05000 43%, #c42a78 87%);
  aspect-ratio: 1228/365;
  min-height: 170px;
  margin-top: 20px
}

.btr-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.btr-hero .carousel,
.btr-hero .carousel-inner,
.btr-hero .carousel-item {
  height: 100%
}

/* Carrossel de banners (tabela banner, admin/banners) */
.btr-hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s
}

.btr-hero-slide.active {
  opacity: 1;
  visibility: visible
}

.btr-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5
}

.btr-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .35);
  padding: 0;
  transition: background .25s, transform .25s
}

.btr-hero-dot:hover {
  background: rgba(255, 255, 255, .6)
}

.btr-hero-dot.active {
  background: var(--btr-lime);
  transform: scale(1.25)
}

/* ============ FILTERS ============ */
.btr-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px
}

.btr-filters::-webkit-scrollbar {
  display: none
}

.btr-search-chip {
  background: var(--btr-chip);
  border-radius: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12.5px;
  flex: 0 0 auto;
  width: 40px;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btr-search-chip svg {
  flex-shrink: 0;
  stroke: var(--btr-muted);
  pointer-events: none;
  transition: stroke 0.2s ease;
}

.btr-search-chip input {
  background: transparent;
  border: none;
  outline: none;
  width: 0;
  opacity: 0;
  margin-left: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #fff;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, margin 0.35s ease;
}

.btr-search-chip input::placeholder {
  color: var(--btr-muted);
}

.btr-search-chip:hover,
.btr-search-chip:focus-within,
.btr-search-chip:has(input:not(:placeholder-shown)) {
  width: min(432px, 72vw);
  background: var(--btr-chip);
}

.btr-search-chip:hover svg,
.btr-search-chip:focus-within svg,
.btr-search-chip:has(input:not(:placeholder-shown)) svg {
  stroke: #fff;
}

.btr-search-chip:hover input,
.btr-search-chip:focus-within input,
.btr-search-chip:has(input:not(:placeholder-shown)) input {
  width: 100%;
  opacity: 1;
  margin-left: 10px;
}

.btr-chip {
  background: var(--btr-chip);
  color: var(--btr-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 10px 18px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
  border: none;
  font-family: inherit
}

.btr-chip:hover {
  transform: translateY(-1px);
  color: #fff
}

.btr-chip.active {
  background: var(--btr-accent);
  color: #fff;
  font-weight: 800
}

.btr-chip svg {
  stroke: currentColor
}

/* ============ SECTION HEADER ============ */
.btr-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px
}

.btr-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0
}

.btr-sec-ico {
  height: 46px;
  width: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--btr-accent), #F05000);
  color: var(--btr-lime);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(196, 42, 120, .35)
}

.btr-sec-ico-img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain
}

.btr-section-title h2 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .3px;
  color: #fff
}

.btr-section-title p {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .6px;
  color: var(--btr-muted);
  text-transform: uppercase;
  margin-top: 3px
}

.btr-ver-todos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--btr-muted-2);
  transition: color .2s, transform .2s
}

.btr-ver-todos:hover {
  color: #fff;
  transform: translateX(3px)
}

.btr-ver-todos svg {
  stroke: currentColor
}

/* ============ GAME GRID ============ */
.btr-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px 18px
}

.btr-game-card {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--btr-card-border);
  border-radius: 14px;
  overflow: hidden;
  background: #131924;
  transition: transform .25s, box-shadow .25s;
  display: block
}

.btr-game-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 12, 15, .9), transparent);
  pointer-events: none
}

.btr-game-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-color: #2e3a4e;
  z-index: 2
}

.btr-game-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.btr-game-info {
  position: absolute;
  left: 10px;
  bottom: 8px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  z-index: 2
}

.btr-game-provider {
  background: rgba(0, 0, 0, 0.6);
  color: var(--btr-muted);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 3px 6px;
  border-radius: 4px
}

.btr-game-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .8);
  line-height: 1.1
}

.btr-game-card.btr-hidden {
  display: none
}

/* selo de jogo com bônus (free spins) */
.btr-game-bonus {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #00d07c;
  color: #ffffff;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 208, 124, 0.3);
  line-height: 1
}

.btr-game-bonus i {
  font-size: 9px
}

@media (max-width:760px) {
  .btr-game-bonus {
    top: 7px;
    left: 7px;
    font-size: 7px;
    padding: 3px 6px
  }
}

/* ============ CTA VER TODOS ============ */
.btr-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btr-cta-all {
  background: linear-gradient(135deg, #00d07c 0%, #059669 100%);
  color: #0a0c0f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 208, 124, 0.35);
  text-decoration: none;
}

.btr-cta-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 208, 124, 0.5);
  filter: brightness(1.1);
  color: #0a0c0f;
  text-decoration: none;
}

.btr-cta-all:active {
  transform: scale(0.97);
}

/* ============ LIVE GRID ============ */
.btr-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px 18px
}

.btr-live-card {
  position: relative;
  aspect-ratio: 385/183;
  border: 5px solid transparent;
  border-radius: 23px;
  overflow: hidden;
  background: linear-gradient(var(--btr-bg), var(--btr-bg)) padding-box, var(--btr-stroke-grad) border-box;
  transition: transform .25s, box-shadow .25s;
  display: block
}

.btr-live-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(13, 3, 10, .9) 0%, rgba(13, 3, 10, .5) 28%, rgba(13, 3, 10, .08) 55%, transparent 72%), linear-gradient(90deg, rgba(13, 3, 10, .6) 0%, rgba(13, 3, 10, .12) 42%, transparent 64%)
}

.btr-live-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 14px 32px rgba(214, 58, 106, .35);
  z-index: 2
}

.btr-live-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.btr-live-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #3a0a2c, #160210);
  color: rgba(255, 255, 255, .3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px
}

.btr-live-tag {
  position: absolute;
  left: 17px;
  bottom: 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--btr-lime);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6)
}

.btr-live-title {
  position: absolute;
  right: 13px;
  bottom: 11px;
  background: var(--btr-card-border);
  color: var(--btr-lime);
  font-size: clamp(12px, 1.35vw, 17px);
  font-weight: 900;
  letter-spacing: .9px;
  padding: 9px 16px;
  border-radius: 14px;
  white-space: nowrap;
  z-index: 2;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease
}

.btr-live-card:hover .btr-live-title {
  transform: translateY(-3px);
  background: var(--btr-lime);
  color: var(--btr-dark-ink);
  box-shadow: 0 8px 22px rgba(188, 230, 58, .45)
}

/* ============ MINI RESUMO (logado) ============ */
.btr-dash {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 26, 40, 0.85) 0%, rgba(10, 14, 23, 0.95) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  padding: 20px 28px;
  margin-top: 20px;
}

.btr-dash-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0
}

.btr-dash-hi {
  font-size: 12px;
  font-weight: 700;
  color: var(--btr-muted);
  text-transform: uppercase;
  letter-spacing: .5px
}

.btr-dash-hi b {
  color: #fff
}

.btr-dash-saldo {
  display: flex;
  align-items: baseline;
  gap: 8px
}

.btr-dash-saldo small {
  font-size: 10px;
  font-weight: 800;
  color: var(--btr-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px
}

.btr-dash-saldo b {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: -.5px
}

.btr-dash-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btr-dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: transform .15s, filter .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
}

.btr-dash-btn.dep {
  background: #00d07c;
  color: #0a0c0f;
  box-shadow: 0 6px 18px rgba(0, 208, 124, 0.35);
}

.btr-dash-btn.dep:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(0, 208, 124, 0.45);
}

.btr-dash-btn.saq {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btr-dash-btn.saq:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .15);
}

@media(max-width:600px) {
  .btr-dash {
    flex-direction: column;
    align-items: stretch;
    text-align: center
  }

  .btr-dash-saldo {
    justify-content: center
  }

  .btr-dash-actions {
    justify-content: center
  }

  .btr-dash-btn {
    flex: 1;
    justify-content: center
  }
}

/* ============ FOOTER ============ */
.btr-footer {
  margin-top: 34px;
  background: linear-gradient(0deg, #07090c 0%, var(--btr-bg) 100%);
  border-radius: 47px 47px 0 0;
  padding: 56px 40px 48px
}

.btr-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.btr-footer-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.btr-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 360px;
}

.btr-footer-logo {
  width: auto;
  max-width: 220px;
  height: auto;
  align-self: center;
  object-fit: contain;
}

.btr-footer-about {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--btr-footer-link);
  line-height: 1.6;
}

.btr-footer-cols {
  display: flex;
  gap: 80px;
  justify-content: center;
}

.btr-footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 150px;
  align-items: flex-start;
}

.btr-footer-col a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: .3px;
  color: #fff;
  transition: color .2s, transform .2s
}

.btr-footer-col a:hover {
  color: var(--btr-lime);
  transform: translateX(3px)
}

.btr-footer-col a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0
}

.btr-footer-col a .btr-fico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(188, 230, 58, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btr-lime);
  font-size: 14px;
  flex-shrink: 0
}

.btr-footer-legal {
  width: 100%;
  font-size: 9px;
  letter-spacing: .3px;
  color: var(--btr-footer-link);
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  margin-top: 10px;
}

/* ============ SOBRE ============ */
/* heros ocupam a largura toda da viewport (fora do btr-container) */
.btr-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media (min-width: 1024px) {
  .btr-main-layout .btr-bleed {
    width: auto !important;
    margin-left: 0 !important;
  }
}

.btr-about-hero {
  position: relative;
  padding: 90px 26px 70px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% -10%, rgba(196, 42, 120, .35), transparent 70%),
    var(--btr-bg);
  overflow: hidden;
}

.btr-stars {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.btr-star {
  position: absolute;
  border-radius: 50%;
  background: var(--btr-lime);
  animation: btrTwinkle 3s ease-in-out infinite
}

@keyframes btrTwinkle {

  0%,
  100% {
    opacity: .15;
    transform: scale(.8)
  }

  50% {
    opacity: .85;
    transform: scale(1.2)
  }
}

.btr-about-kicker {
  display: inline-block;
  background: var(--btr-card-border);
  color: var(--btr-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 9px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.btr-about-hero h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 18px;
  color: #fff;
}

.btr-about-hero h1 em,
.btr-rg-hero h1 em {
  font-style: normal;
  color: var(--btr-lime)
}

.btr-about-hero .btr-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: var(--btr-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6
}

.btr-about-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 54px;
  width: 100%
}

.btr-fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.btr-fade-section.visible {
  opacity: 1;
  transform: translateY(0)
}

.btr-about-section h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -.3px;
  margin-bottom: 18px;
  line-height: 1.2;
  color: #fff
}

.btr-about-section h2 .btr-emoji {
  margin-right: 10px
}

.btr-about-section p {
  font-size: 16px;
  line-height: 1.85;
  color: #e7d2e2;
  margin-bottom: 16px
}

.btr-about-section p:last-child {
  margin-bottom: 0
}

.btr-about-section strong {
  color: var(--btr-lime);
  font-weight: 800
}

.btr-about-section .btr-riscado {
  text-decoration: line-through;
  opacity: .6
}

.btr-alien-card {
  border: 5px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #333333, #23091f) padding-box,
    var(--btr-stroke-grad) border-box;
  padding: 34px 36px;
}

.btr-mascot-break {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0
}

.btr-mascot-break img {
  width: 240px;
  height: auto
}

.btr-mascot-break span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--btr-muted-2);
  text-transform: uppercase
}

.btr-troll-quote {
  border-left: 5px solid var(--btr-lime);
  background: rgba(188, 230, 58, .06);
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  margin: 6px 0 16px;
}

.btr-troll-quote p {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  margin: 0;
  line-height: 1.7
}

.btr-serio-card {
  border: 5px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(0deg, #2d3611, #1c2410) padding-box,
    linear-gradient(180deg, var(--btr-lime) 13%, #23091f 60%) border-box;
  padding: 34px 36px;
}

.btr-serio-card h2 {
  color: var(--btr-lime)
}

.btr-serio-card p {
  color: #e9f3c8
}

.btr-serio-card strong {
  color: #fff
}

.btr-slogan {
  text-align: center;
  padding: 30px 0 10px
}

.btr-slogan p {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.3;
  color: #fff
}

.btr-slogan p em {
  font-style: normal;
  color: var(--btr-lime)
}

.btr-cta-final {
  display: inline-block;
  margin-top: 28px;
  background: var(--btr-lime);
  color: var(--btr-dark-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 16px 34px;
  border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btr-cta-final:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(188, 230, 58, .4);
  color: var(--btr-dark-ink)
}

/* ============ JOGO RESPONSÁVEL ============ */
.btr-rg-hero {
  padding: 70px 26px 50px;
  background:
    radial-gradient(ellipse 55% 70% at 50% -10%, rgba(196, 42, 120, .28), transparent 70%),
    var(--btr-bg);
}

.btr-rg-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px
}

.btr-rg-hero-text {
  flex: 1;
  min-width: 0
}

.btr-rg-kicker {
  display: inline-block;
  background: var(--btr-card-border);
  color: var(--btr-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 9px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.btr-rg-hero h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #fff
}

.btr-rg-hero .btr-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--btr-muted);
  max-width: 520px;
  line-height: 1.65
}

.btr-rg-hero-img {
  width: clamp(200px, 26vw, 330px);
  flex-shrink: 0
}

.btr-rg-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 46px;
  width: 100%
}

.btr-rg-section h2 {
  font-size: clamp(21px, 2.8vw, 28px);
  font-weight: 900;
  letter-spacing: -.3px;
  margin-bottom: 16px;
  line-height: 1.25;
  color: #fff
}

.btr-rg-section p {
  font-size: 16px;
  line-height: 1.85;
  color: #e7d2e2;
  margin-bottom: 14px
}

.btr-rg-section p:last-child {
  margin-bottom: 0
}

.btr-rg-section strong {
  color: var(--btr-lime);
  font-weight: 800
}

.btr-age-card {
  border: 5px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #333333, #23091f) padding-box,
    var(--btr-stroke-grad) border-box;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.btr-age-badge {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--btr-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  border: 4px solid var(--btr-lime);
}

.btr-age-card h2 {
  margin-bottom: 8px
}

.btr-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 8px
}

.btr-tool {
  border: 4px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(160deg, #31102a, #23091f) padding-box,
    var(--btr-stroke-grad) border-box;
  padding: 24px 22px;
  transition: transform .2s;
}

.btr-tool:hover {
  transform: translateY(-4px)
}

.btr-tool h3 {
  font-size: 15px;
  font-weight: 900;
  color: var(--btr-lime);
  margin-bottom: 10px;
  letter-spacing: .2px
}

.btr-tool p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #e7d2e2;
  margin: 0
}

.btr-signs {
  border-left: 5px solid var(--btr-lime);
  background: rgba(188, 230, 58, .06);
  border-radius: 0 18px 18px 0;
  padding: 24px 28px;
  margin-top: 6px;
}

.btr-signs p {
  margin: 0
}

.btr-help-card {
  border: 5px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(0deg, #2d3611, #1c2410) padding-box,
    linear-gradient(180deg, var(--btr-lime) 13%, #23091f 60%) border-box;
  padding: 32px 36px;
}

.btr-help-card h2 {
  color: var(--btr-lime)
}

.btr-help-card p {
  color: #e9f3c8
}

.btr-help-card strong {
  color: #fff
}

.btr-help-card a {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid rgba(188, 230, 58, .5);
  transition: border-color .2s
}

.btr-help-card a:hover {
  border-color: var(--btr-lime);
  color: #fff
}

.btr-rg-close {
  text-align: center;
  padding: 18px 0 0
}

.btr-rg-close p {
  font-size: clamp(19px, 2.8vw, 27px);
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.35;
  color: #fff
}

.btr-rg-close p em {
  font-style: normal;
  color: var(--btr-lime)
}

/* ============ FAQ ============ */
.btr-faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%
}

.btr-faq-item {
  border: 4px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(160deg, #31102a, #23091f) padding-box,
    var(--btr-stroke-grad) border-box;
  overflow: hidden;
  transition: transform .2s;
}

.btr-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .2px;
  line-height: 1.4;
}

.btr-faq-q i {
  color: var(--btr-lime);
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .3s
}

.btr-faq-item.open .btr-faq-q i {
  transform: rotate(180deg)
}

.btr-faq-a {
  display: none;
  padding: 0 24px 22px
}

.btr-faq-item.open .btr-faq-a {
  display: block
}

.btr-faq-a-inner {
  border-left: 5px solid var(--btr-lime);
  background: rgba(188, 230, 58, .06);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #e7d2e2;
}

.btr-faq-a-inner strong {
  color: var(--btr-lime);
  font-weight: 800
}

.btr-faq-a-inner a {
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid rgba(188, 230, 58, .5);
  transition: border-color .2s
}

.btr-faq-a-inner a:hover {
  border-color: var(--btr-lime);
  color: #fff
}

/* ============ DOC / PROSA (termos, páginas custom) ============ */
.btr-doc-hero {
  padding: 60px 26px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 70% at 50% -10%, rgba(196, 42, 120, .28), transparent 70%),
    var(--btr-bg);
}

.btr-doc-kicker {
  display: inline-block;
  background: var(--btr-card-border);
  color: var(--btr-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 9px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.btr-doc-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.05;
  color: #fff
}

.btr-doc-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 0 60px;
  width: 100%
}

.btr-doc-card {
  border: 5px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #31102a, #23091f) padding-box,
    var(--btr-stroke-grad) border-box;
  padding: 34px 38px;
}

.btr-doc-card,
.btr-doc-card p,
.btr-doc-card span,
.btr-doc-card li {
  font-size: 14.5px;
  line-height: 1.85;
  color: #e7d2e2
}

.btr-doc-card strong,
.btr-doc-card b {
  color: var(--btr-lime);
  font-weight: 800
}

.btr-doc-card h1,
.btr-doc-card h2,
.btr-doc-card h3,
.btr-doc-card h4 {
  color: #fff;
  font-weight: 900;
  margin: 22px 0 10px;
  line-height: 1.25
}

.btr-doc-card a {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid rgba(188, 230, 58, .5)
}

.btr-doc-card a:hover {
  border-color: var(--btr-lime);
  color: #fff
}

.btr-doc-card .link {
  color: var(--btr-lime)
}

@media (max-width:760px) {
  .btr-doc-hero {
    padding: 40px 18px 28px
  }

  .btr-doc-card {
    padding: 24px 22px;
    border-width: 4px
  }
}

/* ============ COMPAT MODAIS (Bootstrap) ============ */
/* Fallback de fundo: se o Tailwind (CDN) atrasar/não aplicar `!bg-card`, o
   conteúdo do modal não fica sem fundo. O backdrop garante o escurecimento. */
.btr-scope .modal-content,
.modal-content {
  background-color: #131924;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.modal-backdrop {
  background-color: #000
}

.modal-backdrop.show {
  opacity: .6
}

/* ============ RESPONSIVO ============ */
@media (max-width:1180px) {
  .btr-nav {
    display: none
  }
}

@media (min-width:1181px) {
  .btr-mobile-nav {
    display: none !important
  }
}

@media (max-width:1100px) {
  .btr-footer-inner {
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: 34px 46px
  }

  .btr-footer-mascot {
    grid-row: 1 / 3;
    align-self: center
  }

  .btr-footer-brand {
    grid-column: 2
  }

  .btr-footer-cols {
    grid-column: 2;
    gap: 50px
  }

  .btr-footer-legal {
    grid-column: 1 / -1
  }
}

@media (max-width:760px) {
  .btr-header {
    height: 48px !important;
    padding: 0 16px !important;
    background: rgba(240, 80, 0, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .btr-mobile-nav {
    top: 48px
  }

  .btr-logo {
    height: 22px !important
  }

  .btr-container {
    padding: 0px 16px
  }

  .btr-header-right {
    gap: 8px !important;
  }

  .btr-header-right .btr-btn-entrar {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 6px 10px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .btr-header-right .btr-btn-entrar:hover {
    color: #fff !important;
    transform: none !important;
  }

  .btr-header-right .btr-btn-cadastrar {
    background: var(--btr-lime) !important;
    color: var(--btr-dark-ink) !important;
    border: none !important;
    border-radius: 9999px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 10px rgba(0, 208, 124, 0.3) !important;
  }

  .btr-header-right .btr-btn-cadastrar:hover {
    transform: scale(1.02) !important;
    filter: brightness(1.1) !important;
  }

  /* Logged-in state modifications for header */
  .btr-balance {
    padding: 3px 8px !important;
    border-radius: 6px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: none !important;
  }

  .btr-balance small {
    font-size: 8px !important;
  }

  .btr-balance b {
    font-size: 11px !important;
  }

  .btr-balance-bonus {
    display: none !important;
    /* Hide bonus on mobile header to save space */
  }

  .btr-btn-depositar {
    background: var(--btr-lime) !important;
    color: var(--btr-dark-ink) !important;
    border-radius: 9999px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    border: none !important;
  }

  /* banner mobile: altura segue a imagem (responsivo), sem fundo/letterbox */
  .btr-hero {
    border-radius: 18px;
    aspect-ratio: auto;
    min-height: 0;
    background: none;
    margin-top: 18px
  }

  .btr-hero img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: none
  }

  .btr-hero-slide.active {
    position: relative
  }

  .btr-hero-slide:not(.active) img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover
  }

  .btr-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
    gap: 10px
  }

  .btr-game-card {
    border-width: 4px;
    border-radius: 22px
  }

  .btr-live-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .btr-sec-ico {
    height: 36px;
    width: 36px;
    font-size: 16px
  }

  .btr-sec-ico-img {
    height: 36px
  }

  .btr-section-title h2 {
    font-size: 15px
  }

  .btr-section-title p {
    font-size: 9px
  }

  .btr-ver-todos span {
    display: none
  }

  .btr-cta-all {
    width: 100%;
    text-align: center
  }

  .btr-footer {
    border-radius: 28px 28px 0 0;
    padding: 42px 18px 34px
  }

  .btr-footer-inner {
    gap: 30px;
  }

  .btr-footer-main {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .btr-footer-brand {
    align-items: center;
    text-align: center;
  }

  .btr-footer-logo {
    align-self: center;
    max-width: 240px;
  }

  .btr-footer-cols {
    gap: 40px;
  }
}

@media (max-width:820px) {
  .btr-rg-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px
  }

  .btr-rg-hero .btr-sub {
    margin: 0 auto
  }

  .btr-age-card {
    flex-direction: column;
    text-align: center;
    gap: 18px
  }
}

@media (max-width:760px) {
  .btr-about-hero {
    padding: 60px 18px 46px
  }

  .btr-about-wrap {
    padding: 20px 0 44px;
    gap: 42px
  }

  .btr-alien-card,
  .btr-serio-card,
  .btr-help-card,
  .btr-age-card {
    padding: 26px 22px;
    border-width: 4px
  }

  .btr-mascot-break img {
    width: 190px
  }

  .btr-rg-hero {
    padding: 46px 18px 36px
  }

  .btr-rg-wrap {
    padding: 18px 0 44px;
    gap: 38px
  }

  .btr-faq-q {
    padding: 17px 18px;
    font-size: 14px
  }

  .btr-faq-a {
    padding: 0 18px 18px
  }
}

@media (max-width:420px) {
  .btr-header {
    padding: 0 10px;
    gap: 8px
  }

  .btr-header-left {
    gap: 6px
  }

  .btr-logo {
    height: 28px
  }

  .btr-logo-txt {
    font-size: 20px;
    letter-spacing: -1px
  }

  .btr-header-right {
    gap: 6px
  }

  .btr-btn,
  .btr-btn-cadastrar {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0
  }

  .btr-game-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:360px) {
  .btr-header {
    padding: 0 6px;
    gap: 4px
  }

  .btr-header-left {
    gap: 4px
  }

  .btr-logo-txt {
    font-size: 16px
  }

  .btr-header-right {
    gap: 4px
  }

  .btr-btn,
  .btr-btn-cadastrar {
    padding: 6px 8px;
    font-size: 10px
  }
}

/* ============ MISSÕES & LOJA ============ */
.btr-mz-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 26px 36px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 70% at 50% -10%, rgba(196, 42, 120, .28), transparent 70%),
    var(--btr-bg);
}

.btr-mz-hero>* {
  position: relative
}

.btr-mz-hero .btr-stars {
  position: absolute;
  inset: 0
}

.btr-mz-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fff
}

.btr-mz-hero h1 em {
  font-style: normal;
  color: var(--btr-lime)
}

.btr-mz-hero .btr-sub {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  color: var(--btr-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6
}

.btr-pts-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: var(--btr-card-border);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  padding: 11px 20px;
  border-radius: 999px;
}

.btr-pts-pill .btr-pts-value {
  color: var(--btr-lime);
  font-size: 16px
}

.btr-mz-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 26px 70px
}

.btr-mgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 90px 24px
}

.btr-mz-vazio {
  text-align: center;
  color: var(--btr-muted);
  font-weight: 700;
  font-size: 15px;
  padding: 30px 0
}

.btr-mcard {
  position: relative;
  background: linear-gradient(180deg, rgba(214, 58, 106, .13) 0%, rgba(214, 58, 106, .03) 100%);
  border-radius: 30px;
  padding: 0 18px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.btr-mcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35)
}

.btr-mcard-art {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 26px;
  margin-top: -62px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .4);
  background: linear-gradient(135deg, #4a0a1e, #c42a78);
}

.btr-mcard-badge {
  align-self: flex-start;
  background: var(--btr-card-border);
  color: var(--btr-lime);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.btr-mcard-badge.lime {
  background: var(--btr-lime);
  color: #7c1240
}

.btr-mcard h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--btr-lime);
  line-height: 1.45;
  margin: 0 0 8px
}

.btr-mcard .btr-mdesc {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.55;
  margin: 0 0 18px
}

.btr-mcard-btn {
  margin-top: auto;
  width: 100%;
  background: var(--btr-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 13px 10px;
  border-radius: 16px;
  text-transform: uppercase;
  line-height: 1.3;
  transition: transform .15s, filter .15s, background .2s, color .2s;
}

.btr-mcard-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12)
}

.btr-mcard-btn.done {
  background: var(--btr-lime);
  color: #7c1240
}

.btr-mcard-btn.soldout {
  background: rgba(214, 58, 106, .16);
  color: var(--btr-accent);
  cursor: not-allowed
}

.btr-mcard-btn.soldout:hover {
  transform: none;
  filter: none
}

.btr-mcard-caption {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--btr-lime);
  margin-top: 12px;
  min-height: 14px;
}

.btr-mcard-caption.shake {
  animation: btrShake .4s ease
}

@keyframes btrShake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  50% {
    transform: translateX(5px)
  }

  75% {
    transform: translateX(-3px)
  }
}

.btr-mcard-progress {
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px
}

.btr-mcard-progress span {
  display: block;
  height: 100%;
  background: var(--btr-lime);
  border-radius: 999px;
  transition: width .4s
}

@media (max-width:760px) {
  .btr-mz-hero {
    padding: 46px 18px 28px
  }

  .btr-mz-wrap {
    padding: 70px 18px 54px
  }

  .btr-mgrid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 78px 14px
  }

  .btr-mcard {
    padding: 0 14px 18px;
    border-radius: 24px
  }

  .btr-mcard-art {
    margin-top: -52px;
    border-radius: 20px
  }

  .btr-mcard h3 {
    font-size: 12.5px
  }

  .btr-mcard .btr-mdesc {
    font-size: 11.5px
  }

  .btr-mcard-btn {
    font-size: 12.5px;
    padding: 11px 8px
  }
}

/* ============ SIDEBAR / WRAPPER LAYOUT ============ */
.btr-main-layout {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  min-height: calc(100vh - 60px);
  background: var(--btr-bg);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.btr-desktop-sidebar {
  display: none;
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;
  background: #0b0e14;
  border-right: 1px solid #1c2331;
  flex-shrink: 0 !important;
  padding: 24px 12px;
  box-sizing: border-box;
}

.btr-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btr-sidebar-divider {
  height: 1px;
  background: #1c2331;
  margin: 16px 12px;
}

.btr-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  color: #8a99ad;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}

.btr-sidebar-item:hover,
.btr-sidebar-item.active {
  background: #181e29;
  color: #ffffff;
  text-decoration: none;
}

.btr-sidebar-item i {
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.btr-sidebar-group-title {
  padding: 5px 16px 10px;
}

.btr-sidebar-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.btr-sidebar-group-header:hover {
  text-decoration: none;
}

.btr-sidebar-group-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 12px;
  margin-top: 6px;
}

.btr-sidebar-subitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px;
  border-radius: 8px;
  color: #8a99ad;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}

.btr-sidebar-subitem:hover,
.btr-sidebar-subitem.active {
  background: #181e29;
  color: #ffffff;
  text-decoration: none;
}

.btr-sidebar-subitem i {
  font-size: 13px;
  width: 18px;
  text-align: center;
}

@media (min-width: 1024px) {
  .btr-desktop-sidebar {
    display: block !important;
  }

  .btr-container {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 24px 28px !important;
  }
}

/* ============ MOBILE FLOATING BOTTOM DOCK ============ */
.btr-bottombar {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 56px;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2000;
  padding: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
  .btr-bottombar {
    display: none !important;
  }
}

.btr-bottombar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all 0.2s ease;
  text-decoration: none;
  width: 54px;
  height: 46px;
  border-radius: 12px;
}

.btr-bottombar-item i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.btr-bottombar-item span {
  font-size: 8px;
}

.btr-bottombar-item:hover,
.btr-bottombar-item.active {
  color: #fff;
  text-decoration: none;
}

.btr-bottombar-item.active {
  background: linear-gradient(rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btr-bottombar-item:active {
  transform: scale(0.94);
}

.btr-bottombar-spacer {
  width: 52px;
  flex-shrink: 0;
}

.btr-bottombar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 2100;
}

.btr-bottombar-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btr-lime);
  color: var(--btr-dark-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 208, 124, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s, filter 0.2s;
  border: none;
  cursor: pointer;
}

.btr-bottombar-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.btr-bottombar-btn:active {
  transform: scale(0.92);
}

.btr-bottombar-btn svg {
  stroke-width: 3.5px;
  width: 20px;
  height: 20px;
}

.btr-bottombar-btn-label {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 84px !important;
  }
}
/* BETACO_MOBILE_RESPONSIVE_FIX */
@media (max-width: 760px) {
  html,
  body.btr-scope {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .btr-main-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .btr-container {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .btr-container > * {
    min-width: 0;
    max-width: 100%;
  }

  .btr-hero {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1920 / 819;
    min-height: 0;
    border-radius: 14px;
  }

  .btr-hero-slide,
  .btr-hero-slide.active {
    width: 100%;
    max-width: 100%;
  }

  .btr-hero img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 819;
    object-fit: cover;
    object-position: center;
  }

  .btr-game-grid {
    width: 100%;
    min-width: 0;
  }
}

/* ================= RIFAS SHOWCASE HOMEPAGE ================= */
.btr-rifas-section {
  margin: 2rem 0;
}

.btr-rifas-carousel-wrap {
  position: relative;
  width: 100%;
}

.btr-rifas-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px 4px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.btr-rifas-grid::-webkit-scrollbar {
  display: none;
}

.btr-rifa-card {
  flex: 0 0 340px;
  max-width: 340px;
  width: 340px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

@media (max-width: 640px) {
  .btr-rifa-card {
    flex: 0 0 280px;
    max-width: 280px;
    width: 280px;
  }
}

.btr-rifa-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 45px rgba(236, 72, 153, 0.25);
  border-color: rgba(236, 72, 153, 0.4);
}

.btr-rifa-card-img-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a0820 0%, #111827 100%);
}

.btr-rifa-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

/* ZOOM IN EFFECT ON HOVER */
.btr-rifa-card:hover .btr-rifa-card-img {
  transform: scale(1.12);
  filter: brightness(1.08);
}

.btr-rifa-badge-price {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.5);
  z-index: 2;
}

.btr-rifa-badge-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.btr-rifa-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.6) 0%, rgba(10, 14, 23, 0.95) 100%);
}

.btr-rifa-card-title {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btr-rifa-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-weight: 500;
}

.btr-rifa-progress-wrap {
  margin-top: auto;
  padding-top: 6px;
}

.btr-rifa-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.btr-rifa-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ec4899 0%, #3b82f6 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.btr-rifa-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.btr-rifa-btn-buy {
  background: var(--btr-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btr-rifa-card:hover .btr-rifa-btn-buy {
  filter: brightness(1.15);
  transform: scale(1.03);
}

/* BETACO_TABLET_RESPONSIVE_FIX */
@media (min-width: 761px) and (max-width: 1023px) {
  html,
  body.btr-scope {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .btr-main-layout,
  .btr-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .btr-container {
    flex: 1 1 100%;
    margin: 0;
  }

  .btr-container > * {
    min-width: 0;
    max-width: 100%;
  }
}
