.taccasino-home-top-events {
  padding: 0 0 10px;
}

.taccasino-home-top-events .page-view-more {
  padding: 0 12px 8px;
}

.taccasino-home-top-events .view-title-more {
  color: #f0ebe3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.taccasino-te-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 10px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.taccasino-te-track.is-autoplay {
  overflow: hidden;
  scroll-snap-type: none;
  padding: 0;
}

.taccasino-te-marquee__inner {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 0 10px 4px;
  animation: taccasino-te-marquee var(--te-marquee-duration, 32s) linear infinite;
  will-change: transform;
}

.taccasino-te-track.is-autoplay:hover .taccasino-te-marquee__inner,
.taccasino-te-track.is-autoplay.is-paused .taccasino-te-marquee__inner,
.taccasino-te-track.is-autoplay.is-paused-offscreen .taccasino-te-marquee__inner {
  animation-play-state: paused;
}

@keyframes taccasino-te-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.taccasino-te-track.is-autoplay .taccasino-te-card {
  flex: 0 0 min(88vw, 320px);
  width: min(88vw, 320px);
  max-width: 320px;
}

.taccasino-te-track::-webkit-scrollbar {
  display: none;
}

.taccasino-te-card {
  flex: 0 0 88%;
  max-width: 340px;
  scroll-snap-align: start;
  background: #14100c;
  border: 1px solid rgba(190, 154, 117, 0.28);
  border-radius: 12px;
  overflow: hidden;
  color: #f0ebe3;
}

.taccasino-te-card__head {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(190, 154, 117, 0.18);
  font-size: 11px;
  color: #9a9080;
}

.taccasino-te-icon {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #d4bc82;
}

.taccasino-te-icon--globe {
  color: #d4bc82;
}

.taccasino-te-icon--stats {
  width: 15px;
  height: 15px;
  color: #9a9080;
}

.taccasino-te-card__datetime {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: #f0ebe3;
}

.taccasino-te-card__sep {
  width: 1px;
  height: 14px;
  background: rgba(190, 154, 117, 0.35);
  flex-shrink: 0;
  margin: 0 1px;
}

.taccasino-te-card__league {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: #9a9080;
}

.taccasino-te-card__body {
  display: block;
  padding: 10px 12px 8px;
  text-decoration: none;
  color: inherit;
}

.taccasino-te-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.taccasino-te-card__teams {
  display: grid;
  gap: 7px;
  min-width: 0;
  flex: 1;
}

.taccasino-te-card__team {
  font-size: 14px;
  font-weight: 700;
  color: #f0ebe3;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taccasino-te-card__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  padding-left: 4px;
}

.taccasino-te-card__live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 2px 6px;
  border: 1px solid rgba(212, 188, 130, 0.55);
  border-radius: 4px;
  background: transparent;
  color: #d4bc82;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.taccasino-te-card__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 10px 10px;
}

.taccasino-te-odd {
  appearance: none;
  border: 1px solid rgba(190, 154, 117, 0.38);
  background: rgba(20, 16, 12, 0.9);
  border-radius: 8px;
  padding: 8px 4px;
  color: #f0ebe3;
  text-align: center;
  cursor: pointer;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.taccasino-te-odd:active {
  transform: scale(0.98);
  border-color: rgba(212, 188, 130, 0.55);
  background: rgba(12, 10, 8, 0.98);
}

.taccasino-te-odd__price {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  color: #f0ebe3;
}

.taccasino-te-odd__label {
  font-size: 10px;
  color: #9a9080;
  font-weight: 600;
  line-height: 1.1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 2px;
}

.taccasino-te-state {
  padding: 14px 12px;
  text-align: center;
  color: #9a9080;
  font-size: 13px;
}

.taccasino-te-state.is-error {
  color: #ef9a9a;
}
