/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 05 2026 | 10:55:18 */
p {
	margin-bottom: 10px;
}

ol li {
	margin-bottom: 15px;
}

/* RESET */
ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}

/* БАЗА */
ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.5;
  font-size: 15px;
  transition: 0.2s;
}

/* КАСТОМНЫЙ МАРКЕР */
ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e10600; /* дефолт = красный */
  box-shadow: 0 0 6px #e10600;
  transition: 0.2s;
}

/* HOVER ЭФФЕКТ */
ul li:hover {
  transform: translateX(4px);
}

ul li:hover::before {
  box-shadow: 0 0 10px #e10600;
}

/* ВАРИАНТ: БЕЛЫЕ МАРКЕРЫ */
ul.white li::before {
  background: #fff;
  box-shadow: 0 0 6px #fff;
}

/* ВАРИАНТ: БОЛЕЕ АГРЕССИВНЫЕ (толще) */
ul.strong li::before {
  width: 8px;
  height: 8px;
}

/* ВАРИАНТ: МИНИМАЛ */
ul.minimal li::before {
  width: 4px;
  height: 4px;
  box-shadow: none;
}

/* MOBILE */
@media (max-width: 500px) {
  ul li {
    font-size: 14px;
  }
}

/* RESET */
ol {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
  counter-reset: ufc-counter;
}

/* ITEM BASE */
ol li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.5;
  font-size: 15px;
  transition: 0.2s;
  counter-increment: ufc-counter;
}

/* NUMBER BADGE */
ol li::before {
  content: counter(ufc-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 13px;

  border-radius: 6px;

  background: #e10600;
  color: #fff;

  box-shadow: 0 0 10px rgba(225, 6, 0, 0.7);
  transition: 0.2s ease;
}

/* HOVER — движение бойца */
ol li:hover {
  transform: translateX(5px);
}

ol li:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.9);
}

/* ⚪ ВАРИАНТ: БЕЛЫЕ ЦИФРЫ */
ol.white li::before {
  background: #fff;
  color: #000;
  box-shadow: 0 0 10px #fff;
}

/* 🧱 ВАРИАНТ: ЖЁСТКИЕ РЕЙТИНГИ */
ol.strong li::before {
  width: 32px;
  height: 32px;
  font-size: 14px;
  border-radius: 8px;
}

/* 🧊 ВАРИАНТ: МИНИМАЛ */
ol.minimal li::before {
  width: 22px;
  height: 22px;
  font-size: 12px;
  box-shadow: none;
}

/* MOBILE */
@media (max-width: 500px) {
  ol li {
    font-size: 14px;
    padding-left: 38px;
  }

  ol li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

.ufc-rankings {
  color: #fff;
}

/* TITLE */
.ufc-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
}

.ufc-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, #e10600, transparent);
  box-shadow: 0 0 14px #e10600;
}

/* GRID — четкие 3 колонки */
.ufc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .ufc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ufc-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD BASE */
.ufc-card {
  --accent: #e10600;

  background: linear-gradient(160deg, #0f0f0f, #050505);
  border: 1px solid #1c1c1c;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* glowing animated edge */
.ufc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, var(--accent), transparent);
  opacity: 0.6;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* subtle inner glow */
.ufc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, var(--accent), transparent 70%);
  opacity: 0.05;
}

/* HOVER = "вышел в октагон" */
.ufc-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 0 35px var(--accent);
}

.ufc-card:hover::before {
  opacity: 1;
}

/* CATEGORY */
.ufc-weight {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1.2px;
}

/* LIST */
.ufc-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ufc-card li {
  display: flex;
  align-items: center;
  padding: 9px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: 0.2s;
}

/* hover на бойцах */
.ufc-card li:hover {
  transform: translateX(4px);
  color: var(--accent);
}

/* number badge */
.ufc-card li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--accent);
  font-size: 13px;
}

/* чемпион (1 место) */
.ufc-card li:first-child span {
  background: linear-gradient(135deg, #ffd700, #ffb700);
  color: #000;
  box-shadow: 0 0 14px #ffd700;
}

/* last item */
.ufc-card li:last-child {
  border-bottom: none;
}

/* MOBILE */
@media (max-width: 500px) {
  .ufc-title {
    font-size: 28px;
  }

  .ufc-card {
    padding: 16px;
  }
}

/* 🎨 АКЦЕНТЫ (разные стили дивизионов) */
.ufc-card.c1 { --accent: #e10600; } /* кровь */
.ufc-card.c2 { --accent: #ff3c00; } /* огонь */
.ufc-card.c3 { --accent: #ff7b00; } /* жара */
.ufc-card.c4 { --accent: #ffc400; } /* золото */
.ufc-card.c5 { --accent: #00d4ff; } /* холод */
.ufc-card.c6 { --accent: #0091ff; } /* лед */
.ufc-card.c7 { --accent: #7a00ff; } /* яд */
.ufc-card.c8 { --accent: #ff00aa; } /* неон */
.ufc-card.c9 { --accent: #00ff88; } /* энергия */



.ufc-faq {
}

/* GRID */
.ufc-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 900px) {
  .ufc-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ufc-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.ufc-faq-card {
  --accent: #e10600;

  background: linear-gradient(160deg, #0f0f0f, #050505);
  border: 1px solid #1c1c1c;
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

/* glow border */
.ufc-faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, var(--accent), transparent);
  opacity: 0.6;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* hover */
.ufc-faq-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 30px var(--accent);
}

/* SUMMARY (вопрос) */
.ufc-faq-card summary {
  list-style: none;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  padding-right: 30px;
}

/* убрать дефолт стрелку */
.ufc-faq-card summary::-webkit-details-marker {
  display: none;
}

/* кастом стрелка */
.ufc-faq-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  transition: 0.3s;
}

/* открыто */
.ufc-faq-card[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

/* CONTENT */
.ufc-faq-content {
  margin-top: 12px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

.ufc-faq-content ul {
  padding-left: 18px;
}

.ufc-faq-content li {
  margin-bottom: 6px;
}

/* subtle animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🎨 разные цвета */
.ufc-faq-card.f1 { --accent: #e10600; } /* кровь */
.ufc-faq-card.f2 { --accent: #00d4ff; } /* холод */
.ufc-faq-card.f3 { --accent: #ff00aa; } /* неон */

/* HEADER: полностью чистые списки */
header ul,
header ol,
footer ul,
footer ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* отключаем кастомные before (точки и цифры) */
header ul li::before,
footer ul li::before,
header ol li::before,
footer ol li::before {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
}

/* убираем отступы под твои глобальные li */
header ul li,
footer ul li,
header ol li,
footer ol li {
  padding-left: 0;
  margin-left: 0;
  transform: none !important;
}

/* Базовые переменные (легко кастомизировать) */
:root {
  --table-bg: rgba(28, 28, 30, 0.75);
  --table-border: rgba(255, 255, 255, 0.08);
  --table-text: #f5f5f7;
  --table-muted: rgba(255, 255, 255, 0.5);
  --table-accent: #0a84ff;
  --table-row-hover: rgba(255, 255, 255, 0.06);
  --table-header-bg: rgba(255, 255, 255, 0.04);
  --table-radius: 14px;
  --table-blur: blur(16px);
  --table-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Контейнер для адаптивности */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 8px;
}

/* Основная таблица */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--table-bg);
  backdrop-filter: var(--table-blur);
  color: var(--table-text);
  border: 1px solid var(--table-border);
  border-radius: var(--table-radius);
  box-shadow: var(--table-shadow);
  overflow: hidden;
  font-size: 14px;
}

/* Заголовок */
thead {
  background: var(--table-header-bg);
}

th {
  text-align: left;
  font-weight: 500;
  color: var(--table-muted);
  padding: 14px 16px;
  border-bottom: 1px solid var(--table-border);
}

/* Ячейки */
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--table-border);
}

/* Убираем нижнюю границу у последней строки */
tr:last-child td {
  border-bottom: none;
}

/* Hover эффект */
tbody tr:hover {
  background: var(--table-row-hover);
}

/* Скругления */
thead tr th:first-child {
  border-top-left-radius: var(--table-radius);
}

thead tr th:last-child {
  border-top-right-radius: var(--table-radius);
}

tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--table-radius);
}

tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--table-radius);
}

/* Выделение строки (например, активной) */
tr.active {
  background: rgba(10, 132, 255, 0.15);
}

/* Адаптив: превращаем таблицу в карточки */
@media (max-width: 768px) {
  table {
    border: none;
    box-shadow: none;
    background: transparent;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 12px;
    background: var(--table-bg);
    border-radius: var(--table-radius);
    border: 1px solid var(--table-border);
    overflow: hidden;
  }

  td {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--table-border);
  }

  td:last-child {
    border-bottom: none;
  }

  td::before {
    content: attr(data-label);
    color: var(--table-muted);
    font-size: 12px;
    margin-right: 10px;
  }
}



  .ufcX-wrap {
    margin: 70px auto;
    font-family: "Oswald", Arial, sans-serif;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 120px rgba(0,0,0,0.9);
  }

  .ufcX-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 10% 20%, rgba(255,0,0,0.35), transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(255,80,0,0.25), transparent 45%);
    filter: blur(60px);
    opacity: .7;
  }

  .ufcX-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
  }

  .ufcX-left {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ufcX-tag {
    color: #ff1e1e;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .ufcX-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .ufcX-title span {
    color: #ff1e1e;
  }

  .ufcX-desc {
    font-size: 1.1rem;
    color: #cfcfcf;
    line-height: 1.7;
    max-width: 520px;
  }

  .ufcX-btn {
    margin-top: 28px;
    display: inline-block;
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg,#ff0000,#ff5a00);
    box-shadow: 0 20px 60px rgba(255,0,0,0.5);
    transition: all .2s ease;
  }

  .ufcX-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 30px 80px rgba(255,0,0,0.7);
    filter: brightness(1.1);
  }

  .ufcX-right {
    position: relative;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border-left: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .ufcX-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 2px,
        transparent 2px,
        transparent 14px
      );
    opacity: .25;
  }

  .ufcX-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 260px;
    height: 140px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-align: center;
    font-size: 0.9rem;
  }

  @media (max-width: 900px) {
    .ufcX-grid {
      grid-template-columns: 1fr;
    }

    .ufcX-left {
      padding: 32px 22px;
      text-align: center;
      align-items: center;
    }

    .ufcX-title {
      font-size: 1.9rem;
    }

    .ufcX-desc {
      font-size: 1rem;
    }

    .ufcX-right {
      padding: 26px;
    }
  }


.age-banner {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  background: #000;
  border: 1px solid #1f2937;
  padding: 8px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);

  user-select: none;
  transition: border-color 0.5s ease;
  margin-top: 10px;
  margin-bottom: 10px;
}

.age-banner:hover {
  border-color: #e11b22;
}

.badge {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e11b22;
  color: #fff;

  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -1px;

  border-radius: 12px;

  box-shadow: 0 0 15px rgba(225, 27, 34, 0.4);

  transition: transform 0.3s ease;
}

.age-banner:hover .badge {
  transform: scale(1.05);
}

.text {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #e11b22;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

.title {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 2px;
}

.desc {
  margin: 0;
  max-width: 180px;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;

  color: #64748b;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}