@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* ========================================
   BASE STYLES
   ======================================== */
body {
  font-family: 'Roboto', sans-serif;
  background: #0c0c0c;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
.gradient-overlay {
      background: linear-gradient(135deg, rgba(255,77,0,0.3) 0%, transparent 50%);
    }
    .red-radial {
      background: radial-gradient(circle, rgba(255,77,0,0.2) 0%, transparent 70%);
    }
    .hover-scale:hover {
      transform: scale(1.05);
    }
    .text-stroke {
      -webkit-text-stroke: 1px rgba(255,77,0,0.5);
    }
    .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .splide__pagination__page.is-active {
      background: #ff4d00 !important;
    }
    .splide__pagination{
      position: relative !important;
margin-top: 24px !important;
    }
    .splide__arrow {
      background: rgba(255,77,0,0.8) !important;
    }
    .splide__arrow:hover {
      background: #ff4d00 !important;
    }
      .gradient-overlay {
      background: linear-gradient(135deg, rgba(255,77,0,0.3) 0%, transparent 50%);
    }
    .red-radial {
      background: radial-gradient(circle, rgba(255,77,0,0.2) 0%, transparent 70%);
    }
    .hover-scale:hover {
      transform: scale(1.05);
    }
    .text-stroke {
      -webkit-text-stroke: 1px rgba(255,77,0,0.5);
    }
    .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
 
    .stat-card {
      background: linear-gradient(145deg, rgba(255,77,0,0.1) 0%, rgba(10,10,10,0.9) 100%);
    }
    .player-gradient {
      background: linear-gradient(180deg, rgba(29,66,138,0.4) 0%, rgba(255,199,44,0.2) 50%, transparent 100%);
    }
      .match-gradient {
      background: linear-gradient(90deg, rgba(29,66,138,0.3) 0%, rgba(10,10,10,0.9) 50%, rgba(0,122,51,0.3) 100%);
    }
    .red-radial {
      background: radial-gradient(circle, rgba(255,77,0,0.2) 0%, transparent 70%);
    }
     .quarter-active {
      background: linear-gradient(180deg, rgba(255,77,0,0.3) 0%, transparent 100%);
    }
    .play-timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, #ff4d00, transparent);
    }
      .gradient-overlay {
      background: linear-gradient(135deg, rgba(255,77,0,0.3) 0%, transparent 50%);
    }
    .hover-scale:hover {
      transform: scale(1.02);
    }
    .date-active {
      background: linear-gradient(180deg, rgba(255,77,0,0.3) 0%, transparent 100%);
    }
    .live-pulse {
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    .scrollbar-hide::-webkit-scrollbar {
      display: none;
    }
    .scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
.body {
  color: #fff;
}
/* ========================================
   HEADER STYLES
   ======================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header_wrapp {
  background: #0d0d0d;
}

.header-logo.logo_top img {
  width: 60px;
  height: 60px;
}

.header-list {
  display: flex;
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 0;
}

.header-list-item-link {
  color: rgb(251, 251, 251);
  padding: 10px 14px;
  transition: 0.3s all;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.header-list-item-link::after,
.header-list-item-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff4d00;
  transition: width 0.3s ease;
}

.header-list-item-link:hover {
  color: #e31b23;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-list-item-link:hover::after {
  width: 100%;
}

.header-list-item-link--active {
  color: #ff4d00;
}

.header-list-item-link--active::after {
  width: 100%;
}

/* ========================================
   BURGER MENU
   ======================================== */
.menu-burger {
  width: 30px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 100;
  position: relative;
  display: none;
}

.menu-burger::after,
.menu-burger::before {
  content: "";
  position: absolute;
  left: 0;
}

.menu-burger::before {
  top: 0;
  transition: transform 0.3s, top 0.3s 0.3s;
}

.menu-burger::after {
  bottom: 0;
  transition: transform 0.3s, bottom 0.3s 0.3s;
}

.menu-burger__line,
.menu-burger::after,
.menu-burger::before {
  display: block;
  width: 100%;
  border-radius: 10px;
  height: 3px;
  background-color: #f2f2f2;
}

.menu-burger--active .menu-burger__line {
  display: none;
}

.menu-burger--active::before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transition: top 0.3s, transform 0.3s 0.3s;
}

.menu-burger--active::after {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
  transition: bottom 0.3s, transform 0.3s 0.3s;
}

.burger_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 8;
}

.burger_overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px 19px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  background: #e31b23;
  color: white;
  cursor: pointer;
  z-index: 20;
  transition: opacity 0.3s ease;
}

#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}

  .team-gradient {
      background: linear-gradient(135deg, rgba(29,66,138,0.6) 0%, rgba(10,10,10,0.95) 60%);
    }
    .team-accent {
      background: linear-gradient(90deg, #1D428A 0%, #FFC72C 100%);
    }
    .hover-scale:hover {
      transform: scale(1.03);
    }
    .player-card:hover .player-img {
      transform: scale(1.1);
    }
    .championship-ring {
      background: linear-gradient(135deg, #FFC72C 0%, #B8860B 50%, #FFC72C 100%);
    }
      /* Team Colors */
    .team-hawks { --team-color: #E03A3E; }
    .team-celtics { --team-color: #007A33; }
    .team-nets { --team-color: #000000; }
    .team-hornets { --team-color: #1D1160; }
    .team-bulls { --team-color: #CE1141; }
    .team-cavaliers { --team-color: #860038; }
    .team-mavericks { --team-color: #00538C; }
    .team-nuggets { --team-color: #0E2240; }
    .team-pistons { --team-color: #C8102E; }
    .team-warriors { --team-color: #1D428A; }
    .team-rockets { --team-color: #CE1141; }
    .team-pacers { --team-color: #002D62; }
    .team-clippers { --team-color: #C8102E; }
    .team-lakers { --team-color: #552583; }
    .team-grizzlies { --team-color: #5D76A9; }
    .team-heat { --team-color: #98002E; }
    .team-bucks { --team-color: #00471B; }
    .team-timberwolves { --team-color: #0C2340; }
    .team-pelicans { --team-color: #0C2340; }
    .team-knicks { --team-color: #006BB6; }
    .team-thunder { --team-color: #007AC1; }
    .team-magic { --team-color: #0077C0; }
    .team-76ers { --team-color: #006BB6; }
    .team-suns { --team-color: #1D1160; }
    .team-blazers { --team-color: #E03A3E; }
    .team-kings { --team-color: #5A2D81; }
    .team-spurs { --team-color: #C4CED4; }
    .team-raptors { --team-color: #CE1141; }
    .team-jazz { --team-color: #002B5C; }
    .team-wizards { --team-color: #002B5C; }

    .team-card {
      background: linear-gradient(135deg, rgba(var(--team-rgb), 0.15) 0%, transparent 60%);
    }
    .team-card:hover {
      border-color: var(--team-color);
    }
.footer {
  background: #000000;
  padding-bottom: 48px;
  padding-top: 48px;
}
.wrapper {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.f-row {
  display: flex;
  flex-direction: row;
}
.a-i-c {
  align-items: center;
}
.space-between {
  justify-content: space-between;
}
.jcc {
  justify-content: center;
}
.jc-start {
  justify-content: flex-start;
}
.jc-end {
  justify-content: flex-end;
}
.header-logo-link {
  height: 70px;
}
.img-100per-contain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.my-container{
  max-width: 1400px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.c-gap-24 {
  column-gap: 24px;
}
.header-menu-link {
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  transition: .3s;
  font-size: 18px;
  padding-left: 12px;
  padding-right: 12px;
  border-style: solid;
  border-width: 0;
  border-color: rgba(255, 255, 255, 0.5);
  border-left-width: 1px;
  font-family: Impact;
  letter-spacing: 2px;
}
.header-menu-link:hover {
  color: rgb(0, 0, 0);
}
.header-menu-link:first-child {
  border-left-width: 0;
}
.f-col {
  display: flex;
  flex-direction: column;
}
.mb-24 {
  margin-bottom: 24px;
}
.footer-link {
  transition: .3s;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-decoration: none;
  font-family: Impact;
  font-size: 18px;
  letter-spacing: 2px;
}
.footer-link:hover {
  color: rgb(255, 0, 0);
}
.footer-social-link {
  height: 48px;
  width: 48px;
  background-color: rgb(0, 119, 183);
  transition: .5s;
  align-items: center;
  display: flex;
  justify-content: center;
}
.footer-social-link:hover {
  background-color: rgb(255, 0, 0);
}
.img-36 {
  height: 36px;
  width: 36px;
  object-fit: contain;
}
.aft-bef-dashed {
  position: relative;
}
.aft-bef-dashed::after {
  width: 36%;
  border-style: dashed;
  border-width: 0;
  border-top-width: 3px;
  border-color: rgb(130, 130, 130);
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  content: "";
}
.aft-bef-dashed::before {
  border-style: dashed;
  border-width: 0;
  border-color: rgb(130, 130, 130);
  border-top-width: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 36%;
  height: 1px;
  content: "";
  display: block;
}
.creator-link {
  color: rgb(255, 0, 0);
  text-decoration: none;
  transition: .3s;
}
.creator-link:hover {
  color: rgb(160, 160, 160);
  tab-size: 0;
}
.creator-link::before {
  color: rgb(255, 0, 0);
}
.color-grey {
  color: rgb(160, 160, 160);
}
.fz-14 {
  font-size: 14px;
}
.first-screen {
  background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%), url("https://baseball-today.kz/assets/img/b27408c1bb2a721137f462a969aaa568.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.position-relative {
  position: relative;
}
.w-55per {
  width: 55%;
}
.c-gap-12 {
  column-gap: 12px;
}
.color-white {
  color: rgb(255, 255, 255);
}
.img-24 {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.first-screen-title {
  font-size: 46px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-family: Impact;
  letter-spacing: 2px;
  transition: .3s;
}
.first-screen-title:hover {
  color: rgb(255, 0, 0);
}
.mb-16 {
  margin-bottom: 16px;
}
.non-use {
  color: rgb(255, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}
.share-link {
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url('../images/1d9d705a07ef7ae302f90435d866a56c.png');
  background-position-x: 8px;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  align-items: center;
  backdrop-filter: blur(2px);
  border-radius: 16px;
  color: rgb(128, 128, 128);
  text-decoration: none;
  transition: .3s;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 28px;
  font-weight: 600;
}
.share-link:hover {
  background-color: rgba(0, 0, 0, 0.9);
  background-image: url('../images/73c210cba07be789e8acf6831dbc3311.png');
  color: rgb(255, 0, 0);
}
.flame-link {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  align-items: center;
  display: flex;
  color: rgb(255, 0, 0);
  text-decoration: none;
  transition: .3s;
  background-image: url('../images/24befde7edc3e3b84bf79badfc6f43a8.png');
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position-y: center;
  background-position-x: 8px;
  border-radius: 16px;
  padding-right: 8px;
  padding-left: 28px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: 600;
}
.flame-link:hover {
  background-image: url('../images/81a8acf1bdff93d1aaee9139dda2c3bf.png');
  color: rgb(128, 128, 128);
  background-color: rgba(220, 220, 220, 0.6);
  backdrop-filter: blur(2px);
}
.play-main-link {
  align-items: center;
  background-image: url('../images/4a30009ec3bb735edcb24eaf10523634.png');
  background-color: rgb(255, 0, 0);
  height: 48px;
  display: flex;
  background-repeat: no-repeat;
  background-position-x: 8px;
  padding-left: 52px;
  padding-right: 16px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  background-size: 36px 36px;
  background-position-y: center;
  border-radius: 36px;
  transition: .3s;
}
.play-main-link:hover {
  color: rgb(0, 0, 0);
}
.mb-64 {
  margin-bottom: 64px;
}
.p-t-b-48 {
  padding-bottom: 48px;
  padding-top: 48px;
}
.flex-1 {
  flex: 1;
}
.first-video-item {
  height: 210px;
  width: 370px;
  position: relative;
  overflow: hidden;
}
.img-100per-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-item-absolute {
  background: rgba(0, 0, 0, .5);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.video-item-first-desc {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.img-48 {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.play-btn-link {
  height: 48px;
  width: 48px;
  display: block;
  background-image: url('../images/4a30009ec3bb735edcb24eaf10523634.png');
  background-repeat: no-repeat;
  background-size: contain;
  transition: .3s;
  border-style: none;
}
.play-btn-link:hover {
  background-image: url('../images/03a139fcbae5bac6bdd0b3e8951fb67f.png');
}
.hover-scale-1-05 {
  transition: .3s;
}
.hover-scale-1-05:hover {
  transform: scale(1.05);
}
.video-item-desc-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: .3s;
}
.video-item-desc-link:hover {
  color: rgb(255, 0, 0);
}
.uppercase {
  text-transform: uppercase;
}
.fw-600 {
  font-weight: 600;
}
.fz-32 {
  font-size: 32px;
}
.first-screen-abs-line {
  position: absolute;
  right: 24px;
  height: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fz-90 {
  font-size: 90px;
}
.ff-impact {
  font-family: Impact;
}
.first-vert-line {
  width: 1px;
  height: 90%;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-width: 3px;
}
.link-arrow-down {
  background: #ffffff;
  background-image: url('../images/d5e44cd96b8ec0373fa5edd97ae3e35d.png');
  height: 64px;
  width: 64px;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  border-radius: 100%;
  background-size: 80% 80%;
  transition: .3s;
}
.link-arrow-down:hover {
  background: red;
  background-image: url('../images/d5574403df7ebc33f9675c3a79511b0e.png');
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: 80% 80%;
}
.p-t-24 {
  padding-top: 24px;
}
.page-subtitle {
  font-family: Impact;
  letter-spacing: 1px;
  font-variant: small-caps;
  background: linear-gradient(45deg, rgba(255,0,0,1) 1%, rgba(0,0,0,0) 1%);
  padding-bottom: 8px;
  padding-left: 12px;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgb(180, 180, 180);
  position: relative;
  font-size: 32px;
}
.page-subtitle::before {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 4px;
  border-color: rgb(255, 0, 0);
  display: block;
  content: "";
  height: 100%;
  width: 3%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 24px;
}
.grid-3x2-gap24 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 24px;
}
.grid-3x2-gap24::before {
}
.news-item {
  background: #ffede5;
  transition: .3s;
}
.news-item:hover {
  box-shadow: 0px 0px 12px 2px rgb(213, 213, 213);
}
.h-240px {
  height: 240px;
}
.h-240px::before {
}
.news-item-img {
  display: block;
  transition: 2s;
  position: relative;
  overflow: hidden;
}
.news-item-content {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
.news-item-link {
  transition: .3s;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  font-variant: small-caps;
}
.news-item-link:hover {
  color: rgb(255, 0, 0);
}
.read-more-link {
  border-radius: 16px;
  background: red;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: .3s;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 600;
  font-size: 18px;
}
.read-more-link:hover {
  color: rgb(0, 0, 0);
}
.grid-2x2-gap24 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 24px;
}
.main-teams-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffede5;
}
.img-196 {
  height: 196px;
  width: 196px;
  object-fit: contain;
}
.padding-16 {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
.team-name {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: rgb(100, 21, 21);
  transition: .3s;
  letter-spacing: 1px;
}
.team-name:hover {
  color: rgb(255, 0, 0);
}
.fz-18 {
  font-size: 18px;
}
.team-card-stat {
  display: flex;
  flex: 1;
  flex-direction: column;
  row-gap: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  border-style: solid;
  border-width: 0;
  border-left-width: 1px;
  border-color: rgb(255, 0, 0);
}
.w-45per {
  width: 45%;
}
.red-radial {
  background: radial-gradient(circle, rgba(255,0,0,1) 20%, rgba(255,237,229,1) 60%);
}
.grid-3x1-gap24 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 24px;
}
.review-place {
  font-weight: 600;
  padding-left: 24px;
  background-image: url('../images/0a9a1a9c02d6085f038569497742af74.png');
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: center;
  background-size: contain;
}
.grid-3x1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.big-team-link {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 600;
  row-gap: 8px;
  text-decoration: none;
  color: rgb(82, 8, 8);
  transition: .3s;
}
.big-team-link:hover {
  color: rgb(255, 0, 0);
  transform: scale(1.05);
}
.img-96-contain {
  height: 96px;
  width: 96px;
  object-fit: contain;
}
.main-video-section {
  background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%), url("https://baseball-today.kz/assets/img/42d74e262fac1f61776f17fb0a43604d.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  background-position-x: center;
  background-attachment: fixed;
  padding-bottom: 48px;
}
.w-30per {
  width: 30%;
}
.video-post-aside-card {
  display: flex;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  column-gap: 16px;
  width: 100%;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: .3s;
}
.video-post-aside-card:hover {
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  color: rgb(255, 0, 0);
}
.ovf-hidden {
  overflow: hidden;
}
.video-card-absolute {
  align-items: center;
  background: radial-gradient(circle, rgba(46,35,0,0.7) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.w70-per {
  width: 70%;
}
.video-post-link-big {
  display: block;
  height: 520px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img-128 {
  height: 128px;
  width: 128px;
  object-fit: contain;
}
.news-item-img-absolute {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  left: 0;
  width: 928px;
  padding-left: 464px;
}
.news-item-img-absolute:hover {
  padding-left: 0;
  padding-right: 464px;
}
.bg-black-opacity {
  background: rgba(0,0,0,.6);
}
.h-100per {
  height: 100%;
}
.circle-share {
  background: rgba(0,0,0,.6);
  border-radius: 100%;
  height: 52px;
  width: 52px;
  background-image: url('../images/3c0c3b1453dc1cfa8103eafd5059c5fc.png');
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 42%;
  transition: .3s;
}
.circle-share:hover {
  transform: scale(1.1);
}
.main-player-card {
  display: flex;
  flex: 1;
  height: 400px;
  overflow: hidden;
  position: relative;
  color: rgb(255, 255, 255);
  transition: .3s;
  padding-top: 24px;
}
.main-player-card:hover {
  color: rgb(197, 197, 197);
}
.main-player-card-desc {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  height: 100px;
  transform: skew(-30deg, 0deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: red;
}
.main-player-scew-reset {
  transform: skew(30deg, 0deg);
}
.flex-wrap {
  flex-wrap: wrap;
}
.tournaments-card {
  position: relative;
  overflow: hidden;
  height: 452px;
}
.tournaments-card:hover {
  background-size: 120% 120%;
}
.opacity-08 {
  opacity: 0.8;
}
.tournaments-desc {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(127deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 100%);
  padding-top: 24px;
}
.tournaments-desc:hover {
}
.tourn-name {
  text-decoration: none;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-family: Impact;
  letter-spacing: 2px;
  font-size: 28px;
  transition: .3s;
}
.tourn-name:hover {
  color: rgb(255, 83, 83);
}
.r-gap-12 {
  row-gap: 12px;
}
.r-gap-24 {
  row-gap: 24px;
}
.gallery-container {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.gallery-item {
  display: block;
  height: 280px;
  overflow: hidden;
  position: relative;
  opacity: 0.9;
  transition: .3s;
}
.gallery-item:hover {
  opacity: 1;
}
.gallery-1 {
  grid-area: 1 / 1 / 2 / 3;
}
.gallery-2 {
  grid-area: 1 / 3 / 2 / 5;
}
.gallery-3 {
  grid-area: 1 / 5 / 2 / 7;
}
.gallery-4 {
  grid-area: 2 / 1 / 3 / 4;
}
.gallery-5 {
  grid-area: 2 / 4 / 3 / 7;
}
.hover-rotate-1deg {
}
.hover-rotate-1deg:hover {
  rotate: 1deg;
}
.breadcrumb-link {
  color: rgb(63, 4, 4);
  text-decoration: none;
  font-variant: small-caps;
  font-weight: 600;
  transition: .3s;
}
.breadcrumb-link:hover {
  color: rgb(255, 0, 0);
}
.img-18 {
  height: 18px;
  width: 18px;
  object-fit: contain;
}
.fz-48 {
  font-size: 48px;
}
.pag-arrow {
  height: 32px;
  width: 48px;
  padding-left: 16px;
  transition: .3s;
}
.pag-arrow:hover {
  padding-left: 0;
  padding-right: 16px;
}
.pag-link {
  color: rgb(72, 0, 0);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  transition: .3s;
}
.pag-link:hover {
  color: rgb(255, 0, 0);
}
.rotate-180 {
  rotate: 180deg;
}
.hover-scale-1-2 {
  transition: .3s;
}
.hover-scale-1-2:hover {
  scale: 1.2;
}
.t-a-c {
  text-align: center;
}
.grid-4x1-gap24 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.contact-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  border: 1px solid red;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
.contact-link {
  color: rgb(70, 6, 6);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}
.contact-link:hover {
  color: rgb(255, 0, 0);
}
.h-480 {
  height: 480px;
}
.tourn-event-head {
  font-weight: 600;
  letter-spacing: 1px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-top: 16px;
  color: rgb(255, 255, 255);
  background: red;
  font-size: 18px;
}
.group-row {
  align-items: center;
  display: grid;
  grid-template-columns: 4fr repeat(5, 1fr);
  padding-bottom: 8px;
  padding-left: 12px;
  padding-top: 8px;
  font-size: 20px;
}
.calendar-matches {
  background: rgba(255,0,0,0.05);
  border-style: solid;
  border-width: 0;
  border-color: rgb(255, 0, 0);
  border-left-width: 1px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.calendar-head {
  align-items: center;
  background: rgba(255,0,0,0.2);
  border-style: solid;
  border-width: 0;
  border-color: rgb(255, 0, 0);
  border-top-width: 3px;
  border-bottom-width: 1px;
  display: grid;
  font-size: 20px;
  font-variant: small-caps;
  font-weight: 600;
  grid-template-columns: repeat(7, 1fr);
  height: 60px;
  color: rgb(59, 4, 4);
  text-align: center;
}

.opacity-50per {
  opacity: 0.5;
}
.table-team {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  column-gap: 16px;
  text-align: left;
  text-decoration: none;
  transition: .3s;
  color: rgb(79, 0, 0);
}
.table-team:hover {
  transform: scale(1.05);
}
.img-64 {
  height: 64px;
  width: 64px;
  object-fit: contain;
}
.breadcrumb-video-link {
  font-variant: small-caps;
  font-weight: 600;
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: .3s;
}
.breadcrumb-video-link:hover {
  color: rgb(254, 146, 146);
}
.player-head {
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.2) 100%), url("https://baseball-today.kz/assets/img/c77c9af0ffc56cb75e6540720d24e35d.jpg");
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.w-70per {
  width: 70%;
}
.grid-player-summary-row {
  display: grid;
  grid-template-columns: 4fr repeat(6, 1fr) 1.5fr 1fr 1.5fr;
  text-align: center;
  height: 48px;
  align-items: center;
  padding-left: 16px;
  background-color: rgba(0, 0, 0, 0.4);
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgb(20, 20, 20);
}
.bg-black-opacity-07 {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}
.t-a-l {
  text-align: left;
}
.text-indent-24 {
  text-indent: 24px;
}
.plyer-bio-left-img {
  height: 240px;
  object-fit: contain;
  float: left;
  margin-right: 12px;
  margin-bottom: 6px;
}
.plyer-bio-rght-img {
  float: right;
  height: 240px;
  object-fit: contain;
  margin-left: 12px;
}
.player-stats-row {
  align-items: center;
  display: grid;
  grid-template-columns: 2fr repeat(12, 1fr);
  text-align: center;
  height: 42px;
  padding-left: 12px;
  padding-right: 12px;
}
.squad-title {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-top: 12px;
}
.squad-row {
  align-items: center;
  display: grid;
  font-size: 18px;
  font-weight: 600;
  grid-template-columns: 1fr 1fr 4fr 1fr 1fr;
  padding-bottom: 8px;
  padding-top: 8px;
  text-align: center;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
}
.lineup-player {
  align-items: center;
  display: flex;
  column-gap: 16px;
  color: rgb(100, 12, 12);
  text-decoration: none;
  transition: .3s;
  font-weight: 600;
}
.lineup-player:hover {
  color: rgb(255, 0, 0);
  transform: scale(1.05);
}
.position-sticky {
  position: sticky;
  top: 24px;
}
.group-post-row {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-bottom: 8px;
  padding-left: 12px;
  padding-top: 8px;
  font-size: 18px;
}
.p-b-24 {
  padding-bottom: 24px;
}
.league-title {
  background: red;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  font-size: 18px;
  font-weight: 600;
}
.main-review-team {
  align-items: center;
  display: flex;
  font-size: 22px;
  font-weight: 700;
  column-gap: 16px;
  transition: .3s;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(255, 255, 255);
}
.main-review-team:hover {
  color: rgb(255, 0, 0);
  scale: 1.1;
}
.w-35per {
  width: 35%;
}
.line-up-head {
  align-items: center;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 3px;
  border-color: rgb(255, 0, 0);
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  font-variant: small-caps;
}
.lineup-row {
  align-items: center;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgba(0, 0, 0, 0.4);
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
  padding-bottom: 4px;
  padding-top: 4px;
}
.a-i-end {
  align-items: flex-end;
}
.w-65per {
  width: 65%;
}
.match-review-row {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  text-align: center;
  padding-bottom: 16px;
  padding-top: 16px;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgb(255, 181, 181);
  font-size: 20px;
}
.match-review-head {
  background-color: rgba(255, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 16px;
  padding-left: 16px;
}
.match-review-team-link {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: rgb(72, 0, 0);
  transition: .3s;
  text-decoration: none;
}
.match-review-team-link:hover {
  color: rgb(255, 0, 0);
}
.match-time-event {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
}
.match-time-minute {
  align-items: center;
  border-style: dashed;
  border-width: 0;
  border-right-width: 4px;
  border-bottom-color: rgb(235, 217, 217);
  border-color: rgb(255, 0, 0);
  display: flex;
  justify-content: center;
}
.fz-24 {
  font-size: 24px;
}
.bg-red-opacity {
  background-color: rgba(255, 0, 0, 0.2);
}
@media (max-width: 1386px) {
  .menu-burger {
    display: block;
  }
  
  .header-nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 24px;
    z-index: 99;
    overflow: scroll;
    width: 250px;
    background: #0c0c0c;
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .header-list-item-link:not(.header-list-item-link--active) {
    color: #fff;
  }
  
  .header-nav-list-mobile {
    align-items: flex-start;
    padding-left: 50px;
    backdrop-filter: blur(19px);
    font-weight: 700;
    transform: translateY(0);
  }
}
/* Mobile Styles для Result Cards */
@media (max-width: 1023px) {
  .result-card .p-3 > div:first-child {
    flex-direction: column;
    gap: 1rem;
  }
  
  .result-card .flex.items-center.gap-6.flex-1 {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  /* Game Details - stack on mobile */
  .result-card .lg\:border-l {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 639px) {
  /* Score smaller on mobile */
  .result-card .text-4xl {
    font-size: 1.75rem;
  }
  
  /* Team links - column layout */
  .result-card a[href^="/team/"] {
    flex-direction: column;
    text-align: center;
  }
  
  .result-card a[href^="/team/"] div {
    text-align: center;
  }
  
  /* Quarter scores - wrap and hide some on very small screens */
  .result-card .border-t.border-white\/10 {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .result-card .border-t .ml-auto {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  /* Buttons - full width */
  .result-card .flex.gap-2:has(a[href*="review"]) {
    flex-direction: column;
    width: 100%;
  }
  
  .result-card .flex.gap-2 a {
    width: 100%;
    text-align: center;
  }
  
  /* Top scorer section */
  .result-card .text-center:has(span:contains("Top Scorer")) {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Very small screens */
@media (max-width: 400px) {
  .result-card .text-4xl {
    font-size: 1.5rem;
  }
  
  .result-card img.w-14 {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  /* Hide quarter details on very small screens */
  .result-card .border-t span:not(.ml-auto):not(.text-\[\#888\]:first-child):not(:nth-child(2)) {
    display: none;
  }
}