/* ============================================
   SECTION HEADINGS - Icons & Enhancements
   Beautiful headings matching block style
   ============================================ */

/* Specific heading icons based on content */

/* "Ключевая информация" / "Ключова інформація" */
.uac-tiles-heading::before {
  content: "ℹ️";
  font-size: 18px;
  width: auto;
  height: auto;
  background: none;
  margin-right: 4px;
}

/* "Типы игр" / "Типи ігор" */
.uac-games .uac-section-head::before {
  content: "🎮";
  font-size: 18px;
  width: auto;
  height: auto;
  background: none;
  margin-right: 4px;
}

/* "Провайдеры" */
.uac-providers .uac-section-head::before {
  content: "🏢";
  font-size: 18px;
  width: auto;
  height: auto;
  background: none;
  margin-right: 4px;
}

/* "Способы пополнения счета" / "Методы вывода средств" */
.uac-methods .mhead::before {
  content: "💳";
  font-size: 18px;
  width: auto;
  height: auto;
  background: none;
  margin-right: 4px;
}

/* Different icons for deposit vs withdrawal if needed */
.uac-methods .mhead:first-of-type::before {
  content: "💰"; /* Deposit icon */
}

.uac-methods .mhead:last-of-type::before {
  content: "💸"; /* Withdrawal icon */
}

/* Alternative - if you prefer simple colored line instead of emoji */
.uac-section-head.no-emoji::before,
.uac-tiles-heading.no-emoji::before,
.uac-methods .mhead.no-emoji::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 2px;
  margin-right: 0;
}

/* Mobile - smaller icons */
@media (max-width: 768px) {
  .uac-tiles-heading::before,
  .uac-games .uac-section-head::before,
  .uac-providers .uac-section-head::before,
  .uac-methods .mhead::before {
    font-size: 16px;
  }
}

/* Optional: Add subtle animation on hover */
.uac-section-head:hover,
.uac-tiles-heading:hover,
.uac-methods .mhead:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transition: all 0.2s ease;
}
