.bb-home-block {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-inline-start: 3px solid var(--bb-accent-color, rgba(245, 197, 24, 0.45));
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  overflow: hidden;
}

.bb-home-head {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.14));
}

.bb-home-title {
  margin: 0;
  font-size: 1rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bb-home-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  color: #f5c518;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.bb-home-title-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.bb-home-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 0;
  min-height: 420px;
}

.bb-home-list {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.bb-home-list-item {
  width: 100%;
  text-align: right;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bb-home-list-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bb-home-list-item.is-active {
  border-color: rgba(245, 197, 24, 0.45);
  background: rgba(245, 197, 24, 0.12);
}

.bb-home-list-item-name {
  font-size: 0.92rem;
  font-weight: 600;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bb-home-list-item-name-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bb-home-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: bb-live-pulse 1.4s ease-out infinite;
  flex-shrink: 0;
}

@keyframes bb-live-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.bb-home-list-item--eliminated .bb-home-list-item-name,
.bb-home-list-item--eliminated .bb-home-list-item-name-text {
  color: rgba(255, 255, 255, 0.58);
}

.bb-home-list-item--eliminated {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(148, 163, 184, 0.08);
}

.bb-home-list-item-status {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 8px;
}

.bb-home-list-item-status--participant {
  color: #86efac;
  background: rgba(34, 197, 94, 0.18);
}

.bb-home-list-item-status--nominated {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.18);
}

.bb-home-list-item-status--eliminated {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.18);
}

.bb-home-profile {
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.bb-home-profile--single {
  align-items: stretch;
  justify-content: flex-start;
  text-align: right;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bb-home-profile-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.bb-home-profile-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-home-profile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bb-home-profile-image-wrap {
  position: relative;
  width: 144px;
  height: 144px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.bb-home-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.bb-home-profile--single:hover .bb-home-profile-image {
  transform: scale(1.03);
}

.bb-home-profile-image--eliminated {
  filter: grayscale(1) contrast(0.9);
}

.bb-home-profile-image--nominated {
  filter: saturate(1.05) contrast(1.02);
}

.bb-home-profile-image-wrap--eliminated {
  border-color: rgba(148, 163, 184, 0.42);
}

.bb-home-profile-image-wrap--nominated {
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.16);
}

.bb-home-profile-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #f5c518;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.12), rgba(245, 197, 24, 0.06));
}

.bb-home-profile-name {
  margin: 0;
  font-size: 1.46rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.bb-home-profile-name--participant::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
  animation: bb-live-pulse 1.4s ease-out infinite;
}

.bb-home-profile-name--nominated::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
}

.bb-home-profile-name--eliminated {
  color: rgba(255, 255, 255, 0.58);
}

.bb-home-profile--nominated .bb-home-profile-description {
  color: rgba(255, 248, 220, 0.9);
}

.bb-home-profile--eliminated .bb-home-profile-description {
  color: rgba(255, 255, 255, 0.72);
}

.bb-home-profile-status {
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 11px;
  border: 1px solid transparent;
  letter-spacing: 0.02em;
}

.bb-home-profile-status--participant {
  color: #86efac;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.35);
}

.bb-home-profile-status--nominated {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
}

.bb-home-profile-status--eliminated {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.3);
}

.bb-home-profile-description {
  margin: 0;
  max-width: 720px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  white-space: pre-line;
  font-size: 0.96rem;
}

.bb-home-profile-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
}

/* שידור חי LIVE */
.bb-live-wrap {
  padding: 20px 0;
  min-height: 200px;
}

.bb-live-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  padding: 24px;
  text-align: center;
}

.bb-live-player-outer {
  max-width: 680px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.25));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bb-live-player-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.bb-live-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bb-home-placeholder,
.bb-home-dashboard {
  min-height: 340px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.bb-home-dashboard-hero {
  flex-shrink: 0;
}

.bb-home-placeholder-title {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.bb-home-placeholder-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.bb-home-dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bb-home-dashboard-main-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* מצב עונה / שלב פתיחה מוצג רק על התמונה (תג) – לא מעליה */
.bb-home-dashboard-overview {
  display: none;
}

.bb-home-dashboard-overview-label {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.bb-home-dashboard-overview-value {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.bb-home-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bb-home-dashboard-hero {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.bb-home-dashboard-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
}

/* תג מצב עונה על התמונה – מותאם גם למובייל */
.bb-home-dashboard-hero-season-badge {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  min-width: 0;
  max-width: 42%;
  z-index: 2;
}

.bb-home-dashboard-hero-season-label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.bb-home-dashboard-hero-season-value {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.bb-home-dashboard-hero-overlay {
  position: absolute;
  inset-inline-start: 12px;
  inset-block-end: 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  padding: 6px 8px;
}

.bb-home-dashboard-hero-overlay-title {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.bb-home-dashboard-hero-overlay-meta {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
}

.bb-home-dashboard-hero-overlay-stats {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.bb-home-dashboard-hero-overlay-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 5px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bb-home-dashboard-hero-overlay-stat-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.58rem;
  line-height: 1.2;
}

.bb-home-dashboard-hero-overlay-stat-value {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.bb-home-dashboard-hero-overlay-stat--participant .bb-home-dashboard-hero-overlay-stat-value {
  color: #86efac;
}

.bb-home-dashboard-hero-overlay-stat--nominated .bb-home-dashboard-hero-overlay-stat-value {
  color: #fcd34d;
}

.bb-home-dashboard-hero-overlay-stat--eliminated .bb-home-dashboard-hero-overlay-stat-value {
  color: #fca5a5;
}

.bb-home-dashboard-description {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  padding: 14px;
}

.bb-home-dashboard-nominees {
  position: relative;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(28, 18, 8, 0.96), rgba(16, 12, 8, 0.98));
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.bb-home-dashboard-nominees::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.bb-home-dashboard-nominees-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.bb-home-dashboard-nominees-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 560px;
}

.bb-home-dashboard-nominees-title {
  margin: 0;
  color: #fff7ed;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.bb-home-dashboard-nominees-subtitle {
  margin: 0;
  color: rgba(255, 244, 230, 0.78);
  font-size: 0.77rem;
  line-height: 1.35;
}

.bb-home-dashboard-nominees-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.bb-home-dashboard-nominees-side-caption {
  display: none;
}

.bb-home-dashboard-nominees-side-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: auto;
}

.bb-home-dashboard-nominees-count {
  display: inline-block;
  min-width: 0;
  color: #fff7ed;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.bb-home-dashboard-nominees-side-label {
  color: rgba(255, 238, 220, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bb-home-dashboard-nominees-shell {
  position: relative;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bb-home-dashboard-nominees-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.35) rgba(0, 0, 0, 0.18);
  padding-bottom: 4px;
}

.bb-home-dashboard-nominees-scroll::-webkit-scrollbar {
  height: 8px;
}

.bb-home-dashboard-nominees-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.bb-home-dashboard-nominees-scroll::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.35);
  border-radius: 999px;
}

.bb-home-dashboard-nominees-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-width: max-content;
}

.bb-home-dashboard-nominee-card {
  width: 148px;
  min-width: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 4px 2px 2px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

a.bb-home-dashboard-nominee-card {
  cursor: pointer;
}

a.bb-home-dashboard-nominee-card:hover {
  transform: translateY(-2px);
}

a.bb-home-dashboard-nominee-card:hover .bb-home-dashboard-nominee-name {
  color: #ffffff;
}

.bb-home-dashboard-nominee-image-wrap {
  width: 98px;
  height: 98px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.bb-home-dashboard-nominee-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-home-dashboard-nominee-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd34d;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.06));
}

.bb-home-dashboard-nominee-name {
  margin: 0;
  color: #fff7ed;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

.bb-home-dashboard-nominees-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.bb-home-dashboard-description-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.bb-home-dashboard-description-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.75;
}

.bb-home-timeline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 16px;
}

.bb-home-timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-home-timeline-title {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.bb-home-timeline-count {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.12);
  color: #f5c518;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  white-space: nowrap;
}

.bb-home-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-home-timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, background 0.2s;
}

.bb-home-timeline-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
}

.bb-home-timeline-item--video {
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.15);
}

.bb-home-timeline-item--video:hover {
  border-color: rgba(245, 197, 24, 0.5);
}

.bb-home-timeline-card {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  gap: 6px;
}

.bb-home-timeline-card-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bb-home-timeline-card-inner--has-image {
  flex-wrap: wrap;
}

.bb-home-timeline-card-text {
  flex: 1;
  min-width: 0;
}

.bb-home-timeline-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-home-timeline-time {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.03em;
}

.bb-home-timeline-item-title {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.bb-home-timeline-item-content {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  line-height: 1.65;
  word-wrap: break-word;
}

.bb-home-timeline-item-image-wrap {
  flex-shrink: 0;
  width: 100px;
  min-height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.bb-home-timeline-item-image {
  width: 100%;
  height: 100%;
  min-height: 70px;
  max-height: 120px;
  object-fit: cover;
  display: block;
}

.bb-home-timeline-tags {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.bb-home-timeline-tag {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
}

/* מיכל טיימליין: ברירת מחדל (ללא טיקר) */
.bb-home-timeline-scroll {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-inline-end: 2px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) rgba(0, 0, 0, 0.2);
}

.bb-home-timeline-scroll::-webkit-scrollbar {
  width: 8px;
}

.bb-home-timeline-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin: 4px 0;
}

.bb-home-timeline-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.bb-home-timeline-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* טיקר חדשות: גובה מוגבל + גלילה אוטומטית למעלה (המסלול מוגדר ב־bb-timeline-ticker.js) */
.bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
  max-height: min(220px, 36vh);
  overflow: hidden;
  padding-inline-end: 0;
  position: relative;
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

.bb-home-timeline-scroll.bb-home-timeline-scroll--ticker:hover .bb-home-timeline-ticker-track {
  animation-play-state: paused;
}

.bb-home-timeline-ticker-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: bbTimelineTickerUp linear infinite;
  will-change: transform;
}

@keyframes bbTimelineTickerUp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, calc(-1 * var(--bb-ticker-shift, 400px)), 0);
  }
}

/* פריט בודד / מצב ללא אנימציה: גלילה רגילה */
.bb-home-timeline-scroll.bb-home-timeline-scroll--ticker.bb-home-timeline-scroll--ticker-static,
.bb-home-timeline-scroll.bb-home-timeline-scroll--ticker.bb-home-timeline-scroll--ticker-short {
  mask-image: none;
  -webkit-mask-image: none;
  overflow-y: auto;
  max-height: min(200px, 34vh);
}

.bb-home-timeline-scroll.bb-home-timeline-scroll--ticker.bb-home-timeline-scroll--ticker-static .bb-home-timeline-ticker-track,
.bb-home-timeline-scroll.bb-home-timeline-scroll--ticker.bb-home-timeline-scroll--ticker-short .bb-home-timeline-ticker-track {
  animation: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-y: auto;
    max-height: min(220px, 40vh);
  }

  .bb-home-timeline-ticker-track {
    animation: none !important;
    will-change: auto;
  }
}

/* מובייל: טיימליין/טיקר — גובה נוח יותר לקריאה, מסכה רכה, טקסט מעט גדול יותר */
@media (max-width: 768px) {
  .bb-home-timeline.bb-home-dashboard .bb-home-timeline-head,
  .bb-home-timeline .bb-home-timeline-head {
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
    max-height: min(280px, 52vh) !important;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 93%, transparent 100%);
    touch-action: pan-y;
  }

  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker.bb-home-timeline-scroll--ticker-static {
    max-height: min(260px, 50vh) !important;
    -webkit-overflow-scrolling: touch;
  }

  .bb-home-timeline-scroll--ticker .bb-home-timeline-item-content {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .bb-home-timeline-scroll--ticker .bb-home-timeline-item-title {
    font-size: 0.93rem;
  }

  .bb-home-timeline-scroll--ticker .bb-home-timeline-time {
    font-size: 0.74rem;
  }

  .bb-home-timeline-scroll--ticker .bb-home-timeline-card {
    padding: 12px 10px;
  }
}

@media (max-width: 420px) {
  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
    max-height: min(300px, 55vh) !important;
  }
}

.bb-home-timeline-empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  padding: 12px;
}

.bb-home-dashboard-stat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bb-home-dashboard-stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.bb-home-dashboard-stat-value {
  color: #f5c518;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .bb-home-layout {
    grid-template-columns: 1fr;
  }

  .bb-home-list {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 250px;
  }

  .bb-home-profile {
    padding: 16px;
  }

  .bb-home-profile-main {
    flex-direction: column;
    align-items: center;
  }

  .bb-home-profile--single {
    text-align: center;
  }

  .bb-home-profile-meta {
    flex-direction: column;
    align-items: center;
  }

  .bb-home-dashboard-top {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .bb-home-dashboard-main-title {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    flex: 1;
    min-width: 0;
  }

  .bb-home-dashboard-hero {
    min-height: 160px;
  }

  .bb-home-dashboard-hero-image {
    width: 100%;
    height: auto;
    max-height: 220px;
    min-height: 140px;
    object-fit: cover;
    vertical-align: middle;
  }

  .bb-home-dashboard-hero-season-badge {
    top: 8px;
    inset-inline-end: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    max-width: 50%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .bb-home-dashboard-hero-season-label {
    font-size: 0.6rem;
  }

  .bb-home-dashboard-hero-season-value {
    font-size: 0.75rem;
    font-weight: 800;
  }

  .bb-home-dashboard-hero-overlay {
    inset-inline: 6px;
    inset-block-end: 6px;
    padding: 3px 5px;
    gap: 1px;
    border-radius: 6px;
    max-width: 42%;
  }

  .bb-home-dashboard-hero-overlay-title {
    font-size: 0.52rem;
  }

  .bb-home-dashboard-hero-overlay-meta {
    font-size: 0.48rem;
  }

  .bb-home-dashboard-hero-overlay-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    margin-top: 2px;
  }

  .bb-home-dashboard-hero-overlay-stat {
    padding: 2px 3px;
  }

  .bb-home-dashboard-hero-overlay-stat-label {
    font-size: 0.44rem;
  }

  .bb-home-dashboard-hero-overlay-stat-value {
    font-size: 0.56rem;
  }

  .bb-home-timeline-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-home-timeline-scroll:not(.bb-home-timeline-scroll--ticker) {
    max-height: 280px;
  }

  /* טאבלט/מובייל רחב: גובה טיקר נוח (עד 768px יש עדכון מפורט יותר עם !important) */
  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
    max-height: min(250px, 46vh);
  }

  .bb-live-player-outer {
    max-width: 100%;
    padding: 8px;
  }

  .bb-home-timeline-card-inner--has-image {
    flex-direction: column;
  }

  .bb-home-timeline-item-image-wrap {
    width: 100%;
    max-height: 180px;
  }

  .bb-home-timeline-item-image {
    max-height: 180px;
  }
}

@media (max-width: 420px) {
  .bb-home-dashboard-hero-overlay {
    max-width: 34%;
    padding: 2px 3px;
    inset-inline: 4px;
    inset-block-end: 4px;
  }

  .bb-home-dashboard-hero-overlay-title {
    font-size: 0.42rem;
  }

  .bb-home-dashboard-hero-overlay-meta {
    font-size: 0.38rem;
  }

  .bb-home-dashboard-hero-overlay-stat-label {
    font-size: 0.34rem;
  }

  .bb-home-dashboard-hero-overlay-stat-value {
    font-size: 0.44rem;
  }

  .bb-home-dashboard-hero-overlay-stat {
    padding: 2px;
  }
}

/* --- דף הימורים (חלק ב) – עיצוב מקצועי + מובייל --- */
.bb-bets-page {
  padding: 20px 22px;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.bb-bets-page-header {
  margin-bottom: 24px;
}

.bb-bets-page-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.bb-bets-page-desc {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.bb-bets-placeholder {
  margin-top: 0;
}

.bb-bets-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  width: 100%;
}

.bb-bets-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-inline-start: 4px solid var(--bb-accent-color, rgba(245, 197, 24, 0.5));
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.bb-bets-card-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-bets-card-question {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.bb-bets-card-closes {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bb-bets-card-closes-icon {
  font-size: 0.9em;
  opacity: 0.9;
}

.bb-bets-card-options {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(120px, 100%), 1fr));
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.bb-bets-card-option-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.bb-bets-card-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  min-width: 0;
  width: 100%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bb-bets-card-option--actionable {
  cursor: pointer;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.bb-bets-card-option--actionable:focus-visible {
  outline: 2px solid var(--bb-accent-color, rgba(245, 197, 24, 0.85));
  outline-offset: 2px;
}

.bb-bets-card-option--selected {
  border-color: var(--bb-accent-color, rgba(245, 197, 24, 0.65));
  background: rgba(245, 197, 24, 0.1);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.22);
}

.bb-bets-card-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.bb-bets-card-option--selected:hover {
  background: rgba(245, 197, 24, 0.14);
  border-color: var(--bb-accent-color, rgba(245, 197, 24, 0.75));
}

.bb-bets-card-option-image {
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* תמונת דייר – ללא מתיחה; כל התמונה בתוך העיגול (letterboxing עדין אם צריך) */
.bb-bets-card-option-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  align-self: center;
}

.bb-bets-card-option-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.bb-bets-card-option-name {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.35;
  width: 100%;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bb-bets-card-option-odds-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.bb-bets-card-option-odds-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.bb-bets-card-option-odds {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--bb-accent-color, #f5c518);
}

/* מובייל: אופציות בשורות (תמונה + שם + יחס) – נוח למגע */
@media (max-width: 600px) {
  .bb-bets-card-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bb-bets-card-option {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    gap: 14px;
    padding: 12px 16px;
    min-height: 56px;
  }

  .bb-bets-card-option-image {
    width: 44px;
    height: 44px;
    order: 1;
    flex-shrink: 0;
  }

  .bb-bets-card-option-name {
    flex: 1;
    min-width: 0;
    order: 2;
    -webkit-line-clamp: 2;
    text-align: right;
  }

  .bb-bets-card-option-odds-wrap {
    order: 3;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
  }

  .bb-bets-card-option-odds-label {
    font-size: 0.65rem;
  }

  .bb-bets-card-option-odds {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .bb-bets-card-options {
    gap: 8px;
  }

  .bb-bets-card-option {
    padding: 12px 14px;
    min-height: 52px;
    gap: 12px;
  }

  .bb-bets-card-option-image {
    width: 40px;
    height: 40px;
  }

  .bb-bets-card-option-placeholder {
    font-size: 1.2rem;
  }
}

/* --- Mobile responsiveness: 768px --- */
@media (max-width: 768px) {
  .bb-bets-page {
    padding: 16px 14px;
  }

  .bb-bets-page-header {
    margin-bottom: 20px;
  }

  .bb-bets-page-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .bb-bets-page-desc {
    font-size: 0.85rem;
  }

  .bb-bets-card {
    padding: 16px 16px;
    border-radius: 12px;
  }

  .bb-bets-cards {
    gap: 18px;
  }

  .bb-bets-card-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .bb-bets-card-question {
    font-size: 1rem;
  }

  .bb-home-placeholder,
  .bb-home-dashboard {
    min-height: 200px;
    padding: 12px 10px;
    gap: 10px;
  }

  .bb-home-dashboard-main-title {
    font-size: clamp(0.875rem, 3vw, 1.05rem);
  }

  .bb-home-dashboard-hero {
    display: block;
    flex-shrink: 0;
    min-height: 140px;
  }

  .bb-home-dashboard-hero-image {
    display: block;
    width: 100%;
    min-height: 120px;
    max-height: 200px;
    object-fit: cover;
  }

  .bb-home-dashboard-hero-overlay {
    padding: 2px 4px;
    inset-inline: 5px;
    inset-block-end: 5px;
    gap: 0;
    border-radius: 5px;
    max-width: 38%;
  }

  .bb-home-dashboard-hero-overlay-title {
    font-size: 0.44rem;
  }

  .bb-home-dashboard-hero-overlay-meta {
    font-size: 0.4rem;
  }

  .bb-home-dashboard-hero-overlay-stats {
    margin-top: 1px;
    gap: 1px;
  }

  .bb-home-dashboard-hero-overlay-stat {
    padding: 1px 2px;
  }

  .bb-home-dashboard-hero-overlay-stat-label {
    font-size: 0.36rem;
  }

  .bb-home-dashboard-hero-overlay-stat-value {
    font-size: 0.46rem;
  }

  .bb-home-dashboard-hero-season-badge {
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 8px;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .bb-home-dashboard-hero-season-label {
    font-size: 0.56rem;
  }

  .bb-home-dashboard-hero-season-value {
    font-size: 0.7rem;
    font-weight: 800;
  }

  .bb-home-profile-image-wrap {
    width: 110px;
    height: 110px;
    border-radius: 14px;
  }

  .bb-home-profile-name {
    font-size: 1.2rem;
  }

  .bb-home-dashboard-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .bb-home-dashboard-stat {
    padding: 10px 8px;
    border-radius: 10px;
  }

  .bb-home-dashboard-stat-value {
    font-size: 1.3rem;
  }

  .bb-home-dashboard-stat-label {
    font-size: 0.72rem;
  }

  .bb-live-player-outer {
    padding: 6px;
    border-radius: 10px;
  }

  .bb-live-wrap {
    padding: 12px 0;
    min-height: 140px;
  }

  .bb-home-profile-description {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .bb-home-dashboard-description {
    padding: 10px;
  }

  .bb-home-dashboard-nominees {
    padding: 12px;
  }

  .bb-home-dashboard-nominees-head {
    margin-bottom: 8px;
    align-items: stretch;
  }

  .bb-home-dashboard-nominees-side {
    align-items: center;
    min-width: 0;
    padding: 0;
    gap: 0;
  }

  .bb-home-dashboard-nominees-side-main {
    gap: 0;
  }

  .bb-home-dashboard-nominees-count {
    font-size: 1.12rem;
  }

  .bb-home-dashboard-nominee-card {
    width: 120px;
    min-width: 120px;
    padding: 4px 2px 2px;
    gap: 8px;
  }

  .bb-home-dashboard-nominee-image-wrap {
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }

  .bb-home-dashboard-nominee-name {
    font-size: 0.82rem;
  }

  .bb-home-timeline {
    padding: 12px;
  }

  .bb-home-placeholder-title {
    font-size: 1.05rem;
  }

}

/* --- Small screens: 360px and below --- */
@media (max-width: 360px) {
  .bb-bets-page {
    padding: 12px 10px;
  }

  .bb-bets-page-title {
    font-size: 1.05rem;
  }

  .bb-bets-page-desc {
    font-size: 0.8rem;
  }

  .bb-bets-card {
    padding: 14px 12px;
  }

  .bb-bets-card-question {
    font-size: 0.95rem;
  }

  .bb-home-placeholder,
  .bb-home-dashboard {
    min-height: 200px;
    padding: 12px 10px;
    gap: 10px;
  }

  .bb-home-profile-image-wrap {
    width: 90px;
    height: 90px;
    border-radius: 12px;
  }

  .bb-home-profile-name {
    font-size: 1.05rem;
    gap: 6px;
  }

  .bb-home-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .bb-home-dashboard-stat {
    padding: 8px 6px;
  }

  .bb-home-dashboard-stat-value {
    font-size: 1.15rem;
  }

  .bb-live-player-outer {
    padding: 4px;
    border-radius: 8px;
    border: none;
  }

  .bb-live-player-wrap {
    border-radius: 6px;
  }

  .bb-home-profile {
    padding: 12px;
  }

  .bb-home-profile-main {
    gap: 12px;
  }

  .bb-home-profile-status {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .bb-home-dashboard-main-title {
    font-size: clamp(0.8rem, 2.8vw, 1rem);
  }

  .bb-home-dashboard-hero {
    min-height: 120px;
  }

  .bb-home-dashboard-hero-image {
    min-height: 100px;
    max-height: 180px;
  }

  .bb-home-dashboard-hero-season-badge {
    top: 6px;
    inset-inline-end: 6px;
    padding: 4px 6px;
    border-radius: 6px;
    max-width: 52%;
  }

  .bb-home-dashboard-hero-season-label {
    font-size: 0.54rem;
  }

  .bb-home-dashboard-hero-season-value {
    font-size: 0.66rem;
  }

  .bb-home-timeline {
    padding: 10px;
  }

  .bb-home-timeline-scroll:not(.bb-home-timeline-scroll--ticker) {
    max-height: 260px;
  }

  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
    max-height: min(260px, 50vh);
  }

  .bb-home-list {
    max-height: 180px;
    padding: 6px;
    gap: 6px;
  }

  .bb-home-list-item {
    padding: 8px;
    border-radius: 8px;
  }

  .bb-home-list-item-name {
    font-size: 0.82rem;
  }

  .bb-bets-card-option-name {
    font-size: 0.8rem;
  }

  .bb-bets-card-option-odds {
    font-size: 0.92rem;
  }

  .bb-home-placeholder-title {
    font-size: 0.95rem;
  }

  .bb-home-placeholder-text {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .bb-home-dashboard-nominee-card {
    width: 96px;
    min-width: 96px;
    padding: 8px 6px;
  }

  .bb-home-dashboard-nominee-image-wrap {
    width: 66px;
    height: 66px;
    border-radius: 10px;
  }

  .bb-home-dashboard-nominees-title {
    font-size: 0.92rem;
  }

  .bb-home-dashboard-nominees-subtitle {
    font-size: 0.72rem;
  }

  .bb-home-dashboard-nominee-name {
    font-size: 0.76rem;
  }
}

/* --- Extra small screens: 320px and below --- */
@media (max-width: 320px) {
  .bb-bets-page {
    padding: 10px 8px;
  }

  .bb-bets-card {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .bb-bets-card-question {
    font-size: 0.9rem;
  }

  .bb-bets-card-options {
    gap: 8px;
  }

  .bb-bets-card-option {
    padding: 10px 12px;
    min-height: 48px;
  }

  .bb-bets-card-option-image {
    width: 36px;
    height: 36px;
  }

  .bb-bets-card-option-name {
    font-size: 0.82rem;
  }

  .bb-bets-card-option-odds {
    font-size: 1rem;
  }

  .bb-home-placeholder,
  .bb-home-dashboard {
    min-height: 160px;
    padding: 10px 8px;
    gap: 8px;
  }

  .bb-home-profile-image-wrap {
    width: 72px;
    height: 72px;
    border-radius: 10px;
  }

  .bb-home-profile-name {
    font-size: 0.95rem;
    gap: 4px;
  }

  .bb-home-profile {
    padding: 10px;
  }

  .bb-home-profile-main {
    gap: 10px;
  }

  .bb-home-profile-status {
    font-size: 0.62rem;
    padding: 3px 6px;
  }

  .bb-home-profile-description {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .bb-home-dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .bb-home-dashboard-stat {
    padding: 6px 4px;
    border-radius: 6px;
  }

  .bb-home-dashboard-stat-value {
    font-size: 1rem;
  }

  .bb-home-dashboard-stat-label {
    font-size: 0.6rem;
  }

  .bb-home-dashboard-main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  }

  .bb-home-list {
    max-height: 150px;
    padding: 4px;
    gap: 4px;
  }

  .bb-home-list-item {
    padding: 6px;
    border-radius: 6px;
  }

  .bb-home-list-item-name {
    font-size: 0.75rem;
  }

  .bb-home-timeline {
    padding: 8px;
  }

  .bb-home-timeline-scroll:not(.bb-home-timeline-scroll--ticker) {
    max-height: 260px;
  }

  .bb-home-timeline-scroll.bb-home-timeline-scroll--ticker {
    max-height: min(240px, 48vh);
  }

  .bb-live-player-outer {
    padding: 2px;
    border-radius: 6px;
    border: none;
  }

  .bb-live-wrap {
    padding: 8px 0;
    min-height: 120px;
  }

  .bb-home-placeholder-title {
    font-size: 0.88rem;
  }

  .bb-home-placeholder-text {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .bb-home-dashboard-nominees {
    padding: 8px;
  }

  .bb-home-dashboard-nominees-head {
    margin-bottom: 6px;
  }

  .bb-home-dashboard-nominees-count {
    font-size: 1rem;
  }

  .bb-home-dashboard-nominees-side-label {
    font-size: 0.62rem;
  }

  .bb-home-dashboard-nominee-card {
    width: 102px;
    min-width: 102px;
    padding: 2px 0;
  }

  .bb-home-dashboard-nominee-image-wrap {
    width: 64px;
    height: 64px;
    border-radius: 9px;
  }

  .bb-home-dashboard-nominee-name {
    font-size: 0.72rem;
  }

  .bb-home-dashboard-hero-image {
    max-height: 160px;
  }

  .bb-home-dashboard-hero-season-badge {
    top: 4px;
    inset-inline-end: 4px;
    padding: 3px 5px;
    border-radius: 5px;
    max-width: 55%;
  }

  .bb-home-dashboard-hero-season-label {
    font-size: 0.5rem;
  }

  .bb-home-dashboard-hero-season-value {
    font-size: 0.6rem;
  }

  .bb-home-dashboard-description {
    padding: 8px;
    font-size: 0.8rem;
  }
}

/* =====================================================================
 * דף הבית – האח הגדול: צבע לפי סוג המשחק (קטגוריה), כמו ספורט/צ'אנס
 * --hub-accent נקבע ב-index.php על body; --bb-accent-color יורש לכל הממשק
 * ===================================================================== */
body.page-hub-bigbrother {
  --hub-accent: var(--accent-sport, #f5c518);
  --bb-accent-color: var(--hub-accent);
}

body.page-hub-bigbrother .bb-home-block {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--hub-accent) 10%, rgba(255, 255, 255, 0.06)),
    color-mix(in srgb, var(--hub-accent) 4%, rgba(255, 255, 255, 0.03))
  );
  border: 1px solid color-mix(in srgb, var(--hub-accent) 22%, rgba(255, 255, 255, 0.1));
  border-inline-start: 3px solid color-mix(in srgb, var(--hub-accent) 55%, transparent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

body.page-hub-bigbrother .bb-home-head {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--hub-accent) 18%, rgba(0, 0, 0, 0.35)),
    color-mix(in srgb, var(--hub-accent) 8%, rgba(0, 0, 0, 0.14))
  );
  border-bottom: 1px solid color-mix(in srgb, var(--hub-accent) 14%, rgba(255, 255, 255, 0.1));
}

body.page-hub-bigbrother .bb-home-title-icon {
  color: var(--hub-accent);
  background: color-mix(in srgb, var(--hub-accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--hub-accent) 30%, transparent);
}

body.page-hub-bigbrother .bb-home-list-item.is-active {
  border-color: color-mix(in srgb, var(--hub-accent) 50%, transparent);
  background: color-mix(in srgb, var(--hub-accent) 12%, rgba(255, 255, 255, 0.06));
}

body.page-hub-bigbrother .bb-home-profile-image-placeholder {
  color: var(--hub-accent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--hub-accent) 14%, transparent),
    color-mix(in srgb, var(--hub-accent) 7%, transparent)
  );
}

body.page-hub-bigbrother .bb-home-timeline-count {
  background: color-mix(in srgb, var(--hub-accent) 14%, transparent);
  color: var(--hub-accent);
  border-color: color-mix(in srgb, var(--hub-accent) 22%, rgba(255, 255, 255, 0.18));
}

body.page-hub-bigbrother .bb-home-timeline-item--video {
  border-color: color-mix(in srgb, var(--hub-accent) 35%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--hub-accent) 15%, transparent);
}

body.page-hub-bigbrother .bb-home-timeline-item--video:hover {
  border-color: color-mix(in srgb, var(--hub-accent) 50%, transparent);
}

body.page-hub-bigbrother .bb-home-dashboard-stat-value {
  color: var(--hub-accent);
}

/* עמודת «הטופס שלי» ב־hub – עיצוב כמו כרטיסי הספורט, צבע לפי --hub-accent */
body.page-hub-bigbrother .index-home-hub--bigbrother .index-home-card {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--hub-accent) 10%, rgba(255, 255, 255, 0.06)),
    color-mix(in srgb, var(--hub-accent) 4%, rgba(255, 255, 255, 0.03))
  );
  border: 1px solid color-mix(in srgb, var(--hub-accent) 22%, rgba(255, 255, 255, 0.1));
  border-inline-start: 3px solid color-mix(in srgb, var(--hub-accent) 55%, transparent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

body.page-hub-bigbrother .index-home-hub--bigbrother .index-my-form-head.index-my-form-title-bar {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--hub-accent) 18%, rgba(0, 0, 0, 0.35)),
    color-mix(in srgb, var(--hub-accent) 8%, rgba(0, 0, 0, 0.14))
  );
  border: 1px solid color-mix(in srgb, var(--hub-accent) 16%, rgba(255, 255, 255, 0.1));
  border-radius: 10px;
}

body.page-hub-bigbrother .index-home-hub--bigbrother .index-my-form-title .index-my-form-balance-value {
  color: color-mix(in srgb, var(--hub-accent) 35%, #fff);
}

body.page-hub-bigbrother .index-home-hub--bigbrother .index-my-form-empty-icon {
  color: color-mix(in srgb, var(--hub-accent) 45%, transparent);
}

/* סליפ הימורי אח גדול – תווית «סוג ההימור» + תמונת דייר בבחירה */
body.page-hub-bigbrother .slip-line--bb .slip-row--market .slip-row-key {
  flex: 0 0 clamp(5.5em, 16vw, 7.2em);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

body.page-hub-bigbrother .slip-pick-val--bb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.page-hub-bigbrother .bb-slip-pick-thumb {
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body.page-hub-bigbrother .bb-slip-pick-thumb img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  align-self: center;
  display: block;
}

body.page-hub-bigbrother .bb-slip-pick-thumb--placeholder {
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

body.page-hub-bigbrother .bb-slip-pick-name {
  font-weight: 600;
  line-height: 1.35;
}

/* הבהוב יחס בעדכון מול המסד (כמו לייב ספורט) */
@keyframes bbOddsFlashUp {
  0% {
    color: #4caf50;
    transform: scale(1.12);
  }
  40% {
    color: #81c784;
    transform: scale(1.05);
  }
  100% {
    color: var(--hub-accent, #f5c518);
    transform: scale(1);
  }
}
@keyframes bbOddsFlashDown {
  0% {
    color: #f44336;
    transform: scale(1.12);
  }
  40% {
    color: #e57373;
    transform: scale(1.05);
  }
  100% {
    color: var(--hub-accent, #f5c518);
    transform: scale(1);
  }
}
body.page-hub-bigbrother .bb-bets-card-option-odds.bb-odds-flash-up,
body.page-hub-bigbrother .slip-line--bb .slip-odds.bb-odds-flash-up {
  animation: bbOddsFlashUp 2s ease-out;
}
body.page-hub-bigbrother .bb-bets-card-option-odds.bb-odds-flash-down,
body.page-hub-bigbrother .slip-line--bb .slip-odds.bb-odds-flash-down {
  animation: bbOddsFlashDown 2s ease-out;
}
body.page-hub-bigbrother .slip-line--bb .slip-odds {
  display: inline-block;
  transition: color 0.2s ease;
}

.bb-bets-card--closed {
  opacity: 0.55;
  pointer-events: none;
  position: relative;
}
.bb-bets-card--closed .bb-bets-card-option--actionable {
  cursor: not-allowed;
  filter: grayscale(0.6);
}
.bb-bets-card-closed-badge {
  color: #e74c3c;
  font-weight: 600;
}
