/* ==========================================
   BETWARRIOR GLOBAL STYLES (v2)
   Base + Reset + Variables + Typography + Buttons
   ========================================== */

/* ---------- Variables ---------- */
:root {
  --accent: #ff4b00;
  --accent-hover: #ff6930;
  --dark: #0b0b0b;
  --text: #222;
  --gray: #777;
  --bg: #ffffff;
  --bg-alt: #f8f8f8;
  --font: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --transition: all 0.25s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Защита от горизонтального скролла */
html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover,
a:focus {
  color: var(--accent-hover);
  outline: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Container ---------- */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 0.6em;
}

h1 {
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(22px, 2.3vw, 30px);
  text-transform: uppercase;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

h3 {
  font-size: 20px;
  color: var(--accent);
}

p {
  margin-bottom: 1em;
  color: var(--text);
  font-size: 16px;
}

strong {
  font-weight: 700;
}

/* ===============================
   BUTTONS — универсальные стили
   =============================== */
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ff4b00;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(255, 75, 0, 0.25);
  font-size: 14px;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
}
.button:hover,
.btn:hover {
  background: #ff6930;
  box-shadow: 0 6px 20px rgba(255, 75, 0, 0.35);
  transform: translateY(-2px);
}
.button:active,
.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(255, 75, 0, 0.25);
}

/* Утилити */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }

/* ===============================
   HEADER — фиксированный, адаптивный
   =============================== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  padding-top: 55px; /* компенсация под фиксированный header */
  background-color: #fff;
  color: #111;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff4b00;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Внутренний контейнер */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Логотип */
.header__logo img {
  height: 36px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.header__logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* Меню (Desktop) */
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  transition: color 0.25s ease;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.25s ease;
}
.header__nav a:hover::after {
  width: 100%;
}
.header__nav a:hover {
  color: #ffe8df;
}

/* Кнопка входа */
.header__btn {
  background: #3b2d3d;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.header__btn:hover {
  background: #fff;
  color: #ff4b00;
}

/* Бургер (Mobile) */
.header__burger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.header__burger:hover {
  transform: scale(1.1);
}

/* Мобильное меню */
.header__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #111;
  padding: 20px;
  width: 100%;
}
.header__mobile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.header__mobile li {
  margin: 10px 0;
}
.header__mobile a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease;
}
.header__mobile a:hover {
  color: #ff4b00;
}

/* Активное состояние меню */
.header__mobile.active {
  display: flex;
}

/* Мобильная кнопка входа */
.header__btn--mobile {
  background: #ff4b00;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

/* ===============================
   ADAPTIVE
   =============================== */
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .header__burger {
    display: block;
  }
}

@media (max-width: 480px) {
  .header__inner {
    padding: 10px 14px;
  }
  .header__logo img {
    height: 32px;
  }
  .header__mobile a {
    font-size: 14px;
  }
  .button, .btn {
    font-size: 13px;
    padding: 10px 22px;
  }
}

/* ==========================================
   HERO / COVER — адаптивная версия BetWarrior
   ========================================== */
.cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 70px);
  background: radial-gradient(circle at 30% 30%, #ff5f1f 0%, #ff4b00 30%, #1a0a00 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Дополнительное мягкое свечение поверх */
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 80%,
    rgba(255, 100, 0, 0.25),
    rgba(0, 0, 0, 0.85) 70%
  );
  z-index: 0;
  mix-blend-mode: overlay;
}


/* фон */
.cover__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cover__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* затемнение */
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* контейнер */
.cover__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* блок текста */
.cover__wrap {
  max-width: 560px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 30px 32px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease both;
}

/* подзаголовок */
.cover__welcome {
  font-size: 14px;
  font-weight: 700;
  color: #ff4b00;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* заголовок */
.cover__wrap h1 {
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}

/* текст */
.cover__wrap p {
  font-size: 15px;
  color: #eaeaea;
  line-height: 1.7;
  margin-bottom: 24px;
}
.cover__wrap a {
  color: #ff4b00;
  transition: color 0.25s ease;
}
.cover__wrap a:hover {
  color: #fff;
}

/* кнопка */
.cover__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ff4b00;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(255, 75, 0, 0.3);
  text-decoration: none;
}
.cover__button:hover {
  background: #ff6930;
  box-shadow: 0 6px 20px rgba(255, 75, 0, 0.4);
}
.cover__button a {
 color: #fff !important; 
}
.cover__button img {
  width: 16px;
  height: auto;
}

/* адаптив */
@media (max-width: 1024px) {
  .cover__content {
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px;
  }
  .cover__wrap {
    max-width: 90%;
    padding: 26px 20px;
    background: rgba(0, 0, 0, 0.55);
  }
  .cover__wrap h1 {
    font-size: 22px;
  }
  .cover__wrap p {
    font-size: 14px;
  }
  .cover__button {
    font-size: 12.5px;
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .cover {
    min-height: calc(100vh - 60px);
  }
  .cover__wrap {
    padding: 20px 16px;
  }
  .cover__wrap h1 {
    font-size: 18px;
  }
  .cover__welcome {
    font-size: 12px;
  }
}

/* анимация появления */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   ARTICLE / MAIN CONTENT — BetWarrior Refined
   ========================================== */
.article {
  padding: 70px 0;
  color: #222;
  font-family: 'Inter', sans-serif;
  background: #fff;
  overflow-x: hidden; /* предотвращает белую полосу на мобилках */
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Заголовки ---------- */
.article h2 {
  margin-top: 56px;
  margin-bottom: 18px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  text-transform: uppercase;
  position: relative;
}

.article h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: #ff4b00;
  margin-top: 8px;
  border-radius: 2px;
}

.article h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 19px;
  color: #ff4b00;
  font-weight: 700;
  line-height: 1.45;
}

/* ---------- Текст и ссылки ---------- */
.article p {
  margin-bottom: 16px;
  font-size: 15.8px;
  line-height: 1.75;
  color: #333;
}

.article a {
  color: #ff4b00;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.25s ease;
}

.article a:hover {
  color: #ff6930;
}

/* ---------- Списки ---------- */
.article ul {
  margin: 14px 0 20px 20px;
  padding: 0;
}

.article ul li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 14px;
  line-height: 1.6;
}

.article ul li::before {
  content: "•";
  color: #ff4b00;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  line-height: 1.4;
}

/* ---------- Кнопки ---------- */
.article .btn {
  display: inline-block;
  margin: 12px 0 22px;
  background: #ff4b00;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 10px rgba(255, 75, 0, 0.3);
  text-decoration: none;
}

.article .btn:hover {
  background: #ff6930;
  box-shadow: 0 4px 14px rgba(255, 75, 0, 0.4);
  color: #fff;
}

/* ---------- Таблицы ---------- */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14.8px;
  text-align: left;
  border-radius: 6px;
  overflow: hidden;
}

.article th,
.article td {
  border: 1px solid #e6e6e6;
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
}

.article th {
  background: #fff4ef;
  font-weight: 700;
  color: #333;
}

.article tbody tr:nth-child(even) {
  background: #fafafa;
}

.article tbody tr:hover {
  background: #fff6f1;
  transition: background 0.25s ease;
}

/* ---------- Адаптив ---------- */
@media (max-width: 768px) {
  .article {
    padding: 54px 0;
  }
  .article__section {
    padding: 0 3px;
  }
  .article h2 {
    font-size: 21px;
  }
  .article h3 {
    font-size: 17px;
  }
  .article p {
    font-size: 15px;
    line-height: 1.7;
  }
  .article .btn {
    font-size: 12.5px;
    padding: 9px 22px;
  }
  .article__section .btn {
    margin-left: 7%;
  }
  .article table {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .article {
    padding: 44px 0;
  }
  .article h2 {
    font-size: 19px;
    margin-top: 40px;
  }
  .article h3 {
    font-size: 15.5px;
  }
  .article p {
    font-size: 14px;
  }
  .article table th,
  .article table td {
    padding: 8px 10px;
  }
}

/* ==========================================
   TABLE — Calificación / Ratings (BetWarrior style)
   ========================================== */
.table-rating {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* заголовок таблицы */
.table-rating thead {
  background: linear-gradient(90deg, #ff4b00 0%, #ff6930 100%);
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.table-rating th {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border: none;
}

/* ячейки */
.table-rating td {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  color: #333;
  vertical-align: middle;
}

/* чередование строк */
.table-rating tbody tr:nth-child(even) {
  background: #fafafa;
}

/* адаптив */
.table-rating {
  display: block;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff4b00 #f1f1f1;
}

.table-rating::-webkit-scrollbar {
  height: 8px;
}
.table-rating::-webkit-scrollbar-thumb {
  background: #ff4b00;
  border-radius: 6px;
}
.table-rating::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* мелкие экраны */
@media (max-width: 768px) {
  .table-rating th,
  .table-rating td {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .table-rating {
    box-shadow: none;
    border-radius: 6px;
  }
  .table-rating th,
  .table-rating td {
    font-size: 13.5px;
    padding: 8px 10px;
  }
}

/* ==========================================
   BLOCK REVIEWS — Limpio y profesional
   ========================================== */
.block_reviews {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px 36px;
}

.block_reviews blockquote {
  margin: 0 0 28px;
  padding: 0 0 14px;
  border-bottom: 1px solid #eee;
}

.block_reviews blockquote:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.block_reviews strong {
  display: block;
  font-weight: 700;
  color: #ff4b00;
  margin-bottom: 4px;
}

.block_reviews .review-title {
  font-weight: 600;
  color: #222;
  margin: 0 0 6px;
  font-size: 15.5px;
}

.block_reviews p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
}

/* адаптив */
@media (max-width: 768px) {
  .block_reviews {
    padding: 24px 20px;
  }
  .block_reviews .review-title {
    font-size: 15px;
  }
}

/* ==========================================
   AUTHOR BLOCK — Limpio y sólido
   ========================================== */
.author,
.author-card {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px 28px;
}

.author img,
.author-card img {
  border-radius: 50%;
  border: 2px solid #ff4b00;
  object-fit: cover;
  max-width: 80px;
  height: auto;
}

.author__info,
.author-card__info {
  flex: 1;
}

.author p,
.author-card p {
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 15.5px;
  color: #333;
}

.author strong,
.author-card strong {
  color: #ff4b00;
  font-weight: 700;
}

.author .btn,
.author-card .btn {
  display: inline-block;
  background: #ff4b00;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(255, 75, 0, 0.2);
  transition: background 0.2s ease;
}

.author .btn:hover,
.author-card .btn:hover {
  background: #ff6930;
  color: #fff;
}

/* адаптив */
@media (max-width: 768px) {
  .author,
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .author img,
  .author-card img {
    max-width: 70px;
  }

  .author p,
  .author-card p {
    font-size: 15px;
  }
}


/* ==========================================
   FAQ — Stable & Adaptive BetWarrior Style
   ========================================== */
.faq__content {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid #f2f2f2;
}

.faq__content h2 {
  text-align: center;
  font-size: 23px;
  font-weight: 800;
  color: #ff4b00;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: 0.4px;
}

/* --- список --- */
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eee;
}

/* --- элемент --- */
.faq__item {
  border-bottom: 1px solid #eee;
  background: #fff;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq__item.open {
  background: #fffaf7;
  border-color: #ffd5c1;
}

/* --- заголовок вопроса --- */
.faq-item__title {
  position: relative;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;
  color: #222;
  padding: 14px 44px 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s ease, background 0.25s ease;
  line-height: 1.5;
}

/* активная полоса слева */
.faq-item__title::before {
  content: "";
  width: 3px;
  height: 0;
  background: #ff4b00;
  border-radius: 2px;
  transition: height 0.25s ease;
}
.faq__item.open .faq-item__title::before {
  height: 18px;
}

/* иконка + / − */
.faq-item__title::after {
  content: "+";
  position: absolute;
  right: 16px;
  font-size: 20px;
  color: #ff4b00;
  transition: transform 0.25s ease, color 0.25s ease;
}
.faq__item.open .faq-item__title::after {
  content: "−";
  color: #ff6930;
}

/* --- ответ --- */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  line-height: 1.6;
}

.faq__item.open .faq-item__answer {
  max-height: 400px;
  padding: 10px 18px 14px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 14.8px;
  line-height: 1.65;
  color: #444;
}

/* hover (только на десктопах) */
@media (hover: hover) {
  .faq-item__title:hover {
    color: #ff4b00;
    background: #fff9f5;
  }
}

/* --- адаптив --- */
@media (max-width: 768px) {
  .faq__content {
    padding: 40px 0;
  }
  .faq__content h2 {
    font-size: 21px;
    margin-bottom: 22px;
  }
  .faq-item__title {
    font-size: 14.5px;
    padding: 12px 38px 12px 14px;
  }
  .faq-item__answer {
    padding: 0 14px;
  }
}

@media (max-width: 480px) {
  .faq__content {
    padding: 34px 0;
  }
  .faq__content h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .faq-item__title {
    font-size: 14px;
    padding: 11px 34px 11px 12px;
  }
  .faq-item__answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ==========================================
   ARROW TO TOP — Stable BetWarrior Style
   ========================================== */


/* Контейнер стрелки */
.main__arrow {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 900;
  pointer-events: none; /* чтобы клик не мешал другим элементам */
}

.main__arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #ff4b00;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(255, 75, 0, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  pointer-events: all; /* чтобы ссылка всё же кликабельна */
}

/* Hover (десктоп) */
@media (hover: hover) {
  .main__arrow a:hover {
    background: #ff6930;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 75, 0, 0.3);
  }
  .main__arrow a:hover img {
    transform: translateY(-1px);
  }
}

/* Иконка */
.main__arrow img {
  width: 22px;
  height: 22px;
  filter: brightness(100);
  transition: transform 0.25s ease;
}

/* --- адаптив --- */
@media (max-width: 768px) {
  .main__arrow {
    bottom: 16px;
    right: 16px;
  }
  .main__arrow a {
    width: 42px;
    height: 42px;
    box-shadow: 0 2px 8px rgba(255, 75, 0, 0.25);
  }
  .main__arrow img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .main__arrow {
    bottom: 14px;
    right: 14px;
  }
  .main__arrow a {
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 6px rgba(255, 75, 0, 0.25);
  }
  .main__arrow img {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================
   FOOTER — BetWarrior Argentina Compact
   ========================================== */
.footer {
  background: #0e0e0e;
  color: #c9c9c9;
  padding: 40px 0 20px;
  border-top: 3px solid #ff4b00;
  font-family: 'Inter', sans-serif;
}

.footer__content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* --- Логотипы / партнёры --- */
.footer-patrocinador ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.footer-patrocinador ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-patrocinador ul img {
  height: 34px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.footer-patrocinador ul img:hover {
  opacity: 1;
}

/* --- Текстовая часть --- */
.footer__copyright {
  padding-top: 32px;
  padding-bottom: 16px;
  text-align: center;
}

.footer__copyright p {
  margin: 0;
  color: rgba(121, 121, 133, 1);

  font-size: 12px ;
  line-height: 16px;
  font-weight: 500;
}

.footer__copyright a {
  color: #ff4b00;
  text-decoration: underline;
  transition: color 0.25s ease;
}
.footer__copyright a:hover {
  color: #ff6930;
}

/* --- Нижняя зона --- */
.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 11.5px;
  color: #ff4b00;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 3px 0;
  line-height: 1.4;
}
.content .footer-bottom p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: rgba(255, 57, 0, 1);
  text-transform: uppercase;
  margin: 0;
}
/* --- адаптив --- */
@media (max-width: 900px) {
  .footer {
    padding: 36px 0 18px;
  }
  .footer-patrocinador ul img {
    height: 30px;
  }
  .footer__copyright {
    font-size: 12px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 32px 0 16px;
  }
  .footer-patrocinador ul {
    gap: 10px 16px;
  }
  .footer-patrocinador ul img {
    height: 26px;
  }
  .footer__copyright {
    font-size: 11.5px;
    line-height: 1.5;
  }
  .footer-bottom {
    margin-top: 18px;
    font-size: 10.8px;
  }
  .footer p {
   font-size: 12px; 
  }
}
