/* ==========================================================================
   STYLE EDITOR & COMPONENT EXTENSIONS
   ========================================================================== */

.ql-color-#131317 {
  color: #131317;
}

/* RTP Game Grid Spacing */
#rtp-content {
  margin-top: 10px;
}

#rtp-content > .col-lg-4,
#rtp-content > .col-6 {
  padding: 4px;
}

/* Pola check icon styling */
.table-pola .lni-checkmark-circle {
  color: #00e676;
  font-size: 0.85rem;
  vertical-align: middle;
}

.table-pola .lni-cross-circle {
  color: #ff3d57;
  font-size: 0.85rem;
  vertical-align: middle;
}

/* Provider Icon Hover FX */
.item-prov {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.item-prov:hover {
  transform: translateY(-2px);
}

/* Pulsing Hot Game Glow */
@keyframes hotGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 61, 87, 0.6)); }
  50% { filter: drop-shadow(0 0 10px rgba(255, 61, 87, 0.9)); }
}

.hot-game {
  animation: hotGlow 2s infinite ease-in-out;
}

/* Card Animation */
.animate__bounceIn {
  animation-duration: 0.6s;
}

/* Search Bar (Optional add-on) */
.rtp-search-box {
  position: relative;
  margin-bottom: 12px;
}

.rtp-search-input {
  width: 100%;
  padding: 8px 14px 8px 36px;
  background: #11151e;
  border: 1px solid #252d3d;
  border-radius: 20px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.2s ease;
}

.rtp-search-input:focus {
  border-color: #ff9800;
  box-shadow: 0 0 8px rgba(255,152,0,0.3);
}

.rtp-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #718096;
  font-size: 0.9rem;
}

/* ==========================================================================
   SEO CONTENT ON-PAGE STYLES (TABLES, FAQS, LISTS)
   ========================================================================== */
.content-home ul, .content-home ol {
  padding-left: 1.25rem;
  margin-bottom: 1.2rem;
}

.content-home li {
  margin-bottom: 0.45rem;
  line-height: 1.65;
}

.seo-table {
  width: 100%;
  margin: 1.2rem 0 1.6rem 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.86rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.seo-table th, .seo-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.seo-table th:last-child, .seo-table td:last-child {
  border-right: none;
}

.seo-table tr:last-child td {
  border-bottom: none;
}

.seo-table th {
  background: rgba(255, 152, 0, 0.18);
  color: #ffb703;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.seo-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.seo-table td:first-child {
  width: 32%;
}

.faq-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid #ff9800;
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-box:hover {
  border-left-color: #ffd700;
  transform: translateX(3px);
}

.faq-box h3 {
  color: #ffb703 !important;
  font-size: 0.96rem !important;
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  font-weight: 700 !important;
}

.faq-box p {
  margin-bottom: 0 !important;
  font-size: 0.86rem !important;
  color: inherit;
  line-height: 1.6;
}

