*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}

body {
  background: #fafafa;
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.f-row {
  display: flex;
  flex-direction: row;
}
.f-column {
  display: flex;
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}
.a-i-c {
  align-items: center;
}
.jcc {
  justify-content: center;
}
.jc-end {
  justify-content: flex-end;
}
header {
  background: #ffffff;
  border-top: 4px solid #cc0000;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px double #e0e0e0;
  margin-bottom: 15px;
  padding: 0 15px 15px;
}

.header-nav-list {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.header-nav-item {
  padding: 8px 20px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid #e0e0e0;
  transition: all 0.3s;
  white-space: nowrap;
}
.header-nav-item:hover {
  background: #cc0000;
  color: white;
}
.header-nav-item--active {
  background: #cc0000;
  color: white;
}
.header-nav-item:last-child {
  border: none;
}

.header-logo {
  font-size: 42px;
  font-weight: 900;
  color: #cc0000;
  text-decoration: none;
  letter-spacing: -2px;
  font-family: "Arial Black", sans-serif;
  position: relative;
}
.header-logo-link {
  font-size: 42px;
  font-weight: 900;
  color: #cc0000;
  text-decoration: none;
  letter-spacing: -2px;
  font-family: "Arial Black", sans-serif;
  position: relative;
}

.burger {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
  margin-left: auto;
  margin-right: 15px;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 3px;
  transition: all 0.3s;
}
.burger.active span {
  background: white;
}

/* Анімація бургер-меню */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.edition-info {
  text-align: right;
  font-size: 11px;
  color: #666;
  font-style: italic;
}
.edition-date {
  font-weight: bold;
  color: #1a1a1a;
}
.img-100per-contain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.gap-c-24 {
  column-gap: 24px;
}
.header-link {
  text-decoration: none;
  text-transform: capitalize;
  color: rgb(30, 30, 30);
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
}
.header-link:hover {
  color: rgb(255, 89, 45);
}
.live-ticker {
  background: #1a1a1a;
  color: white;
  padding: 12px 0;
  /* margin-bottom: 30px; */
  overflow: hidden;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0;
  background: #cc0000;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  top: 0;
  bottom: 0;
  align-items: center;
  display: flex;
}
.ticker-content {
  display: flex;
  animation: scroll 30s linear infinite;
  padding-left: 150px;
}
.ticker-item {
  padding: 0 30px;
  white-space: nowrap;
  font-size: 13px;
}
.ticker-item:hover {
  color: #eb6642;
}
.ticker-time {
  color: #ff6b6b;
  font-weight: 700;
  margin-right: 10px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.page-layout {
  display: flex;
  gap: 24px;
}
.main-content {
  flex: 3;
  min-width: 0;
  overflow: hidden;
}
.main-content .swiper,
.aside-content .swiper {
  width: 100%;
}
.hero-section {
  background: white;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  position: relative;
}
.hero-content {
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}
.hero-title-wrap {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.hero-subtitle {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.hero-text {
  font-size: 18px;
  color: #666;
  font-style: italic;
  line-height: 1.4;
}
.btn-wrap {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.btn-primary {
  display: inline-block;
  background: #cc0000;
  color: white;
  padding: 4px 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #cc0000;
}
.btn-primary:hover {
  background: white;
  color: #cc0000;
}
.section-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.aside-content {
  flex: 1;
}
.aside-content {
  position: sticky;
  top: 10px;
  height: fit-content;
}
.tournament-widget {
  background: white;
  border: 2px solid #cc0000;
  padding: 20px;
  margin-bottom: 20px;
}
.tournament-header {
  background: #cc0000;
  color: white;
  margin: -20px -20px 20px -20px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.tournament-match {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.tournament-date {
  font-size: 10px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 700;
}
.tournament-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.tournament-team {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.tournament-team-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.tournament-review {
  display: inline-block;
  margin-top: 8px;
  color: #cc0000;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}
.tournament-review:hover {
  color: #990000;
  text-decoration: underline;
}
.widget-news {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 20px;
}
.widget-news-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #1a1a1a;
}
.widget-news-title {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.widget-news-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.widget-news-item-time {
  font-size: 10px;
  color: #cc0000;
  font-weight: 700;
  margin-bottom: 5px;
}
.widget-news-item-title {
  font-weight: 600;
  line-height: 1.3;
}
.widget-news-item-title:hover {
  color: #cc0000;
}
.quote-box {
  background: #f8f8f8;
  border-left: 5px solid #cc0000;
  padding: 20px;
  margin-bottom: 20px;
  font-style: italic;
}
.quote-text {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}
.quote-author {
  font-size: 12px;
  color: #666;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 3px solid #1a1a1a;
}
.section-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.section-header-categories {
  display: flex;
  column-gap: 16px;
}
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
.news-card--large {
  grid-column: span 2;
}

.bg-grey {
  background: #fff7f5;
}
.p-t-b-48 {
  padding-bottom: 48px;
  padding-top: 48px;
}
.pt-48 {
  padding-top: 48px;
}
.pb-48 {
  padding-bottom: 48px;
}
.footer {
  background: #1a1a1a;
  color: white;
  border-top: 5px solid #cc0000;
}
.footer-inner {
  display: flex;
  column-gap: 48px;
}
.footer-item-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #cc0000;
}
.flex-1 {
  flex: 1;
}
.color-dark-grey {
  color: rgb(150, 143, 141);
}
.ul-reset {
  list-style: none;
  padding-left: 0px;
}
.footer-link {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-link:hover {
  color: rgb(255, 255, 255);
}
.footer-menu-list {
  flex-direction: column;
  display: flex;
  row-gap: 4px;
}
.footer-item-text {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.feedback-input {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #1a1a1a;
  outline: 0;
  font-size: 14px;
  transition: 0.3s;
}
.feedback-input:focus {
  border-color: #cc0000;
}
.feedback-input::placeholder {
  color: #999;
}
.feedback-btn {
  background: #cc0000;
  border: none;
  outline: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.feedback-btn:hover {
  background: #990000;
}
.gap-c-48 {
  column-gap: 48px;
}
.color-red {
  color: rgb(255, 89, 45);
}
.fz-48 {
  font-size: 48px;
}
.red-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  background: #cc0000;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}
.red-link:hover {
  background: #990000;
  color: #fff;
}
.red-reverse-link {
  background: #ffc8ad;
  color: rgb(67, 0, 0);
}
.red-reverse-link:hover {
  background: #ff592d;
  color: rgb(255, 255, 255);
}
.gap-r-24 {
  row-gap: 24px;
}
.uppercase {
  text-transform: uppercase;
}
.fw-500 {
  font-weight: 500;
}
.letter-spacing-1px {
  letter-spacing: 1px;
}
.fw-700 {
  font-weight: 700;
}
.color-brown {
  color: #1a1a1a;
}
.fz-20 {
  font-size: 20px;
}
.page-subtitle {
  background: #f8f8f8;
  padding: 10px 15px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  border-left: 4px solid #cc0000;
}
.page-subtitle::after {
}
.page-subtitle::before {
}
.width-100per {
  width: 100%;
}
.category-link {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  align-items: center;
  background: #cc0000;
  color: white;
  padding: 4px 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
}
.category-link:hover {
  background: #990000;
}
.img-16 {
  height: 16px;
  width: 16px;
  object-fit: contain;
}
.category-link-active {
  background: #990000;
}

.gap-c-12 {
  column-gap: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mt-24 {
  margin-top: 24px;
}
.m-l-r-15{
    margin-left:15px;
    margin-right:15px;
}
.main-news-top-container {
  grid-template-columns: 1fr 2fr;
  display: grid;
  grid-gap: 16px;
}
.news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.news-card-link-img {
  height: 180px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  position: relative;
  display: block;
}
.hover-scale {
  transition: 0.3s;
}
.hover-scale:hover {
  transform: scale(1.03);
}
.img-100per-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-card-desc {
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news-card-desc-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.news-card-desc-text {
  color: #666;
}
.news-card-desc-title:hover {
  color: rgb(235, 102, 66);
}
.news-card-comm {
  border-style: solid;
  border-width: 0;
  border-color: rgb(225, 225, 225);
  border-top-width: 1px;
  font-weight: 500;
}
.grid-3c-2r {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.h-320 {
  height: 320px;
}
.grid-gap-16 {
  grid-gap: 16px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-32 {
  margin-top: 32px;
}
.pagination-link {
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: 500;
  height: 24px;
  width: 24px;
  color: rgb(129, 30, 15);
  text-decoration: none;
  transition: 0.3s;
  border-radius: 100%;
}
.pagination-link:hover {
  background: #ff592d;
}
.rotate-180 {
  rotate: 180deg;
}
.calendar-head {
  align-items: center;
  background: #551f1e;
  color: rgb(255, 181, 152);
  display: grid;
  font-size: 20px;
  font-weight: 700;
  grid-template-columns: repeat(7, 1fr);
  height: 48px;
  text-align: center;
  text-transform: uppercase;
}
.calendar-days-container {
  border-style: solid;
  border-width: 0;
  border-color: rgb(129, 30, 15);
  border-top-width: 1px;
  border-left-width: 1px;
}
.calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-day {
  align-items: center;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-color: rgb(129, 30, 15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 700;
  height: 140px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 8px;
}
.img-36 {
  height: 36px;
  width: 36px;
  object-fit: contain;
}
.fz-14 {
  font-size: 14px;
}
.calendar-event-link-more {
  align-items: center;
  background: #cc0000;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  padding: 4px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calendar-event-link-more:hover {
  background: #990000;
}
.bg-red {
  background: white;
  border: 2px solid #e0e0e0;
}
.bg-light-orange {
  background: #ffdac2;
}
.popular-sport {
  background-image: url("../images/ff6431c052bf51b500d943eaf0e53cef.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.popular-sport-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  gap: 16px;
}
.popular-sport-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 218, 194, 0.6);
  backdrop-filter: blur(6px);
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  color: rgb(54, 6, 6);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  font-size: 20px;
  transition: 0.3s;
}
.popular-sport-card-img {
  height: 192px;
  object-fit: cover;
  width: 100%;
}
.popular-sport-card:hover {
  background: rgba(255, 218, 194, 1);
  margin-top: -4px;
  margin-bottom: 4px;
}
.img-192 {
  height: 192px;
  object-fit: contain;
  width: 192px;
}
.matches-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.matches-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 700;
  padding: 20px;
  transition: all 0.3s;
  cursor: pointer;
  gap: 8px;
}
.matches-card:hover {
  border-color: #cc0000;
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.1);
}
.matches-card-teams {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 16px;
}
.matches-card-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.matches-card-team:last-child {
  flex-direction: column-reverse;
}
.matches-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.matches-card-top-item {
  font-style: normal;
  font-weight: 500;
  color: #666;
  font-size: 13px;
}
.fixtures-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.border-radius-18 {
  border-radius: 8px;
}
.videos-section {
  background: #1a1a1a;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.latest-video-cards {
  flex: 1;
}
.latest-video-card {
  align-items: center;
  display: flex;
  column-gap: 16px;
  height: 25%;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  text-decoration: none;
  transition: 0.3s;
  color: rgb(255, 255, 255);
}
.latest-video-card:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.05);
}
.latest-video-desc {
  display: flex;
  flex-direction: column;
  width: 60%;
  font-weight: 700;
}
.fz-12 {
  font-size: 12px;
}
.latest-video-card-img {
  width: 33%;
  object-fit: cover;
  height: 100px;
  position: relative;
  overflow: hidden;
}
.main-teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 24px;
}
.main-teams-card {
  background: white;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}
.main-teams-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.main-teams-card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-teams-card-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.main-teams-card-desc {
  display: flex;
  flex-direction: column;
}
.main-teams-card-desc-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.main-teams-card-desc-stats {
  display: flex;
  margin-bottom: 15px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.main-teams-card-desc-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.videos-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.videos-play-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fz-24 {
  font-size: 24px;
}
.team-card-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding: 15px 10px;
  border-right: 1px solid #f0f0f0;
}
.team-card-stat:last-child {
  border-right: none;
}
.team-card-stat-value {
  font-size: 24px;
  color: #cc0000;
}
.p-16 {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
.bg-light-orange-opacity6-blur-6 {
  background: rgba(255, 218, 194, 0.6);
  backdrop-filter: blur(6px);
  background-color: rgba(255, 218, 194, 0.2);
}
.width-40per {
  width: 40%;
}
.img-48 {
  height: 48px;
  width: 48px;
  object-fit: contain;
}
.img-24 {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.width-50per {
  width: 50%;
}
.table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  /* max-width: 100%; */
}
.main-table {
  border: 1px solid #dedede;
  /* width: 100%; */
  min-width: 100%;
}

.main-table-head {
  background: #f8f8f8;
  display: grid;
  /* grid-template-columns: 2fr repeat(4, 1fr); */
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  color: #666;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #cc0000;
  align-items: center;
}
.main-table-head-cell-sticky {
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
  padding: 12px 16px;
}
.color-white-t-a-c {
  color: rgb(255, 255, 255);
  text-align: center;
}
.t-a-left {
  text-align: left;
}
.main-table-row {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  /* grid-template-columns: 1fr repeat(5, 1fr); */
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
  transition: 0.3s;
  font-size: 14px;
  background: #fff;
}
.main-table-row:hover {
  background: #fff9f9;
}
.main-table-team {
  display: flex;
  align-items: center;
  column-gap: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
  justify-content: space-between;
  padding: 12px 16px;
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
}
.main-table-team-name {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.main-table-row:hover .main-table-team-name {
  color: #cc0000;
}
.main-table-team:hover {
  color: #cc0000;
}
.main-fixtures-row {
  align-items: center;
  display: grid;
  grid-template-columns: 4fr 1fr 4fr;
  padding: 15px;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
.main-fixtures-row:hover {
  background: #fff9f9;
}
.main-fixtures-link {
  align-items: center;
  display: flex;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  column-gap: 12px;
  transition: 0.3s;
}
.text-end {
  text-align: end;
}
.main-fixtures-link:hover {
  color: #cc0000;
}
.jcend {
  justify-content: flex-end;
}
.t-a-center {
  text-align: center;
}
.bg-white {
  background: #fff;
}
.page-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #1a1a1a;
  padding-left: 16px;
  border-left: 4px solid #cc0000;
  text-transform: uppercase;
  line-height: 1.2;
}
.pagin-link {
  border: 1px solid #cc0000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  height: 32px;
  width: 32px;
  font-weight: 700;
  background: #fff;
  color: #cc0000;
  transition: 0.3s ease;
}
.pagin-link:hover {
  background: #cc0000;
  color: #fff;
}
.pagin-link.active {
  background: #cc0000;
  color: #fff;
}
.mb-24 {
  margin-bottom: 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  margin-bottom: 32px;
}
.stats-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.players-table {
  border: 1px solid #e0e0e0;
  width: 100%;
  background: #fff;
}
.players-table-row {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: 1fr 5fr repeat(2, 1fr);
  padding: 8px;
  transition: 0.3s;
  height: 50px;
}
.stats-min-table {
  display: grid;
  grid-template-rows: repeat(7, 1fr);
}
.stats-min-table-row {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: 1fr 2fr repeat(2, 1fr);
  transition: 0.3s;
  text-align: center;
  background: #fff;
}
.stats-min-table-row:hover .table-player-name {
  color: #cc0000;
}
.stats-min-table-row:hover {
  background: #fff9f9;
}
.stats-min-table-head {
  text-align: center;
  text-transform: uppercase;
  background: #f8f8f8;
  color: #666;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  border-bottom: 2px solid #cc0000;
}
.stats-min-table-head:hover {
  background: #f8f8f8;
}
.stats-min-table-player {
  align-items: center;
  display: flex;
  column-gap: 10px;
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s;
  padding: 8px;
  text-align: left;
  justify-content: space-between;
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
}
.stats-min-table-player:hover {
  color: #cc0000;
}
.stats-min-table-player-img {
  border-radius: 100%;
  height: 36px;
  width: 36px;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}
.page-league-table {
  display: grid;
  grid-template-rows: 1.2fr repeat(16, 1fr);
}
.league-table-head {
  grid-template-columns: 1fr 1.5fr repeat(7, 1fr) 2fr;
  display: grid;
  align-items: center;
  background: #f8f8f8;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #cc0000;
}
.league-table-head-cell-sticky {
  padding: 12px 8px;
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
}
.league-table-head .main-table-head-cell--2 {
  position: sticky;
  left: 100px;
  background-color: inherit;
}
.league-table-row {
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  font-size: 14px;
  grid-template-columns: 1fr 1.5fr repeat(7, 1fr) 2fr;
  transition: 0.3s;
  text-align: center;
  background: #fff;
  align-items: center;
}
.league-table-row:hover {
  background: #fff9f9;
}
.league-table-team-link {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  column-gap: 12px;
  text-decoration: none;
  padding: 12px 12px 12px 12px;
  color: #1a1a1a;
  transition: 0.3s;
  justify-content: space-between;
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
}
.league-table-team-link-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  position: sticky;
  left: 100px;
  text-align: left;
  background-color: inherit;
}
.league-table-team-link:hover {
  color: #cc0000;
}
.league-table-row:hover .league-table-team-link-name {
  color: #cc0000;
}
.table-forms {
  align-items: center;
  display: flex;
  justify-content: space-around;
}
.table-league-circle {
  border-radius: 100%;
  height: 16px;
  width: 16px;
}
.bg-draw {
  background: #cbd9dc;
}
.bg-win {
  background: #6aaf5c;
}
.bg-lose {
  background: #f56363;
}
.videos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.video-card {
  display: flex;
  background: #fff;
  text-decoration: none;
  color: #1a1a1a;
  flex-direction: column;
  transition: 0.3s;
  border: 1px solid #e0e0e0;
  transition: 0.3s ease;
}
.video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.of-hidden {
  overflow: hidden;
}
.relative {
  position: relative;
}
.h-240 {
  height: 240px;
}
.playback-absolute {
  background: rgba(0, 0, 0, 0.4);
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.playback-absolute:hover {
  background: rgba(204, 0, 0, 0.6);
}
.main-match-link {
  align-items: center;
  display: flex;
  font-weight: 700;
  column-gap: 12px;
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s;
  flex-direction: column;
  text-align: center;
}
.main-match-score {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.main-match-link:last-child {
  flex-direction: column-reverse;
}
.main-match-link:hover {
  color: #cc0000;
}
.img-72 {
  height: 72px;
  width: 72px;
  object-fit: contain;
}
.results-btn {
  text-transform: capitalize;
  font-size: 14px !important;
}
.main-news-card-desc {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
.main-news-card-desc-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  transition: 0.3s ease;
}
.video-card:hover .main-news-card-desc-title {
  color: #cc0000;
}
.main-news-card-desc-date {
  font-weight: 500;
  color: #666;
  font-size: 13px;
  margin-top: 8px;
  display: block;
}
.grid-2-row {
  grid-template-rows: 1fr 1fr;
}
.width-80per {
  width: 80%;
}
.contact-link-email {
  text-decoration: none;
  color: rgb(51, 9, 9);
  transition: 0.3s;
  font-size: 18px;
}
.contact-link-email:hover {
  color: rgb(121, 43, 43);
}
.w-65per {
  width: 65%;
}
.h-540 {
  height: 540px;
}
.mb-8 {
  margin-bottom: 8px;
}
.w-35per {
  width: 35%;
}
.d-block {
  display: block;
}
.recent-news-post {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.grid-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 12px;
}
.main-match-item {
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  transition: 0.3s;
}
.main-match-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.main-match-item-status {
  font-size: 11px;
  padding: 6px 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  background: #cc0000;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.main-match-item-location {
  font-style: normal;
  margin-bottom: 16px;
  font-weight: 500;
  color: #666;
  font-size: 13px;
}
.font-italic {
  font-style: italic;
}
.main-match-item-event {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  gap: 16px;
}
.fz-32 {
  font-size: 32px;
}
.league-title {
  background-color: #cc0000;
  border-radius: 3px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.main-last-match-event {
  align-items: center;
  display: grid;
  column-gap: 32px;
  grid-template-columns: 3.5fr 1fr 3.5fr;
}
.main-review-team {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  column-gap: 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
  color: #1a1a1a;
}
.main-review-team:hover {
  color: #cc0000;
}
.main-review-result {
  border: 2px solid #cc0000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  color: #cc0000;
  padding: 8px;
  background: #fff;
}
.a-i-end {
  align-items: flex-end;
}
.h-100per {
  height: 100%;
}
.jc-start {
  justify-content: flex-start;
}
.gap-r-8 {
  row-gap: 8px;
}
.fz-18 {
  font-size: 18px;
}
.space-around {
  justify-content: space-around;
}
.top-review {
  display: flex;
  align-items: center;
  row-gap: 24px;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  padding: 24px;
}
.top-review-subltitle {
  color: #666;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
.main-review-team-img {
  height: 96px;
  object-fit: contain;
  width: 96px;
}
.review-match-inner {
  display: flex;
  column-gap: 24px;
}
.review-match-aside {
  flex: 1;
}
.match-review-main {
  flex: 2;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 12px 2px rgb(245, 245, 245);
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
}

.line-up-head {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 2px solid #cc0000;
  color: #1a1a1a;
}
.lineup-row {
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
  padding-bottom: 10px;
}
.lineup-player {
  display: flex;
  column-gap: 16px;
  padding: 8px;
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s;
  justify-content: space-between;
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
}
.lineup-player:hover {
  color: #cc0000;
}
.lineup-player-info {
  display: flex;
  flex-direction: column;
}
.lineup-player-name {
  font-weight: 600;
  font-size: 16px;
}
.lineup-player-position {
  font-size: 14px;
}
.match-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.img-64 {
  height: 64px;
  width: 64px;
  object-fit: contain;
}

.match-review-head {
  background: #f8f8f8;
  padding: 16px;
  border-bottom: 2px solid #cc0000;
}
.match-review-head-title {
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 1px;
}
.match-review-row {
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  color: #1a1a1a;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s;
  gap: 8px;
}
.match-review-row-label {
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
}
.match-review-row:hover {
  background: #fff9f9;
}
.match-review-team-link {
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: 700;
  column-gap: 16px;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}
.match-review-team-link:hover {
  color: #cc0000;
}
.opacity-06 {
  opacity: 0.6;
}
.bg-brown {
  background: #580a05;
}
.match-time-event {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 20px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  text-align: left;
}
.match-time-event-title {
  text-transform: uppercase;
}
.match-time-event.bg-grey {
  background: #fff9f9;
  border-color: #cc0000;
}
.match-time-info {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
.match-time-info-title {
  font-size: 20px;
  font-weight: 500;
}
.match-time-minute {
  align-items: center;
  border-right: 2px solid #e0e0e0;
  display: flex;
  justify-content: center;
}
.match-time-minute-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.match-time-minute-num {
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #cc0000;
}
.a-i-s {
  align-items: flex-start;
}
.ff-verdana {
  font-family: Verdana;
}
.float-left {
  float: left;
}
.m-r-b-16 {
  margin-bottom: 16px;
  margin-right: 16px;
}
.team-stats {
  border: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background: #fff;
}
.team-stats-cell {
  align-items: center;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: center;
  padding: 20px 16px;
  font-weight: 500;
  flex-direction: column;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.3s;
}
.team-stats-cell:hover {
  background: #fff9f9;
}
.p-t-b-20 {
  padding-bottom: 20px;
  padding-top: 20px;
}
.yellow-card {
  align-items: center;
  background: #fdca00;
  display: flex;
  justify-content: center;
  height: 32px;
  width: 24px;
  border-radius: 3px;
}
.red-card {
  background: #ed5b34;
  border-radius: 2px;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 32px;
  width: 24px;
}
.coach-card {
  display: flex;
  column-gap: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 16px;
}
.coach-img-wrap {
  flex: 0 0 200px;
  max-height: 200px;
  overflow: hidden;
}
.coach-card-desc {
  flex: 2;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.coach-name {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.coach-country {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 14px;
}
.coach-career {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.coach-career-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #cc0000;
  letter-spacing: 0.5px;
}
.coach-career-text {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.coach-country-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border: 1px solid #e0e0e0;
}

.squad-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  transition: 0.3s;
}
.squad-row:hover {
  background: #fff9f9;
}
.squad-row-head {
  background: #f8f8f8;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #cc0000;
}
.squad-row-head.color-white-t-a-c {
  color: #666;
}
.squad-row-head:hover {
  background: #f8f8f8;
}
.player-table-cell-sticky {
  position: sticky;
  left: 0;
  text-align: left;
  background-color: inherit;
  padding: 12px;
}
.player-table-cell-2-sticky {
  position: sticky;
  left: 105px;
  text-align: left;
  background-color: inherit;
  padding: 12px;
}
.player-name {
  font-size: 14px;
  font-weight: 600;
  position: sticky;
  left: 105px;
  text-align: left;
  background-color: inherit;
  padding: 12px;
  color: #1a1a1a;
  transition: 0.3s;
}
.squad-row:hover .player-name {
  color: #cc0000;
}
.squad-row .lineup-player {
  padding: 12px;
  column-gap: 12px;
}
.squad-row .lineup-player span {
  font-weight: 700;
  color: #cc0000;
}

.t-a-right {
  text-align: right;
}
.squad-title {
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.squad-title.bg-red {
  background: #cc0000;
  border: none;
}
.players-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.player-table {
  width: 100%;
}
.border-radius-100per {
  border-radius: 100%;
}
.position-sticky-top-24 {
  position: sticky;
  top: 24px;
}
.fz-72 {
  font-size: 100px;
}
.img-player {
  position: absolute;
  height: 360px;
  bottom: -54px;
  z-index: 3;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}
.z-index-2 {
  z-index: 2;
  position: relative;
}
.player-stats-table-row {
  background: #fff;
  align-items: center;
  display: grid;
  grid-template-columns: 1.5fr repeat(8, 1fr);
  height: 48px;
  padding-left: 12px;
  padding-right: 12px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  font-size: 14px;
  transition: 0.3s;
}
.player-stats-table-row:hover {
  background: #fff9f9;
}
.player-stats-table-row span:first-child {
  text-align: left;
  font-weight: 600;
  color: #1a1a1a;
}
.player-stats-table-head {
  background: #f8f8f8;
  color: #666;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.player-stats-table-head:first-child {
  border-bottom: 2px solid #cc0000;
}
.news-link {
  display: block;
  text-align: center;
  font-size: 18px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  color: #cc0000;
  font-weight: 700;
}
.news-link:hover {
  color: #990000;
  text-decoration: underline;
}
.big-video-link {
  flex: 2;
  position: relative;
  overflow: hidden;
}
.team-name-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.3s;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}
.team-name-link:hover {
  color: rgb(255, 157, 157);
}
.pagination {
  display: flex;
  align-items: center;
  column-gap: 8px;
  justify-content: center;
}
.team-top-block {
  display: flex;
  column-gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 4px solid #cc0000;
}
.team-logo {
  height: 80px;
  object-fit: contain;
  width: 80px;
}
.team-name {
  color: #1a1a1a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 0;
  letter-spacing: -1px;
}
.team-inner {
  display: flex;
  column-gap: 24px;
}
.team-main {
  flex: 2;
  min-width: 0;
  overflow: hidden;
}
.team-main .swiper,
.team-aside .swiper {
  width: 100%;
}
.team-aside {
  position: relative;
  flex: 1;
}
.team-img {
  margin-bottom: 16px;
  margin-right: 16px;
  float: left;
  height: 240px;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}
.team-stats-value {
  font-size: 24px;
  font-weight: 700;
  color: #cc0000;
  margin-bottom: 8px;
}
.top-player {
  position: relative;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 1px solid #e0e0e0;
  border-top: 4px solid #cc0000;
  overflow: hidden;
}
.top-player-name {
  z-index: 2;
  position: relative;
  font-size: 88px;
  font-weight: 900;
  color: #1a1a1a;
  opacity: 0.1;
  letter-spacing: -4px;
  text-transform: uppercase;
  text-align: center;
}

/* Other players grid */
.other-players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.other-player-card {
  display: flex;
  align-items: center;
  column-gap: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 16px;
  text-decoration: none;
  transition: 0.3s;
}
.other-player-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #cc0000;
}
.other-player-img-wrap {
  flex: 0 0 64px;
  height: 64px;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition: 0.3s;
}
.other-player-card:hover .other-player-img-wrap {
  border-color: #cc0000;
}
.other-player-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other-player-info {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.other-player-name {
  font-weight: 700;
  color: #1a1a1a;
  transition: 0.3s;
}
.other-player-card:hover .other-player-name {
  color: #cc0000;
}
.other-player-position {
  font-size: 14px;
  color: #666;
}
.other-player-number {
  font-size: 14px;
  font-weight: 700;
  color: #cc0000;
}

/* Player Trophies */
.trophies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trophy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  transition: 0.3s;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.trophy-card:last-child {
  border-right: none;
}
.trophy-card:hover {
  background: #fff9f9;
}
.trophy-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.trophy-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: 0.3s;
}
.trophy-card:hover .trophy-img {
  transform: scale(1.05);
}
.trophy-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  text-align: center;
}
.trophy-season {
  font-size: 12px;
  font-weight: 600;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trophy-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}
.post-inner {
  display: flex;
  column-gap: 24px;
}
.post-main {
  flex: 2;
}
.post-aside {
  flex: 1;
}
.post-aside-content {
  display: grid;
  grid-template-columns: 1fr;
}
.image-caption {
  display: block;
  font-size: 13px;
  color: #666;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: #666;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

/* Contact Section */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-info {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 32px;
}
.contact-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.contact-item {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.contact-item-icon {
  flex: 0 0 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 100%;
  transition: 0.3s ease;
}
.contact-item:hover .contact-item-icon {
  background: #cc0000;
  border-color: #cc0000;
}
.contact-icon-svg {
  width: 22px;
  height: 22px;
  color: #cc0000;
  transition: 0.3s ease;
}
.contact-item:hover .contact-icon-img {
  filter: brightness(0) invert(1);
}
.contact-item:hover .contact-icon-svg {
  color: #fff;
}
.contact-item-content {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.contact-item-label {
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}
.contact-item-link {
  text-decoration: none;
  transition: 0.3s ease;
}
.contact-item-link:hover {
  color: #cc0000;
}
.contact-socials {
  display: flex;
  column-gap: 8px;
}
.contact-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 100%;
  transition: 0.3s ease;
}
.contact-social-link:hover {
  background: #cc0000;
  border-color: #cc0000;
}
.contact-social-svg {
  width: 18px;
  height: 18px;
  color: #cc0000;
  transition: 0.3s;
}
.contact-social-link:hover .contact-social-svg {
  color: #fff;
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.contact-form-group {
  width: 100%;
}
.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  outline: none;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
  transition: 0.3s;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #999;
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: #cc0000;
}
.contact-textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-submit-btn {
  padding: 8px 16px;
  background: #cc0000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start;
}
.contact-submit-btn:hover {
  background: #990000;
}

/* Privacy Page */
.privacy-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}
.privacy-inner > * {
  min-width: 0;
}

/* Sidebar - Table of Contents */
.privacy-sidebar {
  position: relative;
}
.privacy-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 24px;
}
.privacy-toc-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #cc0000;
}
.privacy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.privacy-toc-link {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
  display: block;
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
}
.privacy-toc-link:hover {
  color: #cc0000;
  border-left-color: #cc0000;
}

/* Main Content */
.privacy-main {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 40px;
}
.privacy-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.privacy-title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
  padding-left: 20px;
  border-left: 4px solid #cc0000;
}
.privacy-updated {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* Sections */
.privacy-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.privacy-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.privacy-section-title {
  font-size: 16px;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.privacy-subsection-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 24px;
  margin-bottom: 12px;
}
.privacy-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.privacy-text:last-child {
  margin-bottom: 0;
}

/* Lists */
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.privacy-list li {
  color: #666;
  line-height: 1.6;
  padding: 8px 0 8px 24px;
  position: relative;
}
.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #cc0000;
  border-radius: 100%;
}

/* Info Boxes */
.privacy-info-box {
  background: #f8f8f8;
  border-left: 4px solid #cc0000;
  padding: 20px;
  margin-bottom: 16px;
}
.privacy-info-box-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.privacy-info-box .privacy-text {
  margin-bottom: 0;
}

/* Table */
.privacy-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}
.privacy-table {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-collapse: collapse;
}
.privacy-table thead {
  background: #f8f8f8;
}
.privacy-table th {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid #cc0000;
}
.privacy-table td {
  color: #666;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.privacy-table tbody tr:hover {
  background: #fff9f9;
}

/* Highlight Box */
.privacy-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff9f9;
  border: 1px solid #cc0000;
  padding: 20px;
  margin-top: 20px;
}
.privacy-highlight-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #cc0000;
}
.privacy-highlight-text {
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

/* Rights Grid */
.privacy-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.privacy-right-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}
.privacy-right-card:hover {
  border-color: #cc0000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.privacy-right-title {
  font-size: 14px;
  font-weight: 700;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.privacy-right-text {
  color: #666;
  margin: 0;
}

/* Contact Box */
.privacy-contact-box {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.privacy-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.privacy-contact-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #cc0000;
  color: #fff;
  border-radius: 100%;
}
.privacy-contact-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.privacy-contact-value {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
a.privacy-contact-value:hover {
  color: #cc0000;
}
.color-white {
  color: #fff;
}
.fixtures-matches {
  display: flex;
  gap: 16px;
  align-items: center;
}
/* Контейнер фільтрів */
.filters-container {
  display: flex;
  gap: 15px;
}

/* Стилі селекта */
.filters-item {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  color: #1a1a1a;
  padding: 12px 40px 12px 16px;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  outline: none;
  min-width: 160px;
  transition: all 0.3s ease;

  /* Кастомна стрілка */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cc0000' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #ffffff;
}

.filters-item:hover {
  border-color: #cc0000;
  box-shadow: 0 2px 8px rgba(204, 0, 0, 0.1);
}

.filters-item:focus {
  border-color: #cc0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

/* Стилі для опцій */
.filters-item option {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 12px;
}
.player-stats-value {
  font-size: 24px;
}

/* Breadcrumbs */

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs-list-item {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}

.breadcrumbs-list-item + .breadcrumbs-list-item::before {
  content: "|";
  margin: 0 12px;
  color: #e0e0e0;
  font-weight: 400;
}

.breadcrumbs-list-item-link {
  text-decoration: none;
  color: #666;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.breadcrumbs-list-item-link:hover {
  color: #cc0000;
}

.breadcrumbs-list-item-active {
  color: #cc0000;
  font-weight: 700;
}
.tournament-team:hover {
  color: #cc0000;
}

.swiper {
  width: 100%;
}
.swiper-wrapper {
  gap: 0 !important;
}
.swiper-pagination {
  position: static !important;
  padding-top: 16px;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #cc0000 !important;
  opacity: 1;
}
.videos .swiper-pagination-bullet,
.postVideos .swiper-pagination-bullet {
  background: #fff;
}
.matches .swiper-slide {
  display: flex;
  /* width: 100% !important; */
}
.videos .swiper-slide,
.postVideos .swiper-slide {
  height: auto !important;
}
.videos .swiper-slide,
.postVideos .swiper-slide,
.lastMatches .swiper-slide,
.latestResults .swiper-slide {
  display: flex;
}
.matches_2 .swiper-slide,
.nextMatches .swiper-slide {
  display: grid;
}
.teams .swiper-slide {
  max-width: 600px !important;
  width: 100% !important;
}
.results-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.p-t-b-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.accordion-header {
  display: none;
}
.main-table-head-cell--2 {
  color: transparent;
}
.category-select {
  width: 180px;
  font-family: sans-serif;
  user-select: none;
  position: relative;
}

.select-header {
  background: rgb(204, 0, 0);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.select-header .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-bottom: 2px;
}

.category-select.open .select-header .arrow {
  transform: rotate(-135deg);
}

.select-body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  display: none;
  flex-direction: column;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.category-select.open .select-body {
  display: flex;
}

.select-item {
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.select-item:hover {
  background: #fff9f9;
  color: #cc0000;
}
.post-aside-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 3px solid #1a1a1a;
  align-items: baseline;
}

@media (max-width: 1300px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: #cc0000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    z-index: 999;
  }
  .header-nav-item {
    position: relative;
    color: white;
  }
  .header-nav-item:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: white;
  }
  .header-nav.active {
    transform: translateX(0);
  }

  .header-nav-list {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 1200px) {
  .page-layout {
    flex-direction: column;
  }
  .videos-container {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Review page */
  .review-match-inner {
    flex-direction: column;
    row-gap: 32px;
  }
  .review-match-aside {
    order: 2;
  }
  .match-review-main {
    order: 1;
  }
  .post-inner {
    flex-direction: column;
  }
  .post-aside-content {
    grid-template-columns: 1fr 1fr;
  }
  .recent-news-post {
    grid-template-columns: repeat(3, 1fr);
  }
  .match-highlights {
    flex-direction: row;
  }
}

@media (max-width: 992px) {
  .section-header-categories {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .main-teams-card-img {
    width: 80px;
    height: 80px;
  }
  .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card--large {
    grid-column: span 1;
  }
  .fixtures-inner {
    grid-template-columns: 1fr;
  }
  .videos-inner {
    flex-direction: column;
  }
  .main-table {
    /* width: 1000px; */
    width: max-content;
  }

  .footer-inner {
    flex-wrap: wrap;
    row-gap: 32px;
  }
  .footer-item {
    flex: 1 1 45%;
  }
  .videos-container {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Review page */
  .main-last-match-event {
    grid-template-columns: 2fr 1fr 2fr;
    column-gap: 16px;
  }
  .main-review-team {
    font-size: 16px;
    column-gap: 12px;
  }
  .main-review-team-img {
    height: 72px;
    width: 72px;
  }
  .match-review-team-link {
    column-gap: 10px;
  }
  .match-review-team-link .img-64 {
    height: 48px;
    width: 48px;
  }
  .match-time-minute-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-inner {
    flex-direction: column;
  }
  .main-table-team-name {
    position: sticky;
    left: 142px;
    text-align: left;
    background-color: inherit;
  }
  .main-table-head-cell--2 {
    position: sticky;
    left: 142px;
    background-color: inherit;
  }
  .team-logo {
    width: 64px;
    height: 64px;
  }
  .team-stats-value,
  .player-stats-value {
    font-size: 20px;
  }
  .other-players-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trophies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trophy-card {
    border-bottom: 1px solid #e0e0e0;
  }
  .trophy-card:nth-child(2) {
    border-right: none;
  }
  .trophy-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .recent-news-post {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .privacy-inner {
    grid-template-columns: 1fr;
  }
  .privacy-toc {
    position: static;
  }
  .privacy-rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title,
  .page-title {
    font-size: 38px;
  }
  .hero-subtitle {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .team-card-stat-value {
    font-size: 20px;
  }
  .team-name {
    font-size: 28px;
  }
  .top-player-name {
    font-size: 80px;
  }
  .results-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .main-teams {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    row-gap: 32px;
  }
  .footer-item {
    flex: 1 1 100%;
  }
  /* Review page */
  .top-review {
    row-gap: 16px;
  }
  .main-last-match-event {
    row-gap: 16px;
    justify-items: center;
  }
  .main-review-team {
    font-size: 18px;
  }
  .main-review-team {
    flex-direction: column;
    text-align: center;
  }
  .main-review-team:last-child {
    flex-direction: column-reverse;
  }
  .main-review-team-img {
    height: 64px;
    width: 64px;
  }
  .main-review-result {
    font-size: 20px;
    padding: 4px 8px;
  }
  .color-brown.fz-20 {
    font-size: 16px;
  }
  .lineup-row {
    grid-gap: 16px;
  }

  .lineup-player-info.a-i-end {
    align-items: flex-start;
  }

  .match-review-row .opacity-06:not(.fw-500) {
    display: inline;
  }
  .match-review-team-link {
    justify-content: flex-start;
  }
  .match-time-event {
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
  }
  .match-time-minute-num {
    font-size: 24px;
  }
  .match-time-minute-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .post-aside-content {
    grid-template-columns: 1fr;
  }
  .privacy-main {
    padding: 24px;
  }
  .privacy-title {
    font-size: 28px;
    padding-left: 16px;
  }
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }
  .privacy-contact-box {
    padding: 20px;
  }
  .img-48 {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }
  .header-logo {
    font-size: 38px;
  }
  .hero-title,
  .page-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .results-items {
    grid-template-columns: 1fr;
  }
  .top-player-name {
    font-size: 72px;
  }
  .img-player {
    height: 324px;
  }
  .league-table-head .main-table-head-cell--2,
  .league-table-team-link-name {
    left: 92px;
  }
}
@media (max-width: 576px) {
  .news-cards {
    grid-template-columns: 1fr;
  }
  .main-fixtures-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }
  .main-fixtures-link {
    flex-direction: column;
  }
  .main-fixtures-link:first-child {
    flex-direction: column-reverse;
  }
  .videos-container {
    grid-template-columns: 1fr;
  }
  /* Review page */
  .top-review {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .league-title {
    font-size: 10px;
    padding: 6px 10px;
  }
  .top-review-subltitle {
    font-size: 12px;
    text-align: center;
  }

  .main-review-team:first-child {
    flex-direction: column;
  }
  .main-review-team-img {
    height: 56px;
    width: 56px;
  }
  .match-review-main {
    padding: 16px;
  }
  .match-review-head {
    padding: 12px;
  }

  .match-review-team-link {
    flex-direction: column;
    row-gap: 8px;
  }
  .match-review-team-link:first-child {
    flex-direction: column-reverse;
  }
  .match-review-team-link .img-64 {
    height: 40px;
    width: 40px;
  }

  .lineup-player {
    column-gap: 12px;
  }
  .lineup-player .img-64 {
    height: 56px;
    width: 56px;
  }
  .match-time-event {
    grid-template-columns: 50px 1fr;
    column-gap: 12px;
    padding: 12px;
  }
  .match-time-minute-num {
    font-size: 20px;
  }

  .red-link {
    padding: 10px 16px;
    font-size: 12px;
  }
  .players-table,
  .player-table {
    width: 600px;
  }
  .league-table-team-link-name,
  .main-table-team-name,
  .main-table-head-cell--2,
  .league-table-head .main-table-head-cell--2 {
    position: static;
    left: auto;
  }
  .main-table-head {
    grid-template-columns: 0.5fr 1fr repeat(4, 60px);
  }
  .main-table-row {
    grid-template-columns: 0.5fr 1fr repeat(4, 60px);
  }
  .cell--pl-170 {
    padding-left: 170px;
  }
  .team-img {
    float: none;
    margin-right: 0;
    width: 100%;
    height: auto;
    display: block;
  }
  .other-players-grid {
    grid-template-columns: 1fr;
  }
  .other-player-card {
    padding: 12px;
  }
  .other-player-img-wrap {
    flex: 0 0 56px;
    height: 56px;
  }
  .trophies-grid {
    grid-template-columns: 1fr;
  }
  .trophy-card {
    padding: 24px 16px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .trophy-card:last-child {
    border-bottom: none;
  }
  .trophy-name {
    font-size: 16px;
  }
  .recent-news-post {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form-wrap {
    padding: 24px;
  }
  .contact-item-icon {
    flex: 0 0 40px;
    height: 40px;
  }
  .contact-icon-img {
    width: 18px;
    height: 18px;
  }
  .contact-item-value {
    font-size: 14px;
  }
  .contact-input,
  .contact-textarea {
    padding: 12px 14px;
  }
  .contact-submit-btn {
    width: 100%;
    text-align: center;
  }
  .privacy-main {
    padding: 20px;
  }
  .privacy-toc {
    padding: 20px;
  }
  .privacy-title {
    font-size: 24px;
  }
  .privacy-table th,
  .privacy-table td {
    padding: 10px 12px;
  }
  .privacy-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .privacy-info-box {
    padding: 16px;
  }
  .img-48 {
    height: 32px;
    width: 32px;
    object-fit: contain;
  }
  .team-name {
    font-size: 24px;
  }
  .team-logo {
    height: 56px;
    width: 56px;
  }
  .main-match-score {
    font-size: 24px;
  }
  .coach-name {
    font-size: 18px;
  }
  .match-highlights {
    flex-direction: column;
  }
  .header-nav {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .section-header {
    flex-direction: column;
    align-items: start;
  }
  .footer-item .f-row.space-between {
    flex-direction: column;
    row-gap: 16px;
  }

  /* Review page */
  .p-t-b-48 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .main-review-team-img {
    height: 48px;
    width: 48px;
  }
  .main-review-result {
    font-size: 20px;
    min-width: 63px;
  }
  .match-review-main {
    padding: 12px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
  }
  .line-up-head {
    padding: 8px 0;
  }
  .lineup-row {
    margin-bottom: 12px;
    padding-bottom: 8px;
    grid-gap: 8px;
  }
  .lineup-player {
    flex-direction: column;
    row-gap: 8px;
    column-gap: 0;
    align-items: center;
    text-align: center;
  }
  .lineup-player:first-child {
    flex-direction: column-reverse;
  }

  .match-highlights .video-card .h-240 {
    height: 180px;
  }
  .match-highlights .main-news-card-desc {
    padding: 12px;
  }

  .match-time-minute-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .team-stats {
    grid-template-columns: 1fr;
  }
  .coach-card {
    flex-direction: column;
  }
  .coach-card-desc {
    align-items: center;
  }
  .coach-career-title {
    text-align: center;
  }
  .coach-career-text {
    text-align: center;
  }
  .player-name,
  .player-table-cell-2-sticky {
    position: static;
    left: auto;
  }
  .contact-info,
  .contact-form-wrap {
    padding: 20px;
  }
  .contact-items {
    row-gap: 16px;
  }
  .contact-item {
    column-gap: 12px;
  }
  .contact-socials {
    justify-content: center;
  }
  .main-teams-card-img {
    width: 64px;
    height: 64px;
  }
  .header-logo {
    font-size: 32px;
  }
  .btn-wrap {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  .hero-title,
  .page-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .section-header {
    grid-template-columns: 1.5fr 1fr;
  }
  .category-link {
    font-size: 11px;
  }
  .section-title {
    font-size: 20px;
  }
  /* .main-table-row {
    grid-template-columns: 0.5fr repeat(5, 1fr);
    grid-template-columns: 150px repeat(5, 60px);
  } */
  .main-match-score {
    font-size: 22px;
  }
  .main-review-team {
    font-size: 16px;
  }

  .filters-container {
    flex-direction: column;
  }
  .lineup-player-info.a-i-end,
  .lineup-player-info {
    align-items: center;
  }
  .match-review-row-label,
  .match-review-head-title {
    font-size: 14px;
  }
  .img-player {
    position: static;
    height: 245px;
    margin-top: 16px;
  }
  .top-player {
    flex-direction: column-reverse;
    height: 100%;
  }
  .top-player-name {
    font-size: 36px;
    margin: 0 8px;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    cursor: pointer;
    font-weight: 600;
    color: #999;
    user-select: none;
  }

  .accordion-header::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
  }

  .accordion-header.active::after {
    content: "−";
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .accordion-content.active {
    max-height: 300px;
  }

  .footer-menu-list {
    padding: 0;
  }

  .footer-menu-list li {
    margin-bottom: 12px;
    padding-left: 10px;
  }

  .accordion-content.active .footer-menu-list li:last-child {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .videos .swiper-wrapper,
  .postVideos .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    transform: none !important;
    width: 100% !important;
  }
}
@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-review-result {
    font-size: 18px;
  }

  .match-review-team-link .img-64 {
    height: 32px;
    width: 32px;
  }
  .match-time-event {
    grid-template-columns: 40px 1fr;
    column-gap: 10px;
    padding: 10px;
  }
  .match-time-minute-num {
    font-size: 18px;
  }
  .red-link {
    padding: 8px 12px;
    font-size: 11px;
  }
  .header-logo {
    font-size: 28px;
  }
  .hero-title,
  .page-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-text,
  .news-link,
  .main-teams-card-desc-title {
    font-size: 16px;
  }
  .btn-primary,
  .main-review-team {
    font-size: 14px;
  }
  .section-title {
    font-size: 18px;
  }
}
@media (min-width: 1201px) {
  .matches .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px !important;
  }
  .teams .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 16px !important;
  }
  .results .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px !important;
  }
}
@media (min-width: 993px) {
  .matches_2 .swiper-wrapper {
    display: grid;
    gap: 16px;
    align-items: center;
  }
  .nextMatches .swiper-wrapper {
    display: grid;
    gap: 16px;
    align-items: center;
  }
  .trophies .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px !important;
  }
}
@media (min-width: 769px) {
  .lastMatches .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px !important;
  }
}
