  body {
            margin: 0;
      padding: 0;
      font-family: 'Segoe UI', 'inter', sans-serif;
      background: #141518;
      overflow-x: hidden;
      color: #f5f6fa;
    }
    .header {
      background: #18191c;
      color: #fff;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
      position: relative;
      z-index: 20;
    }
    .header__left {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .header__logo img,
    .header__logo svg {
      height: 28px;
      display: block;
    }
    .header__nav {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-left: 18px;
    }
    .header__nav a {
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
      padding: 2px 8px;
    }
    .header__nav a:hover {
      color: #e00;
    }
    .header__right {
      display: flex;
      align-items: center;
      gap: 14px;
      transition: transform 0.3s;
    }
    .header__right.hide-on-menu {
      transform: translateY(-80px);
      opacity: 0;
      pointer-events: none;
    }
    .header__icon {
      font-size: 16px;
      margin-right: 2px;
      color: #bbb;
      cursor: pointer;
      transition: color 0.2s;
    }
    .header__icon:hover {
      color: #fff;
    }

    .header__icons{
      font-size: 16px;
      margin-right: 2px;
      color: #bbb;
      cursor: pointer;
      transition: color 0.2s;
    }
    .header__icons:hover {
      color: #fff;
    }
    
    .header__btns {
      background: #232325;
      border: none;
      color: #fff;
      padding: 6px 14px;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
      margin-left: 4px;
      transition: background 0.2s, color 0.2s;
    }
    .header__btn--red {
      background: #e53737;
      margin-left: 7px;
      border: none;
      color: #fff;
      padding: 6px 14px;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
      margin-left: 4px;
      transition: background 0.2s, color 0.2s;
    }
    .header__btns:hover,
    .header__btn--red:hover {
      background: #fff;
      color: #1d1d1f;
    }

    /* --- Burger --- */
    .burger {
      display: none;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      position: relative;
      z-index: 120;
      cursor: pointer;
      margin-left: 12px;
      transition: filter 0.2s;
    }
    .burger:focus { outline: none; }
    .burger-bar {
      position: absolute;
      left: 6px; right: 6px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: 0.4s;
    }
    .burger-bar:nth-child(1) { top: 9px; }
    .burger-bar:nth-child(2) { top: 15px; }
    .burger-bar:nth-child(3) { top: 21px; }

    .burger.open .burger-bar:nth-child(1) {
      top: 15px;
      transform: rotate(45deg);
    }
    .burger.open .burger-bar:nth-child(2) {
      opacity: 0;
    }
    .burger.open .burger-bar:nth-child(3) {
      top: 15px;
      transform: rotate(-45deg);
    }

    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0;
      width: 82vw;
      max-width: 340px;
      height: 100vh;
      background: rgba(34,35,41,0.98);
      box-shadow: 6px 0 32px 0 rgba(0,0,0,0.29);
      padding: 44px 24px 24px 20px;
      gap: 10px;
      transform: translateX(-120%);
      transition: transform 0.42s cubic-bezier(0.66,0,0.34,1), box-shadow 0.2s;
      z-index: 110;
      opacity: 0;
      pointer-events: none;
    }
    .mobile-menu.active {
      transform: translateX(0);
      opacity: 1;
      pointer-events: all;
      box-shadow: 9px 0 50px 0 rgba(0,0,0,0.38);
      animation: fadeIn 0.3s;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .mobile-menu a {
      color: #fff;
      font-size: 17px;
      text-decoration: none;
      margin: 8px 0;
      font-weight: 500;
      transition: color 0.2s;
      letter-spacing: 0.02em;
    }
    .mobile-menu a:hover {
      color: #f04848;
    }
    .mobile-menu .close {
      position: absolute;
      top: 18px;
      right: 18px;
      font-size: 28px;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
      opacity: 0.8;
      transition: opacity 0.2s;
    }
    .mobile-menu .close:hover { opacity: 1; }
    .mobile-menu hr {
      border:1px solid #222;
      margin:16px 0 10px 0;
    }
    .mobile-menu .lang-block {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      margin-bottom: 8px;
    }
    .overlay {
      display: none;
      position: fixed;
      z-index: 99;
      left: 0; top: 0;
      width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .overlay.active { display: block; opacity: 1; }

 .slider {
      position: relative;
      width: 100vw;
      height: 400px;
      overflow: hidden;
    }
.slider-slide {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s;
}
.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-gradient {
  width: 55%;
  min-width: 290px;
  height: 100%;
  background: linear-gradient(90deg, #4b0000 82%, rgba(34,52,59,0.02) 100%); 
  display: flex;
  align-items: flex-start;
}

.slider-image {
  width: 100%;
    height: 100%;
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

    .slider-content {
      margin-left: 7vw;
      margin-top: 80px;
      max-width: 540px;
      color: #fff;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .slider-content p {
      font-size: 2.4vw;
      font-weight: bold;
      margin: 0 0 18px 0;
      line-height: 1.16;
      color: #fff;
      text-shadow: 0 2px 6px rgba(0,0,0,0.12);
    }
    .slider-content .slider-sub {
      font-size: 1.1vw;
      font-weight: 400;
      margin-bottom: 28px;
      color: #fff;
    }
    .slider-btn {
      background: #e53737;
      color: #fff;
      padding: 14px 40px;
      font-size: 1.18rem;
      border-radius: 7px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.2s;
      border: none;
      cursor: pointer;
      margin-bottom: 30px;
      margin-top: 8px;
    }
    .slider-btn:hover { background: #b91616; }

    .slider-pagination {
      position: absolute;
      left: 7vw;
      bottom: 30px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.12rem;
      color: #fff;
      z-index: 8;
    }
    .slider-arrow {
      border: none;
      background: transparent;
      color: #fff;
      font-size: 1.5rem;
      margin: 0 3px;
      cursor: pointer;
      opacity: 0.7;
      transition: opacity 0.2s;
      border-radius: 50%;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
    }
    .slider-arrow:active, .slider-arrow:focus { opacity: 1; outline: none; background: #e53737;}
    .slider-arrow[disabled] { opacity: 0.2; pointer-events: none; }

.sports-title {
  color: #fffbe7;
  font-size: 2.1rem;
  font-weight: 700;
  margin-left: 20px;
  margin-bottom: 18px;
  font-family: inherit;
}



.sports-cards {
  margin: 30px 10px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.sport-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  min-width: 210px;
  width: 265px;
  height: 70px;
  background: linear-gradient(90deg,#62676e 65%,#868c94 100%);
  border-radius: 14px;
  padding: 16px 0px 0px 17px;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  box-sizing: border-box;
  transition: box-shadow .18s, transform .18s, background .16s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,.03);
  position: relative;
  overflow: hidden;
}
.sport-card:hover {
  box-shadow: 0 4px 22px 0 rgba(20,20,20,.18);
  transform: translateY(-2px) scale(1.018);
  background: linear-gradient(93deg,#71747a 60%,#6f95bd 100%);
}
.sport-card__title {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.sport-card__desc {
  font-size: 0.95rem;
  opacity: .88;
}
.sport-card__img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  align-self: center;
  margin-left: 18px;
}

/* Индивидуальные фоны для каждой карточки */
.sport-card--live {
  background: linear-gradient(98deg,#e02c44 65%,#f85567 100%);
}
.sport-card--live:hover {
  background: linear-gradient(93deg,#ee404d 60%,#fbb46e 100%);
}
.sport-card--club {
  background: linear-gradient(99deg,#898989 60%,#b09e68 100%);
}
.sport-card--bad {
  background: linear-gradient(92deg,#87878a 60%,#babdc0 100%);
}
.sport-card--wimbledon {
  background: linear-gradient(93deg,#7c7e89 64%,#7970ac 100%);
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
  overflow-x: hidden;
}



.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.card-content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  z-index: 2;
}

.card-content .text {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.card-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

.badge {
  background: #e53935;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-hover {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.play-button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #e53935;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-button:hover {
  background: #d32f2f;
}

.card:hover img {
  transform: scale(1.05);
  filter: blur(4px);
}

.card:hover .card-hover {
  opacity: 1;
}

.footer {
  background: #121212;
  color: #fff;
  padding: 30px 20px;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col.support p {
  margin: 6px 0;
}

.support-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.support-links .btn {
  display: inline-block;
  padding: 6px 12px;
  background: #2a2a2a;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  max-width: 100px;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.app-links img {
  height: 28px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links img {
  width: 32px;
  height: 32px;
}

  main {
      display: flex;
      justify-content: center;
      min-height: 100vh;
      background: #181a1e;
      padding: 0 0 44px 0;
    }
    main .content {
      background: #23262b;
      margin: 34px 0 0 0;
      padding: 32px 20px 30px 20px;
      border-radius: 16px;
      max-width: 1100px;
      width: 96vw;
      box-sizing: border-box;
      box-shadow: 0 4px 36px 0 rgba(0,0,0,.13);
      transition: box-shadow .16s;
      line-height: 1.7;
    }
    .content h1 {
      font-size: 2.3rem;
      margin-bottom: 16px;
      color: #fff;
      font-weight: 800;
      line-height: 1.11;
      letter-spacing: 0.01em;
    }
    .content h2 {
      font-size: 1.45rem;
      color: #e43f41;
      margin: 32px 0 14px 0;
      font-weight: 700;
      line-height: 1.2;
    }
    .content p {
      margin: 12px 0 18px 0;
      font-size: 1.06rem;
      color: #f2f2f7;
    }
    .content ul, ol {
      margin: 8px 0 18px 22px;
      padding: 0;
      font-size: 1.05rem;
      color: #f2f2f7;
    }
    .content li {
      margin-bottom: 7px;
    }
    .content img {
      display: block;
      margin: 18px auto;
      border-radius: 12px;
      max-width: 100%;
      height: auto;
      box-shadow: 0 2px 14px 0 rgba(0,0,0,0.10);
      background: #181a1e;
      transition: box-shadow 0.18s;
    }
    /* Горизонтальные изображения */
    .content img[width][height]:not([height=""]) {
      max-height: 340px;
      width: auto;
    }
    /* Вертикальные изображения */
    .content img[width][height]:not([width=""]) {
      max-width: 68vw;
      height: auto;
      margin-top: 18px;
      margin-bottom: 18px;
    }

    @media (max-width: 1075px) {
      .header__nav {
        display: none;
      }
      .burger {
        display: block;
      }
    }


      @media (max-width: 900px) {
        .sports-cards { gap: 13px; }
  .sport-card { width: 48vw; min-width: 148px; height: 75px; padding:10px 10px 10px 12px; }
  .sport-card__img { width: 38px; height: 38px; margin-left: 7px;}
  .sports-title { font-size: 1.2rem;}
      .slider { height: 340px; }
      .slider-content { margin-top: 32px; }
      .slider-content p { font-size: 1.5rem; }
      .slider-content .slider-sub { font-size: 1rem; }
    }

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    align-self: center;
    margin-top: 10px;
  }
}

    @media (max-width: 650px) {
      .content {
        padding: 13vw 3vw 11vw 3vw;
        max-width: 98vw;
        margin: 19px 0 0 0;
      }
      .content h1 { font-size: 1.33rem; margin-bottom: 11px;}
      .content h2 { font-size: 1.07rem; margin: 17px 0 8px 0;}
      .content p, ul, ol { font-size: 0.99rem; }
      .content img { border-radius: 7px; }
      .content img[width][height]:not([height=""]) { max-height: 180px; }
      .content img[width][height]:not([width=""]) { max-width: 93vw;}
    }

    @media (max-width: 600px) {
        .game-cards {
    grid-template-columns: 1fr;
  }
      .sports-cards { flex-wrap: wrap; margin-left: 8px; gap: 7px; }
  .sport-card { width: 96vw; min-width: 0; height: 65px; margin-right:0; padding: 9px 8px 9px 9px;}
  .sport-card__img { width: 28px; height: 28px;}
            .slider { height: 236px; }
      .slider-content { margin-left: 4vw; margin-top: 22px; }
      .slider-content p { font-size: 1.1rem; }
      .slider-content .slider-sub { font-size: .95rem; }
      .slider-btn { padding: 8px 18px; font-size: 1rem; }
      .slider-pagination { left: 4vw; bottom: 18px; font-size: 0.99rem;}
      .slider-arrow { width: 27px; height: 27px; font-size: 1rem;}
        .header__icons{
            display: none;
        }
      .header {
        padding: 0 5px;
        height: 45px;
      }
      .header__logo img, .header__logo svg {
        height: 21px;
      }
      .header__btn--red {
        padding: 5px 10px;
        font-size: 13px;
      }
      .mobile-menu {
        padding: 32px 8px 14px 10px;
      }
    }

    @media (max-width: 380px) {
      .header__btns {
        display: none;
    }
}


