.sm-hero-section {
    padding: 18px 0 0;
}

.sm-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.sm-hero-card {
    position: relative;
    min-height: 339px;
    padding: 28px 34px 22px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--sm-hero-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.sm-hero-card::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 16%;
    height: 36%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.35;
    pointer-events: none;
}

.sm-hero-card__glow {
    position: absolute;
    top: 48%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(36px);
    opacity: 0.32;
    pointer-events: none;
}

.sm-hero-card__glow--left {
    left: -80px;
    background: radial-gradient(circle, rgba(65, 142, 255, 0.65) 0, rgba(65, 142, 255, 0) 72%);
}

.sm-hero-card__glow--right {
    right: -80px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.45) 0, rgba(255, 122, 0, 0) 72%);
}

.sm-hero-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    text-align: center;
}

.league_and_country_hero {
    align-self: flex-start;
    margin-bottom: 28px;
}

.league_and_country_hero .all-matches-group__flag-wrap {
    width: 25px;
    height: 17px;
    border-radius: 5px;
}

.league_and_country_hero__title {
    min-width: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.sm-hero-card__sport-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.sm-hero-card__scoreline {
    display: grid;
    grid-template-columns: 150px minmax(180px, auto) 150px;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 550px;
}

.sm-hero-card__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.sm-hero-card__team-name{
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.sm-hero-card .form_pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sm-hero-card .form_dot {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex: 0 0 14px;
}

.sm-hero-card a.form_dot {
    cursor: pointer;
}

.sm-hero-card .form-w {
    background: #18b86a;
}

.sm-hero-card .form-d {
    background: #ffbc2e;
}

.sm-hero-card .form-l {
    background: #f15463;
}

.sm-hero-card .form-u {
    background: rgba(255, 255, 255, 0.34);
}

.sm-hero-card .dot_tip {
    position: absolute;
    left: 50%;
    bottom: 170%;
    z-index: 50;
    min-width: 220px;
    max-width: 260px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(20, 24, 33, 0.96);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}

.sm-hero-card .dot_tip::after {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 10px;
    height: 10px;
    background: rgba(20, 24, 33, 0.96);
    transform: translateX(-50%) rotate(45deg);
    content: "";
}

.sm-hero-card .form_dot:hover .dot_tip,
.sm-hero-card .form_dot:focus-visible .dot_tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sm-hero-card .dot_tip_title,
.sm-hero-card .dot_tip_meta {
    display: block;
    text-align: left;
    line-height: 1.25;
}

.sm-hero-card .dot_tip_title {
    font-size: 13px;
    font-weight: 700;
}

.sm-hero-card .dot_tip_meta {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;
}

.sm-hero-card__team-logo {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    overflow: hidden;
}

.sm-hero-card__team-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.sm-hero-card__team-logo span {
    color: #0d2236;
    font-size: 22px;
    font-weight: 800;
}

.sm-hero-card__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sm-hero-card__datetime {
    color: white;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.sm-hero-card__bk-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 35px;
    width: 176px;
    border: 0;
    border-radius: 5px;
    background: #000bd9;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    height: 39px;

}

.sm-hero-card__live-minute {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding-bottom: 4px;
    color: #8fe39d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.sm-hero-card__live-minute::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(143, 227, 157, 0.24);
}

.sm-hero-card__live-minute::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.3;
    animation: sm-hero-card-live-minute-line 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sm-hero-card-live-minute-line {
    0% {
        left: calc(100% - 8px);
        width: 8px;
        opacity: 0.22;
    }

    25% {
        left: calc(100% - 20%);
        width: 20%;
        opacity: 0.45;
    }

    50% {
        left: 0;
        width: 100%;
        opacity: 0.9;
    }

    75% {
        left: 0;
        width: 20%;
        opacity: 0.45;
    }

    100% {
        left: 0;
        width: 8px;
        opacity: 0.22;
    }
}

.sm-hero-card__score {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.sm-hero-card__league {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.sm-hero-card__title {
    max-width: 700px;
    margin: 18px 0 14px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.sm-hero-card__odds {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}
.sm-hero-card__odd-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sm-hero-card__odd {
    min-width: 194px;
    padding: 8px 10px;
    border-radius: 10px;
    background: white;
    display:inline-flex;
    align-items: center;
    gap: 20px;
}

.sm-hero-card__odd-label {
    display: block;
    color: #B2B3C6;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}
.sm-hero-card__bk-icon{
    width: 92px;
    height: 36px;
}
.sm-hero-card__odd-value {
    display: block;
    margin-top: 5px;
    color: #000BD9;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.sm-hero-banner {
    position: relative;
    flex: 1;
    min-height: 152px;
    padding: 14px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
}

.sm-hero-banner__surface,
.sm-hero-banner::before {
    position: absolute;
    inset: 0;
    content: "";
}

.sm-hero-banner::before {
    background-image: var(--sm-banner-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9;
    z-index: -2;
}

.sm-hero-banner__surface {
    z-index: -1;
}

.sm-hero-banner--telegram .sm-hero-banner__surface {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, rgba(98, 197, 255, 0.96) 0%, rgba(63, 134, 246, 0.95) 100%);
}

.sm-hero-banner--bonus .sm-hero-banner__surface {
    background:
        radial-gradient(circle at 82% 82%, rgba(255, 214, 72, 0.35), rgba(255, 214, 72, 0) 34%),
        linear-gradient(180deg, rgba(40, 32, 25, 0.96) 0%, rgba(16, 16, 16, 0.98) 100%);
}

.sm-hero-banner__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 8px;
    text-align: center;
}

.sm-hero-banner__icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 2px;
}

.sm-hero-banner__title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.sm-hero-banner--telegram .sm-hero-banner__title {
    font-size: 18px;
    line-height: 1.05;
}

.sm-hero-banner__text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.sm-tabs-section {
    padding: 18px 0 52px;
}

.sm-tabs-shell {
    position: relative;
    padding: 20px 22px 28px;
    border-radius: 28px;
    background: #ffffff url(../images/bg_single_match.png);
    background-size: cover;
}

.sm-tabs-control {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.sm-overview-card {
    padding: 48px 52px 54px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(150, 167, 189, 0.14);
}

.sm-overview-card__header {
    margin-bottom: 28px;
}

.sm-overview-card__title {
    margin: 0;
    color: #101217;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.12;
}

.sm-overview-card__date {
    margin: 22px 0 0;
    color: #4f89ea;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.sm-overview-card__section + .sm-overview-card__section {
    margin-top: 30px;
}

.sm-overview-card__section-title,
.sm-overview-card__subhead {
    margin: 0 0 12px;
    color: #101217;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.sm-overview-card__subhead {
    color: #4f89ea;
}

.sm-overview-card__text {
    color: #20242d;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.58;
}

.sm-overview-card__text br + br {
    content: "";
    display: block;
    margin-top: 14px;
}

.sm-overview-card__value-chip {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 16px;
    margin-top: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #71abff 0%, #3c7be5 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.sm-overview-card__prediction-list {
    margin: 0;
    padding-left: 24px;
    color: #20242d;
}

.sm-overview-card__prediction-item {
    font-size: 17px;
    line-height: 1.58;
}

.sm-overview-card__prediction-item + .sm-overview-card__prediction-item {
    margin-top: 14px;
}

.sm-tab-placeholder__card {
    padding: 36px;
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
}

.sm-tab-placeholder__title {
    margin: 0;
    color: #15171c;
    font-size: 28px;
    font-weight: 700;
}

.sm-tab-placeholder__text {
    margin: 14px 0 0;
    color: #8d96a4;
    font-size: 16px;
    line-height: 1.5;
}

.sm-statistics-card {
    display: grid;
    row-gap: 5px;
    padding: 40px 52px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(150, 167, 189, 0.14);
}

.sm-statistics-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.sm-statistics-row__label {
    min-width: 118px;
    color: #b2b4b9;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-statistics-row__line {
    height: 1px;
    background: #eceff4;
}

.sm-statistics-row__value {
    min-width: 132px;
    color: #15171c;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    justify-self: end;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .sm-hero-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .sm-hero-card {
        min-height: 0;
        padding: 24px 22px 20px;
    }

    .sm-tabs-section {
        padding: 16px 0 38px;
    }

    .sm-tabs-shell {
        padding: 18px 20px 24px;
        border-radius: 24px;
    }
    .sm-overview-card {
        padding: 32px 30px 36px;
        border-radius: 26px;
    }

    .sm-overview-card__title {
        font-size: 28px;
    }

    .sm-overview-card__date {
        margin-top: 16px;
        font-size: 16px;
    }

    .sm-overview-card__text,
    .sm-overview-card__prediction-item,
    .sm-overview-card__value-chip {
        font-size: 16px;
    }

    .sm-statistics-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        max-width: 860px;
        padding: 26px 28px 28px;
        border-radius: 26px;
        margin: 0 auto;
    }

    .sm-statistics-row {
        gap: 12px;
    }

    .sm-statistics-row__label {
        min-width: 106px;
    }

    .sm-statistics-row__value {
        min-width: 124px;
    }

    .sm-statistics-row__label,
    .sm-statistics-row__value {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .sm-hero-section {
        padding-top: 8px;
    }

    .sm-hero-card {
        padding: 18px 14px 16px;
        border-radius: 18px;
    }
    .sm-hero-card__scoreline {
        grid-template-columns: 110px minmax(0, 1fr) 110px;
        gap: 14px;
        max-width: 100%;
    }

    .sm-hero-card__team-logo {
        width: 46px;
        height: 46px;
    }

    .sm-hero-card__team-logo img {
        width: 30px;
        height: 30px;
    }

    .sm-hero-card__team-logo span {
        font-size: 16px;
    }

    .sm-hero-card__datetime {
        font-size: 26px;
    }
.sm-hero-card__team-name {
    font-size: 14px;
}

    .sm-hero-card__score {
        font-size: 28px;
    }

    .sm-hero-card .form_pill {
        gap: 4px;
        padding: 6px 9px;
    }

    .sm-hero-card .form_dot {
        width: 10px;
        height: 10px;
        flex-basis: 10px;
    }

    .sm-hero-card .dot_tip {
        min-width: 180px;
        max-width: 210px;
        padding: 8px 10px;
    }
    .sm-hero-card__bk-icon {
        width: 53px;
        height: 25px;
    }
    .sm-hero-card .dot_tip_title {
        font-size: 12px;
    }

    .sm-hero-card .dot_tip_meta {
        font-size: 11px;
    }

    .sm-hero-card__league {
        font-size: 14px;
        color:#B2B3C6;
    }

    .sm-hero-card__title {
        margin: 16px 0 14px;
        font-size: 16px;
        line-height: 1.15;
    }

    .sm-hero-card__odds {
        gap: 8px;
    }

    .sm-hero-card__odd {
        min-width: 48px;
        padding: 8px 8px;
        border-radius: 9px;
    }

    .sm-hero-card__odd-label {
        font-size: 12px;
    }

    .sm-hero-card__odd-value {
        margin-top: 4px;
        font-size: 12px;
    }

    .sm-tabs-section {
        padding: 16px 0 34px;
    }

    .sm-tabs-shell {
        padding: 14px 12px 18px;
        border-radius: 20px;
    }
    .sm-overview-card {
        padding: 24px 18px 28px;
        border-radius: 20px;
    }
    .sm-hero-card__bk-link {
        width: 122px;
    }
    .sm-overview-card__header {
        margin-bottom: 22px;
    }

    .sm-overview-card__title {
        font-size: 22px;
    }

    .sm-overview-card__date {
        margin-top: 14px;
        font-size: 15px;
    }

    .sm-overview-card__section + .sm-overview-card__section {
        margin-top: 24px;
    }

    .sm-overview-card__section-title,
    .sm-overview-card__subhead {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .sm-overview-card__text,
    .sm-overview-card__prediction-item {
        font-size: 15px;
        line-height: 1.55;
    }

    .sm-overview-card__value-chip {
        display: flex;
        width: 100%;
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.4;
    }

    .sm-overview-card__prediction-list {
        padding-left: 20px;
    }

    .sm-tab-placeholder__card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .sm-tab-placeholder__title {
        font-size: 22px;
    }

    .sm-tab-placeholder__text {
        font-size: 14px;
    }

    .sm-statistics-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
        padding: 18px 14px 20px;
        border-radius: 22px;
        box-shadow: 0 14px 42px rgba(150, 167, 189, 0.12);
    }

    .sm-statistics-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 9px;
        align-items: center;
    }

    .sm-statistics-row__label {
        min-width: 96px;
    }

    .sm-statistics-row__value {
        min-width: 92px;
    }

    .sm-statistics-row__label,
    .sm-statistics-row__value {
        font-size: 14px;
    }

    .sm-statistics-row__value {
        text-align: right;
    }
}

@media (max-width: 389.98px) {
    .sm-hero-card__scoreline {
        grid-template-columns: 110px minmax(0, 1fr) 110px;
        gap: 10px;
    }

    .sm-hero-card__team-logo {
        width: 63px;
        height: 63px;
    }

    .sm-hero-card__team-logo img {
        width: 63px;
        height: 63px;
    }

    .sm-hero-card__score {
        font-size: 24px;
    }

    .sm-hero-card .form_pill {
        gap: 2px;
        padding: 4px 5px;
    }

    .sm-hero-card .form_dot {
        width: 10px;
        height: 10px;
        flex-basis: 10px;
    }

    .sm-hero-card__title {
        font-size: 14px;
    }

    .sm-statistics-row {
        gap: 8px;
    }

    .sm-statistics-row__label {
        min-width: 86px;
    }

    .sm-statistics-row__value {
        min-width: 74px;
    }

    .sm-statistics-row__label,
    .sm-statistics-row__value {
        font-size: 13px;
    }
}



.match-prediction-panels {
  margin-top: 24px;
}

.match-prediction-panels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.match-prediction-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 28px 20px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.match-prediction-card__header {
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.match-prediction-card__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #171717;
}

.match-prediction-card__team {
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-prediction-card__team img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.match-prediction-table {
  width: 100%;
}

.match-prediction-table__row {
  display: grid;
  grid-template-columns: minmax(52px, 88px) 1fr minmax(52px, 88px);
  align-items: center;
  gap: 16px;
  min-height: 62px;
  border-top: 1px solid #ececec;
}

.match-prediction-table__value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #414b57;
  text-align: center;
}

.match-prediction-table__value.is-better {
  color: #3b82f6;
}

.match-prediction-table__value.is-win {
  color: #19a463;
}

.match-prediction-table__label {
  font-size: 16px;
  font-weight: 500;
  color: #a3a3a3;
  text-align: center;
}

@media (max-width: 1023px) {
  .match-prediction-panels__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .match-prediction-card {
    border-radius: 24px;
    padding: 24px 20px 16px;
  }

  .match-prediction-card__header {
    grid-template-columns: 56px 1fr 56px;
    gap: 12px;
  }

  .match-prediction-card__team img {
    width: 44px;
    height: 44px;
  }

  .match-prediction-card__title {
    font-size: 17px;
  }

  .match-prediction-table__row {
    grid-template-columns: 56px 1fr 56px;
    gap: 12px;
    min-height: 54px;
  }

  .match-prediction-table__value {
    font-size: 16px;
  }

  .match-prediction-table__label {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .match-prediction-panels {
    margin-top: 18px;
  }

  .match-prediction-card {
    border-radius: 22px;
    padding: 20px 16px 14px;
  }

  .match-prediction-card__header {
    grid-template-columns: 44px 1fr 44px;
    margin-bottom: 14px;
  }

  .match-prediction-card__team img {
    width: 36px;
    height: 36px;
  }

  .match-prediction-card__title {
    font-size: 16px;
  }

  .match-prediction-table__row {
    grid-template-columns: 48px 1fr 48px;
    min-height: 48px;
    gap: 10px;
  }

  .match-prediction-table__value {
    font-size: 15px;
  }

  .match-prediction-table__label {
    font-size: 14px;
  }
}

.single-match-bonus-section {
  padding: 34px 0 0;
}

.single-match-bonus-shell {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff var(--single-match-bonus-bg-desktop) center / cover no-repeat;
}

.single-match-bonus-shell__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 14px 18px;
}

.single-match-bonus-shell__brand {
    display: block;
    width: auto;
    max-width: 140px;
    max-height: 44px;
    height: auto;
    text-align: left;
}

.single-match-bonus-shell__title {
  margin: 0;
  max-width: 220px;
  color: #15171c;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.18;
}

.single-match-bonus-shell__slider {
  min-width: 0;
}

.single-match-bonus-shell .bonus-carousel {
  padding: 0;
}

.single-match-bonus-shell .bonus-track {
  grid-auto-columns: 420px;
  gap: 18px;
  padding: 0 0 8px;
}

.single-match-bonus-shell .bonus-card {
  min-height: 372px;
  border-radius: 22px;
}

.single-match-bonus-shell .bonus-card__poster {
  height: 184px;
}

.single-match-bonus-shell .bonus-card__chip {
  left: 10px;
  top: 10px;
  height: 30px;
  padding: 0 12px;
  font-size: 13px;
}

.single-match-bonus-shell .bonus-card__brand {
  top: 10px;
  max-width: calc(100% - 112px);
  font-size: 18px;
}

.single-match-bonus-shell .bonus-card__brand-logo {
  max-width: 118px;
  max-height: 24px;
}

.single-match-bonus-shell .bonus-card__body {
  min-height: 188px;
  padding: 14px 14px 16px;
}

.single-match-bonus-shell .bonus-card__body p {
  min-height: 78px;
  font-size: 14px;
  line-height: 1.32;
  -webkit-line-clamp: 4;
}

.single-match-bonus-shell .bonus-card__link {
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.single-match-bonus-shell .bonus-card__link-icon {
  width: 16px;
  height: 16px;
}

.single-match-bonus-shell .bonus-controls {
  margin-top: 14px;
}

@media (max-width: 1199.98px) {
  .single-match-bonus-shell {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .single-match-bonus-shell__intro {
    padding: 12px 8px 12px 6px;
    gap: 14px;
  }

  .single-match-bonus-shell__brand {
    max-width: 148px;
    max-height: 36px;
  }

  .single-match-bonus-shell__title {
    max-width: 190px;
    font-size: 20px;
  }

  .single-match-bonus-shell .bonus-track {
    grid-auto-columns: 244px;
    gap: 14px;
  }
}

@media (max-width: 767.98px) {
  .single-match-bonus-section {
    padding-top: 24px;
  }

  .single-match-bonus-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding: 18px 12px 16px;
    border-radius: 22px;
    background-image: var(--single-match-bonus-bg-mobile);
  }

  .single-match-bonus-shell__intro {
    align-items: center;
    padding: 4px 6px 8px;
    text-align: center;
  }

  .single-match-bonus-shell__brand {
    max-width: 134px;
    max-height: 34px;
  }

  .single-match-bonus-shell__title {
    max-width: none;
    font-size: 18px;
  }

  .single-match-bonus-shell .bonus-track {
    grid-auto-columns: calc(100% - 34px);
    gap: 12px;
    padding-bottom: 6px;
  }

  .single-match-bonus-shell .bonus-card {
    min-height: 336px;
    border-radius: 20px;
  }

  .single-match-bonus-shell .bonus-card__poster {
    height: 156px;
  }

  .single-match-bonus-shell .bonus-card__body {
    min-height: 180px;
    padding: 12px 12px 14px;
  }

  .single-match-bonus-shell .bonus-card__body p {
    min-height: 72px;
    font-size: 13px;
  }

  .single-match-bonus-shell .bonus-card__link {
    height: 40px;
    font-size: 13px;
  }

  .single-match-bonus-shell .bonus-controls {
    margin-top: 10px;
  }
}

.match-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}
.ms-row{
  width: 100%;
}
.ms-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.2;
}
.ms-val {
    width: 64px;
    font-weight: 700;
    opacity: .95;
    white-space: nowrap;
}
.ms-label {
    flex: 1;
    text-align: center;
    font-weight: 600;
    opacity: .95;
}
.ms-val--away {
    text-align: right;
}
.ms-bar {
position: relative;
    height: 10px;
    width: 100%;
    background: var(--accent-soft);
    border-radius: 999px;
    overflow: hidden;
}
.ms-bar__fill {
height: 100%;
    width: 0%;
    background: var(--accent-strong);
    border-radius: 999px;
    transition: width .25s;
}
.match-stats-container {
  margin-top: 30px;
    padding: 40px 52px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(150, 167, 189, 0.14);
}
.match-stats-container .title {
    margin: auto;
    text-align: center;
    margin-bottom: 15px;
}
.me-box {
    background: white;
    border-radius: 38px;
    padding: 34px 42px 36px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 18px 54px rgba(176, 191, 212, 0.18);
}

.lu-title.me-title {
    margin-bottom: 28px;
}

.me-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}
.me-team {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 260px;
}

.me-team__badge {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.me-team__name {
    min-width: 0;
    flex: 1 1 auto;
    color: #0e0e10;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.08;
}

.me-team__name-track {
    display: inline-block;
    min-width: 100%;
    white-space: nowrap;
}

.me-team--right .me-team__name {
    text-align: right;
}

.me-team__name::-webkit-scrollbar {
    display: none;
}

.me-minute, .me-team__badge {
    border-radius: 50%;
}
.me-card, .me-minute, .me-team__badge {
    background: #fff;
    box-shadow: 0 10px 22px rgba(12, 25, 41, .08);
}
.lm-team-badge img, .me-team__badge img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}
.me-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 6px 0 8px;
}
.me-timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #d6e3ee;
}
.dot_tip::after, .me-timeline:before {
    transform: translateX(-50%);
    content: "";
}
.me-row {
    display: grid;
    grid-template-columns: 1fr 86px 1fr;
    align-items: center;
    column-gap: 22px;
    min-height: 92px;
}
.me-side--home {
    justify-content: flex-start;
}
.me-card, .me-side {
    width: 100%;
    display: flex;
}
.me-mid {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cappers-empty-state, .cappers-filter-row, .cappers-grid, .cappers-head, .cappers-more-wrap, .lu-shirt .lu-num, .me-mid {
    position: relative;
    z-index: 2;
}
.me-minute {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}
.me-side--away {
    justify-content: flex-end;
}
.me-card, .me-side {
    width: 100%;
    display: flex;
}
.me-card {
    border-radius: 18px;
    padding: 22px;
    align-items: flex-start;
    gap: 14px;
    max-width: 300px;
}

.me-side--home .me-card {
    margin-right: auto;
}

.me-side--away .me-card {
    margin-left: auto;
}

.me-card, .me-side {
    width: 100%;
    display: flex;
}
.me-card, .me-minute, .me-team__badge {
    background: #fff;
    box-shadow: 0 10px 22px rgba(12, 25, 41, .08);
}
.me-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    flex: 0 0 28px;
    margin-top: 2px;
    background: var(--accent-soft);
}
.me-ico, .me-minute {
    align-items: center;
}
.me-ico--card svg, .me-ico--goal svg {
    color: #6b46ff;
}
.me-ico svg {
    width: 16px;
    height: 16px;
    display: block;
}
.me-text, .sm-h2h__left {
    min-width: 0;
}
.me-detail {
    font-weight: 700;
    color: #0e0e10;
    margin-bottom: 8px;
}
.me-detail, .me-player {
    line-height: 1.15;
}
.lm-team-name, .me-detail, .me-player {
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.me-player {
    font-weight: 500;
    color: #8ea1b2;
}



.lu-wrap {
    margin-top: 22px;
}

.sm_tab_panels {
    margin-top: 22px;
}

.lu-shell {
    padding: 42px 44px 44px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 26px 72px rgba(176, 191, 212, 0.28);
}

.lu-title {
    margin: 0 0 34px;
    color: #1f252d;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
}

.lu-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.lu-info {
    padding-top: 10px;
}

.lu-info__badge {
    width: 86px;
    height: 86px;
}

.lu-info__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lu-info__name {
    margin-top: 28px;
    color: #161c23;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.lu-info__role {
    margin-top: 10px;
    color: #4e5863;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.24;
}

.lu-pitch {
    min-width: 0;
}

.lu-field {
    position: relative;
    width: 100%;
    aspect-ratio: 2157 / 1431;
    background: url("../images/field_pc.png") center / 100% 100% no-repeat;
    border-radius: 22px;
    overflow: hidden;
}

.lu-player {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(42px, 3.2vw, 56px);
    height: clamp(42px, 3.2vw, 56px);
    padding: 0;
    border: 0;
    background: none;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.lu-player svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.lu-player:hover,
.lu-player:focus-visible,
.lu-player.is-active {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 10px 18px rgba(24, 33, 45, 0.22));
    outline: none;
    z-index: 3;
}

.lu-player--home:hover,
.lu-player--home:focus-visible,
.lu-player--home.is-active {
    filter: drop-shadow(0 10px 18px rgba(112, 121, 133, 0.3));
}

.lu-player--away:hover,
.lu-player--away:focus-visible,
.lu-player--away.is-active {
    filter: drop-shadow(0 12px 20px rgba(71, 139, 235, 0.32));
}

@media (max-width: 900px) {
    .lu-shell {
        padding: 28px 24px 30px;
        border-radius: 28px;
    }

    .lu-title {
        margin-bottom: 24px;
        font-size: 23px;
    }

    .lu-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .lu-info {
        padding-top: 0;
    }

    .lu-info__badge {
        width: 76px;
        height: 76px;
    }

    .lu-info__name {
        margin-top: 22px;
        font-size: 20px;
    }

    .lu-info__role {
        font-size: 17px;
    }

    .lu-field {
        max-width: 560px;
        margin: 0 auto;
        aspect-ratio: 903 / 1362;
        background-image: url("../images/field_mobile.png");
    }

    .lu-player {
        width: clamp(40px, 8.4vw, 52px);
        height: clamp(40px, 8.4vw, 52px);
    }
}

@media (max-width: 767.98px) {
    .match-stats-container {
        margin-top: 30px;
        padding: 36px 15px;
        border-radius: 32px;
        background: #ffffff;
        box-shadow: 0 18px 60px rgba(150, 167, 189, 0.14);
    }

    .lu-title.me-title {
        margin-bottom: 22px;
        font-size: clamp(25px, 8vw, 34px);
        line-height: 0.98;
        letter-spacing: 0.02em;
    }

    .me-box {
        padding: 22px 18px 18px;
        border-radius: 30px;
    }

    .me-head {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .me-team {
        gap: 10px;
        min-width: 0;
        flex: 1 1 0;
    }

    .me-team__badge {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .lm-team-badge img,
    .me-team__badge img {
        width: 30px;
        height: 30px;
    }

    .me-team__name {
        display: block;
        overflow-x: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        scrollbar-width: none;
        scroll-behavior: smooth;
        font-size: 15px;
        line-height: 1;
    }

    .me-timeline {
        gap: 18px;
        padding: 4px 0 2px;
    }

    .me-row {
        grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
        min-height: 78px;
        column-gap: 10px;
    }

    .me-minute {
        width: 40px;
        height: 40px;
        font-size: 13px;
        font-weight: 700;
    }

    .me-card {
        padding: 16px 14px 14px;
        border-radius: 18px;
        gap: 10px;
        max-width: 100%;
    }

    .me-ico {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .me-ico svg {
        width: 14px;
        height: 14px;
    }

    .me-detail {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .me-player {
        font-size: 14px;
    }

    .lu-shell {
        padding: 26px 18px 20px;
        border-radius: 26px;
        box-shadow: 0 18px 54px rgba(176, 191, 212, 0.18);
    }

    .lu-title {
        margin-bottom: 22px;
        font-size: 18px;
        line-height: 1.08;
    }

    .lu-layout {
        gap: 24px;
    }

    .lu-info__badge {
        width: 54px;
        height: 54px;
    }

    .lu-info__name {
        margin-top: 16px;
        font-size: clamp(17px, 6.6vw, 22px);
    }

    .lu-info__role {
        margin-top: 8px;
        font-size: 15px;
    }

    .lu-field {
        max-width: 520px;
        border-radius: 18px;
    }

    .lu-player {
        width: clamp(30px, 7.2vw, 42px);
        height: clamp(30px, 7.2vw, 42px);
    }

    .lu-player:hover,
    .lu-player:focus-visible,
    .lu-player.is-active {
        transform: translate(-50%, -50%) scale(1.04);
    }
}

@media (max-width: 479.98px) {
    .lu-title.me-title {
        margin-bottom: 20px;
        font-size: clamp(19px, 9.2vw, 19px);
    }

    .me-box {
        padding: 20px 14px 16px;
        border-radius: 26px;
    }

    .me-head {
        gap: 8px;
    }

    .me-team {
        gap: 8px;
    }

    .me-team__badge {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .lm-team-badge img,
    .me-team__badge img {
        width: 26px;
        height: 26px;
    }

    .me-team__name {
        font-size: 14px;
    }

    .me-row {
        grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
        min-height: 72px;
        column-gap: 8px;
    }

    .me-minute {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .me-card {
        padding: 14px 12px 12px;
        border-radius: 16px;
        gap: 8px;
    }

    .me-ico {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .me-ico svg {
        width: 13px;
        height: 13px;
    }

    .me-detail {
        font-size: 14px;
    }

    .me-player {
        font-size: 13px;
    }

    .lu-shell {
        padding: 22px 14px 18px;
        border-radius: 24px;
    }

    .lu-title {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .lu-layout {
        gap: 20px;
    }

    .lu-info__badge {
        width: 48px;
        height: 48px;
    }

    .lu-info__name {
        margin-top: 14px;
        font-size: 16px;
    }

    .lu-info__role {
        font-size: 14px;
    }

    .lu-player {
        width: clamp(26px, 8vw, 38px);
        height: clamp(26px, 8vw, 38px);
    }
}

.sm-basket-stats {
    margin-top: 20px;
    border-radius: 24px;
    padding: 16px;
}
.sm-basket-stats__legend {
    font-size: 12px;
    color: #6f7a85;
    margin-bottom: 12px;
}
.sm-basket-stats__team {
    margin-top: 16px;
}
.sm-basket-stats__team-title {
    font-weight: 700;
    font-size: 16px;
    color: #202020;
    margin-bottom: 10px;
}
.sm-basket-stats__group-title {
    font-weight: 600;
    font-size: 14px;
    color: #6f7a85;
    margin: 12px 0 8px;
}
.sm-basket-stats__table-wrap {
    overflow: auto;
    max-height: 360px;
    background: #fff;
    border-radius: 16px;
}
.sm-basket-stats__table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}
.how-to-title, .ms-val--home, .sm-basket-stats__player, .sm-basket-stats__th--player {
    text-align: left;
}
.sm-basket-stats__th {
    font-weight: 700;
    background: #f5f9ff;
    position: sticky;
    top: 0;
    z-index: 1;
}
.sm-basket-stats__cell, .sm-basket-stats__th {
    padding: 10px 12px;
    font-size: 13px;
    color: #202020;
    text-align: center;
    white-space: nowrap;
}

.sm-statistics-section {
    padding: 18px 0 10px;
}

.sm-statistics-shell {
    padding: 42px 48px;
    border-radius: 28px;
    background: #ffffff;
}

.sm-forecast__title {
    margin: 0 0 24px;
    color: #25262a;
    font-size: 33px;
    font-family: "Xolonium", serif;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.sm-forecast__content {
    color: #2c2d32;
    font-size: 18px;
    line-height: 1.3;
}

.sm-forecast__content p {
    margin: 0 0 18px;
}

.sm-forecast__content h3 {
    margin: 26px 0 16px;
    color: #25262a;
    font-size: 20px;
    font-weight: 600;
}

.sm-statistics-matchbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
}

.sm-statistics-matchbar__meta,
.sm-statistics-teams,
.sm-statistics-team {
    display: flex;
    align-items: center;
}

.sm-statistics-matchbar__meta {
    gap: 24px;
}

.sm-statistics-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #000bd9;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.sm-statistics-date {
    color: #b2b3c6;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sm-statistics-teams {
    gap: 28px;
    min-width: 0;
}

.sm-statistics-team {
    gap: 10px;
    min-width: 0;
    color: #25262a;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.sm-statistics-team img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.sm-statistics-team strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.sm-statistics-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.sm-statistics-card,
.sm-h2h-card {
    padding: 28px 34px;
    border-radius: 22px;
    background: #f0f1f6;
    box-shadow: none;
}

.sm-statistics-card__title {
    margin: 0 0 20px;
    color: #25262a;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
}

.sm-statistics-row {
    display: grid;
    grid-template-columns: auto minmax(42px, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.sm-statistics-row__label {
    min-width: 0;
    color: #b2b3c6;
    font-size: 18px;
    line-height: 1.15;
    white-space: nowrap;
}

.sm-statistics-row__line {
    height: 1px;
    min-width: 24px;
    border-bottom: 1px dashed #cfd4df;
    background: transparent;
}

.sm-statistics-row__value {
    min-width: 0;
    max-width: 260px;
    color: #25262a;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-comparison-list {
    display: grid;
    gap: 14px;
}

.sm-comparison-row__label {
    margin-bottom: 8px;
    color: #b2b3c6;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
}

.sm-comparison-row__sides {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.sm-comparison-side__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #25262a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
}

.sm-comparison-side__track {
    display: block;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: #dde1eb;
}

.sm-comparison-side__track span {
    display: block;
    height: 100%;
    max-width: 100%;
    border-radius: inherit;
}

.sm-comparison-side--home .sm-comparison-side__track span {
    background: #08d2b0;
}

.sm-comparison-side--away .sm-comparison-side__track span {
    background: #000bd9;
}

.sm-h2h-card {
    grid-column: 1 / -1;
    padding: 30px 34px 34px;
}

.sm-h2h-list {
    display: grid;
    gap: 12px;
}

.sm-h2h-row {
    display: grid;
    grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 56px;
    padding: 14px 24px;
    border-radius: 10px;
    background: #ffffff;
}

.sm-h2h-row__teams {
    color: #25262a;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
    white-space: nowrap;
}

.sm-h2h-row__meta {
    min-width: 0;
    color: #b2b3c6;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-h2h-row__score {
    color: #000bd9;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.sm-top-matches-section {
    padding: 0 0 52px;
}

.sm-analytics-section {
    padding: 18px 0 10px;
}

.sm-analytics-shell {
    padding: 42px 48px;
    border-radius: 28px;
    background: #ffffff;
}

.sm-analytics__title {
    margin: 0 0 30px;
    color: #25262a;
    font-family: "Xolonium", "Gotham Pro", sans-serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.sm-analytics-cards {
    display: grid;
    gap: 30px;
}

.sm-analytics-card {
    padding: 28px 30px;
    border-radius: 16px;
    background: #f0f1f6;
}

.sm-analytics-card__title,
.sm-analytics-team__header h3 {
    margin: 0;
    color: #25262a;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.sm-analytics-card__text,
.sm-analytics-team__text {
    color: #25262a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.sm-analytics-card__text {
    margin-top: 14px;
}

.sm-analytics-teams {
    display: grid;
    gap: 34px;
    margin-top: 36px;
}

.sm-analytics-team__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.sm-analytics-team__header img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.sm-analytics-team__text {
    position: relative;
    padding-left: 22px;
}

.sm-analytics-team__text::before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.sm-analytics-team__text--primary::before {
    background: linear-gradient(180deg, #2aa4ff 0%, #000bd9 100%);
}

.sm-analytics-team__text--secondary::before {
    background: linear-gradient(180deg, #ff4c4c 0%, #dc1111 100%);
}

.sm-details-section {
    padding: 48px 0 0;
}

.sm-details-shell {
    padding: 42px 54px 56px;
    border-radius: 32px;
    background: #ffffff;
}

.sm-details-title {
    margin: 0 0 32px;
    color: #272727;
    font-family: "Xolonium", "Gotham Pro", sans-serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.sm-details-title span {
    color: #0017df;
}

.sm-details-subtitle {
    margin: 0 0 22px;
    color: #272727;
    font-size: 24px;
    font-weight: 500;
    /* line-height: 1.18; */
}

.sm-details-shell .lu-wrap {
    margin-top: 0;
}

.sm-details-shell .lu-shell {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sm-details-shell .lu-title {
    margin: 0 0 22px;
    color: #272727;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
}

.sm-details-shell .lu-layout {
    display: block;
}

.sm-details-shell .lu-info {
    display: none;
}

.sm-details-shell .lu-field {
    border-radius: 24px;
}

.lu-roster-grid,
.sm-recent-grid,
.sm-players-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lu-roster-grid {
    margin-top: 22px;
}

.lu-roster-card,
.sm-recent-card,
.sm-squad-card {
    padding: 22px;
    border-radius: 22px;
    background: #ededf3;
}

.lu-roster-card__team,
.sm-recent-card__header,
.sm-squad-card__header,
.sm-squad-card__team,
.sm-squad-group__header,
.sm-h2h-table__team {
    display: flex;
    align-items: center;
}

.lu-roster-card__team,
.sm-recent-card__header {
    gap: 12px;
    margin-bottom: 18px;
}

.lu-roster-card__team img,
.sm-recent-card__header img,
.sm-squad-card__team img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.lu-roster-card__team h4,
.lu-roster-group h5,
.sm-recent-card__header h4,
.sm-squad-group__header h4 {
    margin: 0;
    color: #272727;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.lu-roster-group {
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
}

.lu-roster-group + .lu-roster-group {
    margin-top: 16px;
}

.lu-roster-list {
    margin-top: 12px;
    border-top: 1px solid #dfe2ec;
}

.lu-roster-row {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) minmax(90px, auto);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dfe2ec;
    color: #272727;
    font-size: 15px;
}

.lu-roster-row strong,
.sm-recent-row__result,
.sm-h2h-table__row strong,
.sm-squad-player strong {
    color: #0017df;
    font-weight: 700;
}

.lu-roster-row span,
.sm-recent-row__body strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lu-roster-row em,
.sm-squad-player span,
.sm-recent-row__meta,
.sm-recent-row__side small,
.sm-squad-card__header,
.sm-squad-group__header span {
    color: #a7aec5;
    font-style: normal;
}

.lu-roster-card__coach {
    margin: 16px 0 0;
    color: #272727;
    font-size: 16px;
}

.sm-details-shell .match-events-wrap,
.sm-recent-block,
.sm-h2h-table-block,
.sm-players-block {
    margin-top: 44px;
}

.sm-details-shell .me-box {
    margin-top: 0;
    padding: 28px 30px;
    border-radius: 22px;
    background: #ededf3;
    box-shadow: none;
}

.sm-details-shell .me-title {
    margin-bottom: 24px;
}

.sm-details-shell .me-card {
    box-shadow: none;
}

.sm-details-shell .me-minute {
    background: #0017df;
    color: #ffffff;
    font-weight: 700;
    box-shadow: none;
}

.sm-recent-card__list {
    display: grid;
    gap: 12px;
}

.sm-recent-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 12px;
    border-radius: 12px;
    background: #ffffff;
    color: #272727;
    text-decoration: none;
}

.sm-recent-row:hover,
.sm-h2h-table__row:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.sm-recent-row__result {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d9ecfb;
}

.sm-recent-row__result--win {
    background: #bdf6bd;
    color: #0bbf76;
}

.sm-recent-row__result--loss {
    background: #ffd4d4;
    color: #e94d5f;
}

.sm-recent-row__body,
.sm-recent-row__side,
.sm-h2h-table,
.sm-squad-player {
    display: grid;
}

.sm-recent-row__body,
.sm-recent-row__side {
    gap: 4px;
}

.sm-recent-row__body {
    min-width: 0;
}

.sm-recent-row__body strong {
    color: #272727;
}

.sm-recent-row__side {
    justify-items: end;
}

.sm-recent-row__side strong {
    color: #0017df;
}

.sm-h2h-table {
    gap: 8px;
}

.sm-h2h-table__head,
.sm-h2h-table__row {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1.15fr 0.75fr 1.15fr 0.95fr;
    gap: 14px;
    align-items: center;
}

.sm-h2h-table__head {
    padding: 18px 22px;
    border-radius: 12px;
    background: #272727;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.sm-h2h-table__row {
    padding: 16px 22px;
    border-radius: 12px;
    background: #ededf3;
    color: #272727;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.18s ease;
}

.sm-h2h-table__team {
    gap: 10px;
    min-width: 0;
}

.sm-h2h-table__team img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    object-fit: contain;
}

.sm-h2h-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #ffa54a;
    color: #ffffff;
    font-style: normal;
    font-weight: 700;
}

.sm-h2h-status--completed {
    background: #08ceb0;
}

.sm-h2h-status--live {
    background: #0017df;
}

.sm-squad-card__header {
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe2ec;
}

.sm-squad-card__team {
    gap: 12px;
    color: #272727;
}

.sm-squad-group {
    padding-top: 18px;
}

.sm-squad-group + .sm-squad-group {
    margin-top: 18px;
    border-top: 1px solid #dfe2ec;
}

.sm-squad-group__header {
    justify-content: space-between;
    margin-bottom: 12px;
}

.sm-squad-list {
    display: grid;
    gap: 10px;
}

.sm-squad-player {
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
}

.sm-squad-player span {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sm-squad-player em {
    padding-left: 12px;
    border-left: 1px solid #aeb5ca;
    font-style: normal;
}

@media (max-width: 1199.98px) {
    .sm-details-shell {
        padding: 34px 30px 42px;
    }

    .sm-h2h-table__head,
    .sm-h2h-table__row {
        grid-template-columns: 1fr 0.8fr 1fr 0.65fr 1fr 0.85fr;
        gap: 10px;
    }
}

@media (max-width: 767.98px) {
    .sm-details-section {
        padding-top: 34px;
    }

    .sm-details-shell {
        padding: 26px 16px 32px;
        border-radius: 24px;
    }

    .sm-details-title {
        font-size: 22px;
    }

    .sm-details-subtitle,
    .sm-details-shell .lu-title {
        font-size: 19px;
    }

    .lu-roster-grid,
    .sm-recent-grid,
    .sm-players-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lu-roster-card,
    .sm-recent-card,
    .sm-squad-card,
    .sm-details-shell .me-box {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .lu-roster-row {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .lu-roster-row em {
        grid-column: 2;
    }

    .sm-recent-row {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .sm-recent-row__side {
        grid-column: 2;
        justify-items: start;
    }

    .sm-h2h-table {
        gap: 12px;
    }

    .sm-h2h-table__head {
        display: none;
    }

    .sm-h2h-table__row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 16px;
    }

    .sm-h2h-status {
        justify-self: start;
    }
}

@media (max-width: 1199.98px) {
    .sm-statistics-shell {
        padding: 34px 30px;
    }

    .sm-analytics-shell {
        padding: 34px 30px;
    }

    .sm-statistics-row__label,
    .sm-statistics-row__value {
        font-size: 17px;
    }

    .sm-comparison-row__sides {
        gap: 22px;
    }
}

@media (max-width: 991.98px) {
    .sm-statistics-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sm-statistics-matchbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .sm-statistics-teams {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .sm-statistics-section {
        padding: 14px 0 10px;
    }

    .sm-statistics-shell {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .sm-analytics-section {
        padding: 14px 0 34px;
    }

    .sm-analytics-shell {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .sm-analytics__title {
        margin-bottom: 24px;
        font-size: 22px;
    }

    .sm-analytics-card {
        padding: 22px 18px;
    }

    .sm-analytics-card__title,
    .sm-analytics-team__header h3 {
        font-size: 15px;
    }

    .sm-analytics-card__text,
    .sm-analytics-team__text {
        font-size: 13px;
        line-height: 1.35;
    }

    .sm-forecast__title {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .sm-forecast__content {
        font-size: 14px;
        line-height: 1;
    }

    .sm-forecast__content h3 {
        margin-top: 22px;
        font-size: 14px;
    }

    .sm-statistics-matchbar {
        gap: 18px;
        margin-top: 30px;
    }

    .sm-statistics-matchbar__meta {
        gap: 12px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .sm-statistics-status {
        min-width: 124px;
        min-height: 40px;
        font-size: 14px;
    }
    .sm-statistics-date {
        color: #b2b3c6;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.2;
    }

    .sm-statistics-teams {
        display: flex;
        gap: 16px;
    }

    .sm-statistics-card,
    .sm-h2h-card {
        padding: 22px 16px;
        border-radius: 20px;
        width: 100%;
    }

    .sm-statistics-card__title {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .sm-h2h-card {
        padding: 28px;
    }

    .sm-h2h-card .sm-statistics-card__title {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .sm-statistics-row {
        grid-template-columns: minmax(82px, auto) minmax(18px, 1fr) minmax(0, auto);
        gap: 10px;
    }
    .sm-statistics-team {
        font-size: 12px;
    }
    .sm-statistics-team img {
        width: 27px;
        height: 27px;
        object-fit: contain;
    }

    .sm-statistics-row__label,
    .sm-statistics-row__value {
        font-size: 13px;
    }

    .sm-statistics-row__value {
        max-width: 160px;
    }

    .sm-comparison-row__sides {
        gap: 16px;
    }

    .sm-h2h-list {
        gap: 16px;
    }

    .sm-h2h-row {
        grid-template-columns: minmax(96px, 118px) minmax(104px, 34%) minmax(34px, auto);
        justify-content: space-between;
        gap: 10px 12px;
        min-height: 84px;
        padding: 14px 22px;
    }

    .sm-h2h-row__teams {
        min-width: 0;
        font-size: 18px;
        line-height: 1.14;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .sm-h2h-row__meta {
        grid-column: auto;
        order: 0;
        min-width: 0;
        font-size: 15px;
        line-height: 1.18;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .sm-h2h-row__score {
        min-width: 34px;
        justify-self: end;
        font-size: 18px;
        text-align: right;
    }
}

@media (max-width: 479.98px) {
    .sm-comparison-row__sides {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }
    .sm-statistics-row__value {
        max-width: none;
        text-align: left;
    }

    .sm-h2h-card {
        padding: 20px 14px;
    }

    .sm-h2h-card .sm-statistics-card__title {
        font-size: 16px;
    }

    .sm-h2h-list {
        gap: 12px;
    }

    .sm-h2h-row {
        grid-template-columns: minmax(74px, 86px) minmax(82px, 36%) minmax(32px, auto);
        gap: 8px 10px;
        min-height: 82px;
        padding: 12px;
    }

    .sm-h2h-row__teams {
        font-size: 15px;
    }

    .sm-h2h-row__meta {
        font-size: 12px;
    }

    .sm-h2h-row__score {
        min-width: 32px;
        font-size: 15px;
    }
}
