*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #282828;
  --c-header: #005541;
  --c-btn-login: #015442;
  --c-btn-reg: #f2eb3a;
  --c-btn-reg-text: #000000;
  --c-text: #e8e8e8;
  --c-text-muted: #a0a0a0;
  --c-border: #3d3d3d;
  --c-card: #2f2f2f;
  --c-card2: #323232;
  --c-accent: #00c878;
  --c-gold: #f2eb3a;
  --c-green-light: #00a86b;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
  padding-bottom: 72px;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--c-gold);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.b3-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.b3-section {
  padding: 52px 0;
}
.b3-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
}
.b3-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--c-gold);
  margin-top: 8px;
  border-radius: 2px;
}

.b3-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.b3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
}
.b3-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.b3-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.b3-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.b3-nav a {
  color: #e0f0eb;
  font-size: 0.87rem;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
}
.b3-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.b3-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.b3-online {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a8d5c4;
  font-size: 0.78rem;
  margin-right: 8px;
}
.b3-online-dot {
  width: 8px;
  height: 8px;
  background: #00ff99;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.b3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.b3-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.b3-btn-login {
  background: var(--c-btn-login);
  color: #e0f0eb;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.b3-btn-login:hover {
  filter: brightness(1.2);
  color: #fff;
}
.b3-btn-reg {
  background: #f2eb3a;
  color: #000 !important;
  font-weight: 800;
  -webkit-text-fill-color: #000;
  text-shadow: none;
}
.b3-btn-reg:hover {
  filter: brightness(1.1);
  color: #000 !important;
  -webkit-text-fill-color: #000;
}
.b3-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.b3-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.b3-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.b3-burger.active span:nth-child(2) {
  opacity: 0;
}
.b3-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.b3-mobile-menu {
  display: none;
  background: var(--c-header);
  padding: 16px;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.b3-mobile-menu.open {
  display: flex;
}
.b3-mobile-menu a {
  color: #e0f0eb;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.b3-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.b3-mobile-menu-btns {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.b3-mobile-menu-btns .b3-btn {
  flex: 1;
  text-align: center;
}

.b3-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.b3-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/betban.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}
.b3-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 40, 28, 0.85) 0%,
    rgba(0, 40, 28, 0.45) 60%,
    transparent 100%
  );
}
.b3-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.b3-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.b3-hero h1 span {
  color: var(--c-gold);
}
.b3-hero p {
  font-size: 1.1rem;
  color: #cce8de;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.b3-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.b3-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.b3-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
}
.b3-table th,
.b3-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.b3-table th {
  background: #1f3d33;
  color: #b8e0d2;
  font-weight: 600;
  width: 40%;
  white-space: nowrap;
}
.b3-table td {
  color: var(--c-text);
}
.b3-table tr:last-child th,
.b3-table tr:last-child td {
  border-bottom: none;
}
.b3-table tr:hover td,
.b3-table tr:hover th {
  background: rgba(0, 85, 65, 0.15);
}
.b3-rating-star {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.b3-winners-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.b3-winner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-card);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  border: 1px solid var(--c-border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.b3-winner-item:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 14px rgba(0, 200, 120, 0.15);
}
.b3-winner-rank {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.b3-winner-rank-1 {
  background: var(--c-gold);
  color: #111;
}
.b3-winner-rank-2 {
  background: #b0b0b0;
  color: #111;
}
.b3-winner-rank-3 {
  background: #cd7f32;
  color: #fff;
}
.b3-winner-rank-n {
  background: #1f3d33;
  color: #8cc;
  font-size: 0.8rem;
}
.b3-winner-name {
  flex: 1;
  font-size: 0.9rem;
  color: #e0e0e0;
}
.b3-winner-amount {
  font-weight: 700;
  color: var(--c-accent);
  font-size: 0.95rem;
  white-space: nowrap;
}

.b3-tournaments-slider {
  position: relative;
  overflow: hidden;
}

.b3-tournaments-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.b3-tournament-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 360px;
  background: #2f2f2f;
  border-radius: 10px;
  border: 1px solid #3d3d3d;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.b3-tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 200, 120, 0.18);
}

.b3-tournament-badge {
  background: #005541;
  color: #a8e0cc;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

.b3-tournament-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.b3-tournament-desc {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.5;
}

.b3-tournament-prize {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f2eb3a;
  margin: 6px 0;
}

.b3-tournament-prize small {
  font-size: 0.8rem;
  color: #a0a0a0;
  font-weight: 400;
  display: block;
  margin-top: 3px;
}

.b3-timer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.b3-timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1f3d33;
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 52px;
}

.b3-timer-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.b3-timer-lbl {
  font-size: 0.7rem;
  color: #a0a0a0;
  margin-top: 3px;
  text-transform: lowercase;
}

.b3-timer-sep {
  color: #a0a0a0;
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 4px;
}

.b3-tournament-card .b3-btn,
.b3-tournament-card a.b3-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
}

.b3-tournament-card .b3-btn-reg,
.b3-tournament-card a.b3-btn-reg {
  background: #f2eb3a !important;
  color: #000000 !important;
  font-weight: 800 !important;
  -webkit-text-fill-color: #000000 !important;
  text-shadow: none !important;
}

.b3-tournaments-nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.b3-tournaments-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d3d3d;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.b3-tournaments-dot.active {
  background: #f2eb3a;
  transform: scale(1.3);
}

.b3-app-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.b3-app-table-wrap {
  flex: 1;
  min-width: 280px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.b3-app-btns {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.b3-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
  color: var(--c-text);
}
.b3-app-btn:hover {
  background: #1f3d33;
  transform: translateY(-2px);
  color: #fff;
}
.b3-app-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.b3-app-btn-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--c-text-muted);
}
.b3-app-btn-text strong {
  font-size: 0.95rem;
}

.b3-demo-frame-wrap {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #111;
  aspect-ratio: 16/9;
  max-height: 520px;
}
.b3-demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.b3-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--c-border);
}
.b3-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1f3d33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-gold);
  flex-shrink: 0;
}
.b3-author-info small {
  color: var(--c-text-muted);
  font-size: 0.78rem;
}
.b3-author-info strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.b3-author-info a {
  font-size: 0.78rem;
  color: var(--c-accent);
}
.b3-content-body {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid var(--c-border);
}
.b3-content-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
  line-height: 1.3;
}
.b3-content-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c8e8dc;
  margin: 18px 0 8px;
}
.b3-content-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #a8d5c4;
  margin: 14px 0 6px;
}
.b3-content-body p {
  margin-bottom: 14px;
  line-height: 1.65;
  color: var(--c-text);
}
.b3-content-body ul,
.b3-content-body ol {
  margin: 10px 0 16px 22px;
  line-height: 1.7;
  color: var(--c-text);
}
.b3-content-body li {
  margin-bottom: 5px;
}
.b3-content-body a {
  color: var(--c-accent);
}
.b3-content-body a:hover {
  color: var(--c-gold);
}
.b3-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.b3-content-body table th,
.b3-content-body table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.b3-content-body table th {
  background: #1f3d33;
  color: #b8e0d2;
}
.b3-content-body table td {
  background: var(--c-card2);
}
.b3-content-body blockquote {
  border-left: 3px solid var(--c-gold);
  padding-left: 16px;
  margin: 16px 0;
  color: #b0b0b0;
  font-style: italic;
}
.b3-content-body strong,
.b3-content-body b {
  color: #fff;
}
.b3-content-body em,
.b3-content-body i {
  color: #ccc;
}
.b3-content-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}

.b3-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b3-faq-item {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.b3-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #e8e8e8;
  transition: background 0.2s;
  gap: 12px;
}
.b3-faq-q:hover {
  background: #1f3d33;
}
.b3-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1f3d33;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    background 0.3s;
}
.b3-faq-item.open .b3-faq-icon {
  transform: rotate(45deg);
  background: var(--c-gold);
}
.b3-faq-icon svg {
  width: 12px;
  height: 12px;
  fill: #a8d5c4;
}
.b3-faq-item.open .b3-faq-icon svg {
  fill: #111;
}
.b3-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}
.b3-faq-item.open .b3-faq-a {
  max-height: 400px;
  padding-bottom: 16px;
}
.b3-faq-a-inner {
  padding: 0 20px;
  color: var(--c-text-muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.b3-footer {
  background: var(--c-header);
  padding: 40px 0 24px;
  margin-top: 16px;
}
.b3-footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.b3-footer-logo {
  flex-shrink: 0;
}
.b3-footer-logo img {
  height: 40px;
}
.b3-footer-nav {
  flex: 1;
  min-width: 200px;
}
.b3-footer-nav h4 {
  color: #a8d5c4;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.b3-footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.b3-footer-nav a {
  color: #cce8de;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.b3-footer-nav a:hover {
  color: #fff;
}
.b3-footer-brands {
  flex: 1;
  min-width: 260px;
}
.b3-footer-brands h4 {
  color: #a8d5c4;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.b3-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.b3-brand-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.77rem;
  color: #cce8de;
  font-weight: 600;
}
.b3-footer-bottom {
  margin-top: 22px;
  text-align: center;
  color: #7aa090;
  font-size: 0.78rem;
  line-height: 1.7;
}
.b3-footer-bottom a {
  color: #7aa090;
}
.b3-footer-bottom a:hover {
  color: #a8d5c4;
}

.b3-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #014434 0%, #005541 60%, #003d2e 100%);
  border-top: 2px solid var(--c-gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.b3-widget-text {
  color: #e0f0e8;
  font-size: 0.88rem;
}
.b3-widget-text strong {
  color: var(--c-gold);
}
.b3-widget a.b3-btn-widget {
  background: var(--c-btn-reg);
  color: var(--c-btn-reg-text);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    filter 0.2s,
    transform 0.15s;
}
.b3-widget a.b3-btn-widget:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.b3-widget-close {
  background: transparent;
  border: none;
  color: #a8d5c4;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  margin-left: 8px;
  transition: color 0.2s;
}
.b3-widget-close:hover {
  color: #fff;
}

.wpcf7-not-found,
.wp-caption-text,
.wp-block-spacer,
.woocommerce-placeholder,
.elementor-invisible,
.screen-reader-text-wp,
.widget_recent_entries,
.wp-post-image-meta {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
#wpadminbar,
#wpfooter,
.update-nag {
  display: none !important;
}
.elementor-widget-wrap {
  all: unset;
}
.entry-content-page,
.post-thumbnail-wrap,
.site-branding-inner {
  display: none;
  visibility: hidden;
}

.b3-fade {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.b3-fade-js {
  opacity: 0;
  transform: translateY(18px);
}
.b3-fade-js.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .b3-tournaments-track {
    flex-direction: column;
    gap: 0;
  }

  .b3-tournament-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 16px;
    gap: 10px;
  }

  .b3-tournament-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .b3-tournament-title {
    font-size: 1rem;
  }

  .b3-tournament-desc {
    font-size: 0.82rem;
  }

  .b3-tournament-prize {
    font-size: 1.1rem;
  }

  .b3-timer-block {
    padding: 6px 10px;
    min-width: 45px;
  }

  .b3-timer-val {
    font-size: 1.1rem;
  }

  .b3-timer-lbl {
    font-size: 0.65rem;
  }

  .b3-tournament-card .b3-btn,
  .b3-tournament-card a.b3-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .b3-tournaments-nav {
    display: flex;
  }

  .b3-app-inner {
    flex-direction: column;
  }
  .b3-app-btns {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .b3-nav {
    display: none;
  }
  .b3-header-right {
    display: none;
  }
  .b3-burger {
    display: flex;
  }
  .b3-hero h1 {
    font-size: 1.65rem;
  }
  .b3-hero p {
    font-size: 0.95rem;
  }
  .b3-footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .b3-tournament-card {
    padding: 14px;
    gap: 8px;
  }

  .b3-tournament-badge {
    font-size: 0.7rem;
  }

  .b3-tournament-title {
    font-size: 0.95rem;
  }

  .b3-tournament-desc {
    font-size: 0.78rem;
  }

  .b3-tournament-prize {
    font-size: 1rem;
  }

  .b3-timer-block {
    padding: 5px 8px;
    min-width: 40px;
  }

  .b3-timer-val {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .b3-header-inner {
    gap: 8px;
    padding: 0 10px;
  }
  .b3-online {
    display: none;
  }
  .b3-widget {
    padding: 10px 10px;
  }
  .b3-widget-text {
    font-size: 0.8rem;
  }
  .b3-content-body {
    padding: 18px 14px;
  }
  .b3-table th,
  .b3-table td {
    padding: 10px 11px;
  }

  .b3-tournament-card {
    padding: 12px;
    gap: 7px;
  }

  .b3-tournament-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .b3-tournament-title {
    font-size: 0.88rem;
  }

  .b3-tournament-desc {
    font-size: 0.75rem;
  }

  .b3-tournament-prize {
    font-size: 0.95rem;
  }

  .b3-timer {
    gap: 8px;
  }

  .b3-timer-block {
    padding: 4px 7px;
    min-width: 36px;
  }

  .b3-timer-val {
    font-size: 0.9rem;
  }

  .b3-timer-lbl {
    font-size: 0.55rem;
  }

  .b3-timer-sep {
    font-size: 0.9rem;
  }

  .b3-tournament-card .b3-btn,
  .b3-tournament-card a.b3-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}
