@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

/* ============================= */
/*          BASE STYLES          */
/* ============================= */

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-tracanchor-buttonk {
  background: #101b29;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffd74f, #d4af37);
  border-radius: 10px;
  border: 2px solid #101b29;
  transition: background 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffec9f, #e0bc54);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #101b29;
}

/* Основной блок прокрутки (работает в большинстве браузеров) */
body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #101b29; /* тёмный фон дорожки */
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffd74f, #d4af37);
  border-radius: 10px;
  border: 2px solid #101b29; /* отделение от трека */
  transition: background 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffec9f, #e0bc54);
}

/* Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #101b29;
}


body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 70px;
    background-color: #1c2e3b !important; /* Глубокий синий фон по всей странице */
    color: #f1f1f1;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

/* Чистый фон без наложений и шумов */
body::before {
    display: none;
}

::selection {
  background: #ffd74f;
  color: #1c1c1c;
}

::-moz-selection {
  background: #ffd74f;
  color: #1c1c1c;
}

/* body .container a {
  color: #f8d36c !important; мягкое золото
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  padding: 1px 0 2px 0;
  transition: 
    color 0.2s cubic-bezier(.4,0,.2,1),
    border-bottom-color 0.25s cubic-bezier(.4,0,.2,1),
    background 0.25s cubic-bezier(.4,0,.2,1);
  position: relative;
}

body .container a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #d9b347 0%, #fff2c1 100%);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(.4,0,.2,1);
  border-radius: 1px;
  pointer-events: none;
}

body .container a:hover,
body .container a:focus {
  color: #fff7e1;
  border-bottom-color: #d9b347;
  background: linear-gradient(90deg, rgba(217,179,71,0.07) 0%, rgba(26,34,58,0.1) 100%);
  outline: none;
}

body .container a:hover::after,
body .container a:focus::after {
  opacity: 1;
}

body .container a:active {
  color: #bfa355;
  border-bottom-color: #bfa355;
  background: linear-gradient(90deg, rgba(191,163,85,0.13) 0%, rgba(26,34,58,0.12) 100%);
}
 */

/* ============================= */
/*       HEADER & NAVIGATION     */
/* ============================= */

header {
  background: #0D1B2A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
}

header.hidden {
  top: -70px;
}

.navbar {
  display: flex;
  flex-direction: column;
  padding: 10px 15px !important;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
}

.navbar-brand {
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  color: #f1d373 !important;
  transition: color 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar-brand img {
  width: 28px;
  height: 28px;
  margin-right: 6px;
  display: inline-block;
}

.navbar-brand span {
    margin-left: 10px;
}

.navbar-brand:hover {
  color: #f0e6c0;
  opacity: 0.9;
}

.navbar-toggler {
  background-color: rgba(212, 175, 55, 0.38) !important;
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 22px;
  padding: 6px 12px;
  border-radius: 4px;
  color: #ffffff !important;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar-toggler:hover {
  background-color: rgba(212, 175, 55, 0.5) !important;
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.navbar-collapse {
  width: 100%;
  margin-top: 10px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.navbar-nav .nav-link i {
  font-size: 18px;
  margin-right: 8px;
  color: #D4AF37;
  transition: 
    color 0.2s,
    text-shadow 0.25s,
    transform 0.18s;
  /* немного увеличил размер и отступ */
}

/* Эффект свечения и лёгкое движение при ховере */
.navbar-nav .nav-link:hover i {
  color: #ffd74f;
  text-shadow: 0 0 6px #fbe595, 0 0 2px #D4AF37;
  transform: scale(1.13) rotate(-3deg);
  /* лёгкое свечение и микро-движение */
}


.navbar-nav .nav-link {
  position: relative;
  color: #f4f4f4;
  padding: 8px 12px;
  transition: color 0.3s ease;
  font-weight: 500;
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ffd74f, #d4af37);
  border-radius: 2px;
  transition: width 0.3s ease;
  opacity: 0.9;
}

.navbar-nav .nav-link:hover {
  color: #f0e6c0;
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-left: auto;
  min-width: fit-content;
}

/* Кнопка выбора языка */
.btn-lang {
  all: unset;
  background-color: #2a324a !important;
  color: #D4AF37 !important;
  border: 1px solid #D4AF37;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-lang:hover {
  background-color: #D4AF37;
  color: #0D1B2A;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.btn-lang:active {
  transform: scale(0.96);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  background-color: #1b2434;
  border: 1px solid #2e3a55;
  border-radius: 6px;
  padding: 6px 0;
  min-width: 160px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  margin-top: 6px;
  z-index: 1050;
}

.dropdown-item {
  font-size: 14px;
  color: #f0e6c0;
  padding: 8px 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.12);
  color: #ffffff;
}

.dropdown-item:active {
  background-color: rgba(212, 175, 55, 0.2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .navbar-top {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* Языковой переключатель показывается только в бургер-меню */
  .language-switcher {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .language-switcher.dropdown {
    display: flex !important;
  }

  .btn-lang {
    font-size: 12px;
    padding: 6px 14px;
  }
  
  .navbar-brand span {
    margin-left: 5px;
  }
  
  .navbar-brand img {
    display: none !important;
  }

}

/* ============================= */
/*         BREADCRUMBS          */
/* ============================= */

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 16px 0 32px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb-item {
  color: #bfc7d5;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 8px;
  color: #888ea1;
  font-size: 13px;
}

.breadcrumb-item a {
  color: #ffeaa7;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
  color: #ffd74f;
  text-decoration: underline;
}

.breadcrumb-item.active {
 margin-top: 0px !important;
 color: #f0f0f0 !important;
 font-weight: 600;
 cursor: default;
}

#main_section {
    margin-top: 0px !important;
}

#main_section a {
  color: #ffd74f ;
  text-decoration: none;
  transition: color 0.2s ease;
}

#main_section a:hover {
  color: #fff2a1;
  text-decoration: none;
}

/* ============================= */
/*      HERO STRIP (TOP LINE)    */
/* ============================= */

.hero-strip {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #0c1827, #1a2a3d);
    text-align: center;
    color: #f1f1f1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 16px 20px;
    margin-top: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

/* === Заголовок === */
.hero-strip h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.hero-strip h1::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: #ffd74f;
    margin: 8px auto 0;
    border-radius: 1px;
    opacity: 0.8;
}

/* === Подзаголовок === */
.hero-strip p {
    font-size: 1.05rem;
    color: #d0d3d6;
    max-width: 840px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
    transition: opacity 0.3s ease;
    text-align: center;
}

.hero-strip:hover p {
    opacity: 1;
}

/* === Адаптив === */
@media (max-width: 768px) {
    .hero-strip {
        padding: 18px 12px 16px;
    }

    .hero-strip h1 {
        font-size: 1.4rem !important;
    }

    .hero-strip h1::after {
        width: 70%;
    }

    .hero-strip p {
        font-size: 0.95rem;
    }

    .container img {
        width: 100%;
        max-width: 300px;
        border-radius: 3px;
        margin: 0 auto;
        max-height: 150px !important;
    }
}

/* ============================= */
/*           HERO BANNER         */
/* ============================= */

.hero {
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
}

.hero-img-wrapper {
  position: relative;
  height: 190px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #0e1621;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(10, 15, 20, 0.5), rgb(10 15 20 / 50%));
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f2f2f2;
}

.hero-content h1 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  margin: 0;
}

/* Декоративный элемент */
.hero-deco-box {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 16px;
  right: 16px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 6px
  );
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  z-index: 2;
}

/* Адаптив */
@media (max-width: 768px) {
  .hero-img-wrapper {
    height: 180px;
  }

  .hero-content h1 {
    font-size: 1.2rem !important;
  }

  .hero-deco-box {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
  }
}

/* ============================= */
/*       MAIN CONTENT STYLES     */
/* ============================= */

main {
  margin: auto;
  padding: 0px 24px;
  margin-top: 40px;
  max-width: 1000px;
}

/* ============================= */
/*        HEADINGS STYLES        */
/* ============================= */

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.3s ease, transform 0.25s ease;
}

/* ===== Primary Heading (H1) ===== */
h1 {
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  letter-spacing: -0.5px;
  color: #f6f6f6 !important;
}

/* ===== Secondary Heading (H2) ===== */
h2 {
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f1f1f1 !important;
  text-align: left;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d4af37 ;
  margin-top: 6px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

h2:hover::after {
  width: 90px;
  background-color: #ffd363;
}

/* ===== Tertiary Heading (H3) ===== */
h3 {
  font-size: 1.5rem;
  color: #e2e2e2 !important;
  position: relative;
  padding-left: 14px;
  font-weight: 600;
}

h3::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: #c89e2e;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

h3:hover::before {
  background: #f6bf4a;
}

h4 {
    color: #f1f1f1 !important;
}


/* ============================= */
/*         MOBILE OPTIMIZATION   */
/* ============================= */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem !important;
    font-weight: 600;
    letter-spacing: -0.4px;
  }

  h1::after {
    width: 70px;
    height: 3px;
  }

  h2 {
    font-size: 1.3rem !important;
    padding-bottom: 6px;
    margin-top: 2px;
  }

  h2::after {
    width: 40px;
    height: 2px;
  }

  h3 {
    font-size: 1.2rem !important;
    padding-left: 10px;
  }
}

/* Section Title Styling */
.section-title {
  text-align: center;
  margin-bottom: 1.4rem;
  color: #eaeff2;
}

/* Subtitles */
.sub-title {
  margin-top: 1.7rem;
  color: #cbd5df;
}

/* ============================= */
/*          TEXT STYLES          */
/* ============================= */

p {
  font-size: 17px;
  text-align: justify;
  color: #d6dee6;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ============================= */
/*        LIST STYLING           */
/* ============================= */

/* --- Общие стили для списков (только внутри <main>) --- */
main.container.mt-5 ul,
main.container.mt-5 ol {
  padding-left: 20px;
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #e0e6eb; /* Светло-серый текст для тёмного фона */
}

/* --- Кастомные маркеры для ul --- */
main.container.mt-5 ul {
  list-style: none;
}

main.container.mt-5 ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}

main.container.mt-5 ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 2px;
  color: #f0c657; /* Тёплый золото-жёлтый */
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.2s ease, color 0.3s ease;
}

/* --- Нумерованные списки с кастомной нумерацией --- */
main.container.mt-5 ol {
  counter-reset: custom-counter;
  list-style: none;
}

main.container.mt-5 ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  counter-increment: custom-counter;
  transition: color 0.3s ease-in-out;
}

main.container.mt-5 ol li::before {
  content: counter(custom-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #f0c657;
  font-size: 17px;
  transition: transform 0.2s ease, color 0.3s ease;
}

/* --- Вложенные списки --- */
main.container.mt-5 ul ul,
main.container.mt-5 ol ol {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 16px;
  color: #cbd3da;
}

main.container.mt-5 ul ul li::before {
  content: '–';
  font-size: 16px;
  color: #d9b241; /* мягкое золото для вложенного */
}

main.container.mt-5 ol ol li::before {
  color: #d9b241;
}

/* --- Ховеры --- */
main.container.mt-5 ul li:hover,
main.container.mt-5 ol li:hover {
  color: #ffffff;
}

main.container.mt-5 ul li:hover::before,
main.container.mt-5 ol li:hover::before {
  transform: scale(1.2);
  color: #ffdb70; /* яркое золото при наведении */
}

/* --- Мобильная адаптация --- */
@media (max-width: 768px) {
  main.container.mt-5 ul,
  main.container.mt-5 ol {
    font-size: 16px;
  }

  main.container.mt-5 ul li::before,
  main.container.mt-5 ol li::before {
    font-size: 18px;
  }
}
/* ============================= */
/*     BONUS LIST (🎁 / 🔸)       */
/* ============================= */

.bonus-list {
    padding-left: 20px;
    margin-bottom: 16px;
    list-style: none;
}

.bonus-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    font-weight: 500;
    color: #e6e6e6;
    line-height: 1.6;
    transition: transform 0.25s ease-in-out, color 0.3s ease;
}

/* Иконка: 🎁 по умолчанию */
.bonus-list li::before {
    content: "🎁";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.15rem;
    color: #f5b543;
    transition: transform 0.25s ease, color 0.3s ease;
}

/* Альтернатива: 🔸 */
.bonus-list.dot li::before {
    content: "🔸";
}

/* Наведение */
.bonus-list li:hover {
    transform: translateX(6px);
    color: #ffd985;
}

.bonus-list li:hover::before {
    transform: scale(1.2);
    color: #ffcb5c;
}

/* ============================= */
/*        АДАПТИВНОСТЬ          */
/* ============================= */
@media (max-width: 768px) {
    .bonus-list {
        padding-left: 16px;
    }

    .bonus-list li {
        font-size: 0.95rem;
        padding-left: 26px;
    }

    .bonus-list li::before {
        font-size: 1rem;
        top: 2px;
    }
}

/* ============================= */
/*          TABLE STYLES         */
/* ============================= */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    padding: 12px;
}

/* === ОСНОВА ТАБЛИЦЫ === */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: #1e2f3c !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-align: center;
    table-layout: auto;
    color: #f4f7fa !important;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

/* === ЗАГОЛОВОК === */
table caption {
    font-size: 17px;
    font-weight: 700;
    color: #ffd74f !important;
    padding: 14px;
    background: #16222d !important;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}

/* === ШАПКА (th) === */
th {
    background: linear-gradient(135deg, #ffd74f, #f1c94c) !important;
    color: #1c2e3b !important;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 12px;
    border-bottom: 3px solid #b58b2d !important;
    white-space: nowrap;
}

/* === ЯЧЕЙКИ (td) === */
td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    background: rgba(255, 255, 255, 0.015) !important;
    transition: background 0.2s ease-in-out;
    color: #f0f2f4 !important;
}

/* === ЧЕРЕДОВАНИЕ И ХОВЕР === */
tr:nth-child(even) td {
    background: #223545 !important;
}

tr:hover td {
    background: rgba(255, 215, 79, 0.1) !important;
}

/* === СКРУГЛЕНИЯ === */
tr:first-child th:first-child {
    border-top-left-radius: 14px;
}

tr:first-child th:last-child {
    border-top-right-radius: 14px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 14px;
}

/* ============================= */
/*     MOBILE RESPONSIVENESS     */
/* ============================= */

@media (max-width: 768px) {
    table {
        border: none;
        box-shadow: none;
        background: transparent;
    }

    thead {
        display: none;
    }

    tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 18px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        padding: 14px 12px;
        border-radius: 14px;
        background: #223545 !important;
    }

    td {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 10px 6px;
        font-size: 14px;
        border-bottom: none;
        color: #f2f5f8 !important;
        position: relative;
    }

    td::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        text-transform: uppercase;
        color: #ffd74f !important;
        font-size: 13px;
        margin-right: 10px;
        flex-shrink: 0;
        min-width: 100px;
    }

    td:last-child {
        margin-bottom: 0;
    }
}


/* ============================= */
/*          BLOCKQUOTE           */
/* ============================= */

blockquote {
    font-size: 18px;
    font-style: italic;
    color: #f1f5f9;
    background: linear-gradient(135deg, #2a3e52, #1e2f3d); /* Градиент под тёмный фон */
    border-left: 5px solid #f1c94c; /* Акцент в стиле золота */
    padding: 20px 26px;
    margin: 28px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    position: relative;
    font-weight: 500;
    text-align: justify;
    line-height: 1.7;
    transition: all 0.3s ease-in-out;
}

/* Мягкие кавычки */
blockquote::before {
    content: "“";
    font-size: 42px;
    font-weight: bold;
    color: #f1c94c;
    position: absolute;
    left: 18px;
    top: -10px;
    opacity: 0.5;
    font-family: serif;
}

blockquote::after {
    content: "”";
    font-size: 42px;
    font-weight: bold;
    color: #f1c94c;
    position: absolute;
    right: 18px;
    bottom: -10px;
    opacity: 0.5;
    font-family: serif;
}

/* Автор цитаты */
blockquote footer {
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    color: #e0b04f;
    margin-top: 14px;
    opacity: 0.9;
    font-style: normal;
    letter-spacing: 0.3px;
}

/* ============================= */
/*      MOBILE OPTIMIZATION      */
/* ============================= */

@media (max-width: 768px) {
    blockquote {
        font-size: 16px;
        padding: 16px 20px;
        margin: 22px 0;
        line-height: 1.6;
    }

    blockquote::before,
    blockquote::after {
        font-size: 34px;
    }

    blockquote footer {
        font-size: 14px;
    }
}

/* ============================= */
/*         PROMO CARDS FIX       */
/* ============================= */

.promo-list {
    display: grid;
    gap: 24px;
    width: 100%;
}

/* Карточка */
.promo-item {
    background: linear-gradient(145deg, #0d1b2a, #131f33);
    border: 1px solid #2c3e50;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

/* Карточка */
.promo-item:hover {
    box-shadow: 0 4px 12px rgb(140 118 32 / 35%);
}

/* ============================= */
/*         MOBILE FIXES          */
/* ============================= */

@media (max-width: 768px) {
    .page-layout {
        flex-direction: column;
        gap: 0;
    }

    .promo-item {
        min-height: auto;
        padding: 16px;
        align-items: center;
        text-align: center;
    }

    .promo-info {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .promo-footer {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
}

/* ============================= */
/*        GRID-ОБЁРТКА           */
/* ============================= */

.promo-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1020px;
    width: 30% !important;
}

/* ============================= */
/*     ВЕРХНЯЯ ИНФО О БОНУСЕ     */
/* ============================= */

.promo-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #f4f4f4;
    margin-bottom: 10px;
}

.promo-icon {
    font-size: 18px;
    color: #ebc85a;
}

.promo-time {
    font-size: 12px;
    color: #9ba5b0;
}

/* ============================= */
/*        КНОПКА "COLLECT"       */
/* ============================= */

.collect-button {
    background: linear-gradient(135deg, #f2cb5f, #d7a939);
    color: #1c2e3b;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
    width: 100%;
    max-width: 170px !important;
    margin-top: 12px;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.collect-button:hover {
    background: linear-gradient(135deg, #ffe88a, #e6b84c);
    color: #0f1f2c;
    box-shadow: 0 3px 10px rgba(255, 222, 130, 0.3);
}

.collect-button:active {
    transform: scale(0.96);
    box-shadow: 0 1px 4px rgba(212, 175, 55, 0.25);
}

/* ============================= */
/*   НИЖНИЙ БЛОК (КЛИКИ + ДАТА)  */
/* ============================= */

.promo-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: #aab3c0;
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

.promo-clicks i, .promo-date i {
    color: #e1bb51;
    font-size: 13px;
    margin-right: 4px;
}

/* ============================= */
/*   АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ  */
/* ============================= */

@media (max-width: 768px) {
    .collect-button {
        max-width: 100px !important;
        font-size: 12.5px;
    }

    .promo-info {
        flex-direction: column;
        gap: 4px;
    }

    .promo-footer {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .promo-grid {
        width: 50% !important;
    }
}

.simple-download-banner {
  background: linear-gradient(135deg, #15284d 75%, #253e6e 100%);
  color: #ffe095;
  padding: 32px 18px 22px 18px;
  border-radius: 1.3rem;
  box-shadow: 0 6px 32px rgba(32,40,60,0.13);
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
}

.banner-texts {
  text-align: left;
}

.simple-download-banner h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffd74f;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.17);
}

.banner-slogan {
  font-size: 1.13rem;
  font-weight: 600;
  color: #fbe7b3;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
}

.banner-note {
  color: #ffe095;
  font-size: 1.05em;
  opacity: 0.96;
  letter-spacing: 0.11px;
  line-height: 1.47;
}

.banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  min-width: 215px;
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  font-size: 1.11rem;
  font-weight: 700;
  border-radius: 1.1em;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(92deg, #243d65 80%, #ffd74f 180%);
  color: #223055;
  border: 2px solid #ffd74f;
  box-shadow: 0 2px 16px rgba(255,215,79,0.12);
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  justify-content: center;
  min-width: 190px;
}

.banner-btn.android {
  background: linear-gradient(94deg, #2d496e 68%, #ffe095 170%);
  color: #bafefd;
}

.banner-btn.ios {
  background: linear-gradient(94deg, #385fc3 68%, #ffd74f 170%);
  color: #fffbe5;
}

.banner-btn:hover, .banner-btn:focus {
  background: linear-gradient(94deg, #ffd74f 25%, #20335c 170%);
  color: #1d2334;
  box-shadow: 0 4px 22px rgba(255,215,79,0.30);
  border-color: #ffe095;
  text-decoration: none;
}

.banner-btn i {
  font-size: 1.37em;
  margin-right: 8px;
  margin-left: -2px;
  vertical-align: middle;
  transition: color 0.16s;
}

/* MOBILE: Кнопки снизу */
@media (max-width: 850px) {
  .banner-content {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .banner-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 14px;
    min-width: 0;
  }
  .banner-btn {
    min-width: 0;
    width: 100%;
    justify-content: center;
    font-size: 1em;
    padding: 12px 7px;
    border-radius: 0.96em;
  }
  .banner-texts {
    text-align: center;
  }
  .banner-btn i {
    display: none;
  }
}

/* ============================= */
/*      COLLECT BONUS BUTTON     */
/* ============================= */

.collect-button {
    all: unset;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #1c2e3b !important;
    background: linear-gradient(135deg, #ffd74f, #d4af37) !important;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.3s ease;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
    position: relative;
}

.collect-button:hover {
    background: linear-gradient(135deg, #fff2b0, #e6c557) !important;
    box-shadow: 0 0 14px rgba(255, 215, 79, 0.35);
}

.collect-button:active {
    transform: scale(0.96);
    box-shadow: 0 0 6px rgba(255, 215, 79, 0.2);
}

.collect-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -120%;
    width: 220%;
    height: 300%;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
    transition: left 0.5s ease-in-out;
    pointer-events: none;
}

.collect-button:hover::before {
    left: 150%;
}


/* ============================= */
/*         COPY BUTTON           */
/* ============================= */

.copy-button {
    all: unset;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 160px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #f0e6c0;
    background: linear-gradient(135deg, #1f2a3b, #263849);
    border: 1px solid #D4AF37;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 5px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.copy-button:hover {
    background: linear-gradient(135deg, #2b384c, #34495e);
    color: #ffd74f;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
}

.copy-button:active {
    transform: scale(0.97);
    box-shadow: 0 0 6px rgba(255, 215, 79, 0.2);
}


/* ============================= */
/*         LAYOUT ADJUSTMENTS    */
/* ============================= */

/* Обертка (если есть .main-wrapper или .content-wrapper — добавим вручную в HTML потом) */
.page-layout {
    display: flex;
    flex-direction: row-reverse; /* Визуально меняем сайдбар направо → налево */
    gap: 24px;
    align-items: flex-start;
}

/* ============================= */
/*         SIDEBAR STYLES        */
/* ============================= */

.sidebar {
  background: linear-gradient(135deg, #0D1B2A, #1A1F2E);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1px solid #2c3e50;
  max-width: 260px;
  min-width: 220px;
  color: #f1f1f1;
  height: fit-content;
  position: relative;
  order: -1; /* перемещает сайдбар левее */
}

/* Заголовки */
.sidebar h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Две колонки */
.sidebar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.sidebar-grid a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #f1f1f1 !important;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.sidebar-grid a:hover {
  background: rgba(212, 175, 55, 0.07);
  color: #ffeaa7 !important;
}

.sidebar-grid a i {
  color: #D4AF37;
  margin-right: 6px;
}

/* Кнопка вниз */
.anchor-button a {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0D1B2A !important;
  background: linear-gradient(135deg, #D4AF37, #8135ff);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.anchor-button a:hover {
  background: linear-gradient(135deg, #ffeaa7, #fff4c2);
  color: #000;
  transform: translateY(-1px);
}

/* Мобилка */
@media (max-width: 768px) {
  .sidebar {
    width: 90% !important;
    margin-top: 15px !important;
    margin: auto 15px;
    order: unset; /* отменяем перемещение */
  }

  .sidebar-grid {
/*     grid-template-columns: 1fr; в одну колонку
 */  }
  
  .toread {
      display: none;
  }
}


/* ============================= */
/*         FAQ STYLING           */
/* ============================= */

#faq {
    max-width: 750px;
    margin: auto;
    padding: 28px 20px;
}

/* Заголовок */
#faq h2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    color: #f4f7fa;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

/* Подчеркивание */
#faq h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #ffd74f, #d4af37);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* FAQ контейнер */
details {
    background: #223545;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease-in-out;
    color: #f2f5f8;
}

/* Раскрытый блок */
details[open] {
    background: #2c4054;
    border-color: #ffd74f;
    transform: scale(1.015);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Вопрос */
summary {
    font-size: 17px;
    font-weight: 700;
    color: #f4f7fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 28px;
    position: relative;
    list-style: none;
    transition: color 0.3s ease-in-out;
}

/* Стрелочка */
summary::after {
    content: "▼";
    font-size: 13px;
    color: #ffd74f;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    position: absolute;
    right: 0;
}

/* Поворот при открытии */
details[open] summary::after {
    transform: rotate(180deg);
    color: #f4c847;
}

/* Ховер */
summary:hover {
    color: #ffd74f;
}

/* Ответ */
details p {
    font-size: 15.5px;
    color: #e2e6eb;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding-top: 10px;
}

/* Плавное появление */
details[open] p {
    opacity: 1;
}

/* ============================= */
/*      RESPONSIVE FIXES         */
/* ============================= */

@media (max-width: 768px) {
    #faq {
        padding: 18px;
    }

    #faq h2 {
        font-size: 20px;
    }

    summary {
        font-size: 16px;
    }

    summary::after {
        font-size: 12px;
    }

    details p {
        font-size: 15px;
        line-height: 1.5;
    }
}

.footer-custom {
  background: #18232e;
  color: #e7eaf1;
  font-family: "Inter", sans-serif;
  padding: 44px 12px 22px;
  border-top: 3px solid #ffd74f;
}

.footer-container {
  max-width: 1150px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.footer-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffd74f;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.footer-lang,
.footer-social {
  min-width: 220px;
}

/* ЯЗЫКИ */
.footer-lang-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-lang-list li {
  margin-bottom: 7px;
  font-size: 15px;
}
.footer-lang-list b {
  color: #fffddb;
  font-weight: 700;
  margin-right: 4px;
}
.footer-lang-list a {
  color: #ffe178;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color 0.18s;
  margin: 0 2px;
}
.footer-lang-list a:hover {
  color: #fff;
}

/* СОЦСЕТИ */
.footer-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social-list li {
  margin-bottom: 8px;
  font-size: 15px;
}
.footer-social-list a {
  color: #e7eaf1;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s, transform 0.16s;
}
.footer-social-list a:hover {
  color: #ffd74f;
  transform: translateX(2px);
}

.footer-copy {
  font-size: 13.3px;
  color: #aab1b9;
  line-height: 1.7;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= MOBILE ================= */
@media (max-width: 750px) {
  .footer-main {
    display: block !important;
    gap: 0 !important;
    margin-bottom: 18px;
  }
  .footer-lang,
  .footer-social {
    min-width: 0;
    margin-bottom: 24px;
  }
  .footer-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .footer-lang-list li,
  .footer-social-list li {
    font-size: 14.3px;
    margin-bottom: 7px;
  }
}

@media (max-width: 450px) {
  .footer-custom {
    padding: 22px 4vw 10px;
    font-size: 13.2px;
  }
  .footer-title {
    font-size: 13.5px;
  }
  .footer-copy {
    font-size: 12.1px;
    padding-top: 9px;
  }
  .footer-lang-list li,
  .footer-social-list li {
    font-size: 13.2px;
  }
}

/* Убить любые лишние флексы и float из Bootstrap внутри футера */
.footer-custom * {
  box-sizing: border-box !important;
}

/* Адаптированные стили */

#related-games {
    background: #1c2e3b !important;
    padding: 50px 20px;
    text-align: center;
}

.subheading {
    font-size: 18px;
    font-weight: bold;
    color: #ffd74f !important;
    margin-bottom: 30px;
}

.game-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.game-item {
    background: #223545;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 320px;
    width: 100%;
}

.game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.game-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h2 {
    font-size: 22px;
    color: #f0f2f5;
    margin-bottom: 10px;
}

.game-info p {
    font-size: 16px;
    color: #cfd4da;
}

/* Кнопка */
.btn-game {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #0D1B2A;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #D4AF37, #b7912d);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.btn-game:hover {
    background: linear-gradient(135deg, #f0e6c0, #d9bb4b);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
/* ============================= */
/*      ADDITIONAL INFO TEXT     */
/* ============================= */

.additional-info {
    margin-top: 50px;
    text-align: center;
}

.additional-info h2 {
    font-size: 24px;
    color: #f0f2f5 !important;
    font-weight: 700;
    margin-bottom: 12px;
}

.additional-info p {
    font-size: 16px;
    color: #cfd4da !important;
    line-height: 1.6;
}

/* ============================= */
/*       MOBILE OPTIMIZATION     */
/* ============================= */

@media (max-width: 768px) {
    .additional-info h2 {
        font-size: 20px;
    }

    .additional-info p {
        font-size: 15px;
    }

    .subheading {
        font-size: 16px;
    }

    .game-grid {
        flex-direction: column;
        align-items: center;
    }

    .game-item {
        width: 100%;
        max-width: 100%;
    }

    .btn-game {
        width: 100%;
    }
}

/* ============================= */
/*      CONTENT IMAGE STYLES     */
/* ============================= */

.container img {
    display: block; /* Изображение занимает всю ширину блока */
    max-width: 100%; /* Ограничиваем размер */
    max-height: 400px;
    margin: 15px auto; /* Отступ сверху и снизу, автоцентрирование */
    border-radius: 10px; /* Закругленные углы для эстетики */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Небольшая тень для глубины */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Эффект при наведении */
.container img:hover {
    transform: scale(1.02); /* Легкое увеличение */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Подпись к изображению */
.content-img-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* ============================= */
/*       MOBILE OPTIMIZATION     */
/* ============================= */
@media (max-width: 768px) {
    .content-img {
        margin: 10px auto;
        border-radius: 8px;
    }

    .content-img-caption {
        font-size: 13px;
    }
}

/* ============================= */
/*      INTERNAL LINKS BLOCK     */
/* ============================= */

.internal-links {
    background: #1e2f3c !important;
    padding: 24px;
    border-radius: 12px;
    margin: 50px auto 20px;
    max-width: 800px;
    text-align: left;
    border-left: 4px solid #ffd74f !important;
    transition: all 0.25s ease-in-out;
}

/* Заголовок */
.internal-links h2 {
    font-size: 22px;
    font-weight: 700;
    color: #f4f7fa !important;
    margin-bottom: 16px;
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Иконка перед заголовком */
.internal-links h2::before {
    content: "📌";
    font-size: 18px;
    color: #ffd74f !important;
}

/* Список ссылок */
.internal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-links ul li {
    margin: 6px 0;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.internal-links ul li:hover {
    background: rgba(255, 215, 79, 0.08);
    transform: translateX(4px);
}

/* Ссылки */
.internal-links ul li a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #ffd74f !important;
    text-decoration: none;
    gap: 8px;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.internal-links ul li a::before {
    content: "→";
    font-size: 16px;
    color: #ffd74f !important;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.internal-links ul li a:hover {
    color: #ffb84d !important;
    transform: translateX(3px);
}

.internal-links ul li a:hover::before {
    transform: translateX(5px);
    color: #ff9900 !important;
}

/* ============================= */
/*      MOBILE OPTIMIZATION      */
/* ============================= */

@media (max-width: 768px) {
    .internal-links {
        padding: 18px;
        border-left: 3px solid #ffd74f !important;
    }

    .internal-links h2 {
        font-size: 20px;
    }

    .internal-links ul li {
        padding: 10px 14px;
    }

    .internal-links ul li a {
        font-size: 15px;
    }
}

.published-on {
  font-size: 0.95rem;
  color: #b5bfc9;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  font-style: italic;
}

.published-on i {
  color: #ffd74f;
  font-size: 1rem;
}
