:root {
  --navy: #0d1b3e;
  --navy-2: #0a1533;
  --navy-light: #16264f;
  --yellow: #f5c518;
  --yellow-bright: #ffd83d;
  --bg: #0f0f14;
  --bg-2: #16161d;
  --bg-3: #1d1d26;
  --border: #262633;
  --text: #fff;
  --text-dim: #a0a0b0;
  --text-mute: #6a6a78;
  --red: #e63946;
  --green: #22c55e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

.bto-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid #1a2a55;
}

.bto-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bto-logo { line-height: 1; display: inline-flex; align-items: center; }

.bto-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(245, 197, 24, 0.3));
}

.bto-header-actions { display: flex; align-items: center; gap: 10px; }

.bto-btn {
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.bto-btn-login { background: #fff; color: var(--navy); }
.bto-btn-login:hover { background: #eaeaea; }

.bto-btn-register {
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
  color: var(--navy);
}
.bto-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.5);
}

.bto-flag {
  width: 32px;
  height: 22px;
  background: linear-gradient(90deg, #006847 33%, #fff 33% 66%, #ce1126 66%);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.bto-nav-main {
  background: var(--navy);
  border-bottom: 1px solid #1a2a55;
}

.bto-nav-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.bto-nav-main-inner::-webkit-scrollbar { display: none; }

.bto-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  opacity: 0.75;
  transition: all 0.2s ease;
}

.bto-nav-item:hover { opacity: 1; }
.bto-nav-item.active { opacity: 1; border-bottom-color: var(--yellow); color: var(--yellow); }
.bto-nav-icon { font-size: 1.3rem; line-height: 1; }

.bto-promo { max-width: 1280px; margin: 16px auto 0; padding: 0 20px; }

.bto-promo-top-banner {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1a2a55;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.bto-promo-top-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bto-promo-inner {
  background: linear-gradient(90deg, #0d1b3e, #0a1533 40%, #16264f);
  border: 1px solid #1a2a55;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 180px;
}

.bto-promo-image { position: relative; overflow: hidden; }
.bto-promo-image img { width: 100%; height: 100%; object-fit: cover; }

.bto-age-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bto-promo-content {
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.bto-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
  animation: promoPulseTag 2s ease-in-out infinite;
}

@keyframes promoPulseTag {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 32px rgba(34, 197, 94, 1); }
}

.bto-promo-head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.bto-promo-head-text { flex: 1; min-width: 0; }

.bto-promo-title {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.bto-promo-triple {
  font-style: normal;
  background: linear-gradient(135deg, #ffd83d, #f5c518, #ff9500);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25em;
  letter-spacing: 2px;
  font-weight: 900;
  animation: tripleShine 2.5s linear infinite;
}

@keyframes tripleShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.bto-promo-highlight {
  color: #ffd83d;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
}

.bto-promo-subtitle {
  color: #cfcfd8;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 2px;
}

.bto-promo-badge {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: badgeFloat 3s ease-in-out infinite;
}

.bto-promo-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.35) 0%, transparent 70%);
  animation: badgeGlow 2.5s ease-in-out infinite;
  z-index: 0;
}

.bto-promo-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.7))
          drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
  position: relative;
  z-index: 1;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes badgeGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.bto-promo-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.bto-btn-promo {
  padding: 13px 32px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd83d, #f5c518);
  color: #0d1b3e;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
  position: relative;
  overflow: hidden;
}

.bto-btn-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.bto-btn-promo:hover::before { left: 100%; }

.bto-btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 197, 24, 0.7);
}

.bto-promo-terms {
  color: #8a8a95;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.bto-subnav {
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.bto-subnav-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.bto-subnav-inner::-webkit-scrollbar { display: none; }

.bto-subnav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.bto-subnav-item:hover { color: var(--yellow); }
.bto-subnav-item.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.bto-subnav-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.bto-search {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.bto-search svg { width: 18px; height: 18px; }
.bto-search:hover { background: var(--navy-light); }

.bto-casino-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.bto-casino-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.bto-casino-heading::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

.bto-casino-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.bto-btn-furgoneta {
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-transform: uppercase;
  border: none;
}
.bto-btn-furgoneta:hover {
  background: var(--yellow-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
}

.bto-casino-games-block { margin-bottom: 45px; }

.bto-casino-game-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: stretch;
}

.bto-casino-game-items.clearfix::before,
.bto-casino-game-items.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.bto-casino-game-item {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
  display: flex;
}

.bto-casino-game {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.bto-casino-game:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 197, 24, 0.2);
}

.bto-casino-game-wrappimage {
  width: 100%;
  aspect-ratio: 330 / 186;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bto-casino-game-wrappimage a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.bto-casino-game-wrappimage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.bto-casino-game:hover .bto-casino-game-wrappimage img {
  transform: scale(1.04);
}

.bto-casino-game-action { padding: 8px 12px 12px; }
.bto-casino-game.no-title .bto-casino-game-action { padding: 10px 12px 12px; }

.bto-casino-game-action a.bto-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 10px;
  font-size: 0.7rem;
}

.bto-footer {
  background: var(--navy-2);
  border-top: 1px solid #1a2a55;
  padding: 30px 20px;
  text-align: center;
}

.bto-footer-inner { max-width: 1280px; margin: 0 auto; }
.bto-logo-footer { margin-bottom: 14px; justify-content: center; }
.bto-logo-footer .bto-logo-img { height: 56px; margin: 0 auto; }

.bto-footer-legal {
  color: var(--text-mute);
  font-size: 0.78rem;
  max-width: 620px;
  margin: 0 auto 14px;
}

.bto-footer-badges { display: flex; gap: 10px; justify-content: center; }

.bto-badge {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.bto-badge-18 { background: var(--red); color: #fff; border-color: var(--red); }

.bto-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.bto-modal-overlay.open { display: flex; }

.bto-modal {
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
  border: 1px solid #1a2a55;
  border-radius: 10px;
  padding: 34px 30px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  position: relative;
  animation: modalIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.bto-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}
.bto-modal-close:hover { background: rgba(255, 255, 255, 0.1); }

.bto-modal h2 {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #fff;
  text-transform: uppercase;
}

.bto-modal-sub { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 22px; }

.bto-modal-form { display: flex; flex-direction: column; gap: 14px; }

.bto-field { display: flex; flex-direction: column; gap: 6px; }

.bto-field label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}

.bto-field input[type="text"],
.bto-field input[type="email"],
.bto-field input[type="password"] {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #1a2a55;
  border-radius: 6px;
  padding: 11px 14px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
  width: 100%;
}
.bto-field input:focus { border-color: var(--yellow); }

.bto-field-hint {
  color: var(--text-mute);
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.bto-field.bto-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.bto-field.bto-checkbox input { margin-top: 3px; accent-color: var(--yellow); width: auto; }

.bto-field.bto-checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.5;
}

.bto-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bto-password-wrap input {
  padding-right: 44px !important;
}

.bto-eye {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-mute);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bto-eye:hover {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
}

.bto-eye svg { width: 18px; height: 18px; }

.bto-eye .eye-closed { display: none; }
.bto-eye.visible .eye-open { display: none; }
.bto-eye.visible .eye-closed { display: block; }

.bto-btn-primary {
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.25);
}
.bto-btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.5);
}

.bto-btn-block { width: 100%; }

.bto-btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
  opacity: 1 !important;
}

.bto-btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(13, 27, 62, 0.25);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.bto-modal-promo { text-align: center; }

.bto-promo-modal-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: badgeFloat 3s ease-in-out infinite;
}

.bto-promo-modal-badge::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.4) 0%, transparent 70%);
  animation: badgeGlow 2.5s ease-in-out infinite;
  z-index: 0;
}

.bto-promo-modal-badge .bto-promo-badge-img {
  position: relative;
  z-index: 1;
}

.bto-promo-modal-badge.small {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.bto-modal-promo h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd83d, #f5c518);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bto-promo-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.bto-promo-modal-actions .bto-btn {
  padding: 14px 22px;
  font-size: 0.85rem;
}

.bto-promo-modal-terms {
  color: #8a8a95;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.bto-modal-deposit {
  max-width: 460px;
}

.bto-deposit-header {
  text-align: center;
  margin-bottom: 18px;
}

.bto-deposit-header h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.bto-deposit-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffd83d, #f5c518);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bto-deposit-input {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--yellow);
  border-radius: 8px;
  padding: 0 16px;
  transition: all 0.2s ease;
}

.bto-deposit-input:focus-within {
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.2);
}

.bto-deposit-input span {
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.4rem;
  margin-right: 8px;
}

.bto-deposit-input input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 12px 0;
  width: 100%;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
}

.bto-deposit-input input[type="number"] {
  appearance: textfield;
  -webkit-appearance: textfield;
}
.bto-deposit-input input[type="number"]::-webkit-outer-spin-button,
.bto-deposit-input input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.bto-deposit-conversion,
.bto-spei-summary {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #1a2a55;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bto-conversion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.bto-conversion-row span {
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.bto-conversion-row strong {
  font-size: 1.15rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.bto-conversion-row.highlight {
  padding-top: 10px;
  border-top: 1px dashed #1a2a55;
}

.bto-conversion-row.highlight strong {
  color: var(--yellow-bright);
  font-size: 1.5rem;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.6);
}

.bto-clabe-box {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 4px;
}

.bto-clabe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bto-clabe-header span {
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 800;
}

.bto-copy-btn {
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.4);
  color: var(--yellow);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bto-copy-btn:hover {
  background: var(--yellow);
  color: var(--navy);
}

.bto-copy-btn.copied {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.bto-copy-btn svg { width: 14px; height: 14px; }

.bto-clabe-value {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
  margin-bottom: 12px;
  text-align: center;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.bto-clabe-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  font-size: 0.75rem;
}

.bto-clabe-info div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.bto-clabe-info span { color: var(--text-mute); }
.bto-clabe-info strong { color: var(--text-dim); font-weight: 700; }

.bto-spei-warning {
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 12px 14px;
  color: #ffb8b8;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 14px;
}

.bto-spei-warning strong { color: #fff; }

.bto-deposit-feedback {
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 0;
  padding: 0;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

.bto-deposit-feedback:empty { display: none; }

.bto-deposit-feedback.success {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  padding: 10px 14px;
  animation: feedbackPulse 0.5s ease;
}

.bto-deposit-feedback.error {
  color: #f87171;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.4);
  padding: 10px 14px;
}

@keyframes feedbackPulse {
  0% { transform: scale(0.95); opacity: 0; }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1100px) {
  .bto-casino-game-item {
    flex: 0 0 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
  }
}

@media (max-width: 900px) {
  .bto-promo-inner { grid-template-columns: 1fr; }
  .bto-promo-image { height: 160px; }
  .bto-promo-badge { width: 90px; height: 90px; }
  .bto-logo-img { height: 60px; }
}

@media (max-width: 780px) {
  .bto-casino-game-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 600px) {
  .bto-header-inner { padding: 12px 14px; }
  .bto-logo-img { height: 52px; }
  .bto-logo-footer .bto-logo-img { height: 44px; }
  .bto-btn { padding: 8px 14px; font-size: 0.7rem; }
  .bto-flag { display: none; }
  .bto-nav-item { padding: 10px 12px; }
  .bto-nav-item span:last-child { font-size: 0.55rem; }
  .bto-casino-title { font-size: 0.95rem; }
  .bto-btn-furgoneta { padding: 8px 14px; font-size: 0.65rem; }
  .bto-casino-game-items { gap: 10px; }
  .bto-casino-game-item {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .bto-promo-top-banner { margin-bottom: 8px; border-radius: 6px; }

  .bto-promo-content { padding: 22px 20px; gap: 8px; }
  .bto-promo-title { font-size: 1.15rem; }
  .bto-promo-triple { font-size: 1.25em; }
  .bto-promo-subtitle { font-size: 0.8rem; }
  .bto-promo-head { gap: 12px; }
  .bto-promo-badge { width: 72px; height: 72px; }
  .bto-promo-badge::before { inset: -5px; }
  .bto-promo-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .bto-btn-promo { width: 100%; text-align: center; }
  .bto-promo-terms { text-align: center; }

  .bto-promo-modal-badge { width: 80px; height: 80px; }

  .bto-modal { padding: 26px 20px; }
  .bto-deposit-header h2 { font-size: 1.2rem; }
  .bto-deposit-input input { font-size: 1.25rem; }
  .bto-conversion-row.highlight strong { font-size: 1.3rem; }
  .bto-clabe-value { font-size: 0.95rem; letter-spacing: 1px; }
}