/* =========================================================
   CRYPTODROP — EXCHANGE SEO / ACF BLOCKS
   For shortcodes:
   [cryptodrop_exchange_overview]
   [cryptodrop_exchange_pros_cons]
   [cryptodrop_exchange_faq]
   [cryptodrop_exchange_seo_blocks]
   [cryptodrop_related_airdrops_by_exchange]
   ========================================================= */

/* wrapper spacing */
.cdx-overview,
.cdx-pros-cons,
.cdx-faq,
.cdx-related-airdrops,
.cdx-exchange-seo {
  margin: 0 0 28px;
}

/* =========================================================
   OVERVIEW
   ========================================================= */

.cdx-overview {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.10) 0%, rgba(59,130,246,0) 34%),
    linear-gradient(135deg, #0f172a 0%, #111827 60%, #0b1220 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 40px rgba(2,6,23,.28),
    inset 0 1px 0 rgba(255,255,255,.04);
  color: #e5e7eb;
}

.cdx-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.cdx-hero__main {
  flex: 1 1 auto;
  min-width: 0;
}

.cdx-hero__cta {
  flex: 0 0 auto;
}

.cdx-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.cdx-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #f8fafc;
}

.cdx-rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59,130,246,.14);
  border: 1px solid rgba(96,165,250,.24);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}

.cdx-intro {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.8;
}

.cdx-intro p:last-child {
  margin-bottom: 0;
}

.cdx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(37,99,235,.28);
  transition: all .18s ease;
}

.cdx-btn:hover {
  transform: translateY(-1px);
  color: #fff !important;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  box-shadow: 0 14px 28px rgba(37,99,235,.34);
}

.cdx-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.cdx-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.cdx-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #93c5fd;
}

.cdx-card strong {
  display: block;
  color: #f8fafc;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

/* =========================================================
   PROS / CONS
   ========================================================= */

.cdx-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.cdx-panel {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 14px 30px rgba(2,6,23,.24),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.cdx-panel--pros {
  background:
    radial-gradient(circle at top right, rgba(34,197,94,.10) 0%, rgba(34,197,94,0) 34%),
    linear-gradient(135deg, #0f172a 0%, #111827 100%);
}

.cdx-panel--cons {
  background:
    radial-gradient(circle at top right, rgba(239,68,68,.10) 0%, rgba(239,68,68,0) 34%),
    linear-gradient(135deg, #0f172a 0%, #111827 100%);
}

.cdx-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #f8fafc;
}

.cdx-panel ul {
  margin: 0;
  padding-left: 18px;
}

.cdx-panel li {
  margin-bottom: 10px;
  color: #d1d5db;
  line-height: 1.75;
}

.cdx-panel li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   FAQ
   ========================================================= */

.cdx-faq {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.96) 0%, rgba(17,24,39,.98) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 42px rgba(2,6,23,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.cdx-section-title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -.02em;
}

.cdx-faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cdx-faq-item:first-of-type {
  padding-top: 0;
}

.cdx-faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cdx-faq-item h4 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #f8fafc;
}

.cdx-faq-item p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
}

/* =========================================================
   SEO BLOCKS
   ========================================================= */

.cdx-exchange-seo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.cdx-exchange-seo-card {
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.10) 0%, rgba(59,130,246,0) 34%),
    linear-gradient(135deg, #0f172a 0%, #111827 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 14px 30px rgba(2,6,23,.24),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.cdx-exchange-seo-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #f8fafc;
}

.cdx-exchange-seo-card p,
.cdx-exchange-seo-card li {
  color: #d1d5db;
  line-height: 1.8;
}

.cdx-exchange-seo-card ul {
  margin: 0;
  padding-left: 18px;
}

/* =========================================================
   RELATED AIRDROPS
   ========================================================= */

.cdx-related-airdrops {
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.96) 0%, rgba(17,24,39,.98) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 18px 42px rgba(2,6,23,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.cdx-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.cdx-related-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: #f8fafc;
}

.cdx-related-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.20);
  color: #93c5fd !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
}

.cdx-related-all:hover {
  color: #fff !important;
  background: rgba(59,130,246,.22);
}

.cdx-opportunities-intro {
  margin: 0 0 18px;
  color: #cbd5e1;
  line-height: 1.8;
}

.cdx-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.cdx-related-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.cdx-related-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: #0f172a;
  overflow: hidden;
}

.cdx-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cdx-related-thumb--empty {
  min-height: 180px;
}

.cdx-related-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.86);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.cdx-related-body {
  padding: 16px;
}

.cdx-related-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.cdx-related-title a {
  color: #f8fafc;
  text-decoration: none;
}

.cdx-related-title a:hover {
  color: #93c5fd;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
  .cdx-meta-grid,
  .cdx-exchange-seo,
  .cdx-related-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .cdx-hero {
    flex-direction: column;
  }

  .cdx-hero__cta {
    width: 100%;
  }

  .cdx-btn {
    width: 100%;
  }

  .cdx-pros-cons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cdx-overview,
  .cdx-faq,
  .cdx-related-airdrops,
  .cdx-exchange-seo-card,
  .cdx-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .cdx-title {
    font-size: 26px;
  }

  .cdx-section-title,
  .cdx-related-head h3,
  .cdx-panel h3,
  .cdx-exchange-seo-card h3 {
    font-size: 22px;
  }

  .cdx-meta-grid,
  .cdx-exchange-seo,
  .cdx-related-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   CRYPTODROP FIX — LEFT DETAILS TABLE FINAL OVERRIDES
   ========================================================= */

/* прибиваємо світлі фони від теми/плагіна */
.ex_details table,
.ex_details table tbody,
.ex_details table tr,
.ex_details table th,
.ex_details table td {
  background-image: none !important;
}

/* базові кольори рядків */
.ex_details table tr th,
.ex_details table tr td {
  background: #0f172a !important;
}

.ex_details table tr:nth-child(even) th,
.ex_details table tr:nth-child(even) td {
  background: #111827 !important;
}

.ex_details table tr:hover th,
.ex_details table tr:hover td {
  background: #162033 !important;
}

/* ліва колонка label */
.ex_details table th {
  color: #f8fafc !important;
  font-weight: 700 !important;
}

/* права колонка value */
.ex_details table td {
  color: #e5e7eb !important;
}

/* прибрати білі підкладки у link/button wrappers */
.ex_details table td a,
.ex_details table td .button,
.ex_details table td .btn,
.ex_details table td .visit,
.ex_details table td [class*="visit"] {
  background-image: none !important;
  box-shadow: none !important;
}

/* фінальний вигляд Visit/social buttons */
.ex_details table td a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 32px !important;
  padding: 6px 12px !important;
  border-radius: 10px !important;
  background: rgba(37,99,235,.14) !important;
  border: 1px solid rgba(59,130,246,.30) !important;
  color: #93c5fd !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

.ex_details table td a:hover {
  background: rgba(37,99,235,.24) !important;
  border-color: rgba(96,165,250,.42) !important;
  color: #ffffff !important;
}

/* якщо плагін робить disabled-like style */
.ex_details table td a:visited,
.ex_details table td a:active,
.ex_details table td a:focus {
  color: #93c5fd !important;
  opacity: 1 !important;
}

/* іконки у лівій таблиці */
.ex_details table th i,
.ex_details table td i,
.ex_details .fa,
.ex_details .fas,
.ex_details .fab,
.ex_details table th svg,
.ex_details table td svg {
  opacity: 1 !important;
}

/* вирівнювання контенту в td */
.ex_details table td {
  text-align: right !important;
}

.ex_details table td a {
  margin-left: auto !important;
}

/* мобілка */
@media (max-width: 991px) {
  .ex_details table td {
    text-align: left !important;
  }

  .ex_details table td a {
    margin-left: 0 !important;
  }
}
/* =========================================================
   CRYPTODROP FIX — EXCHANGE SINGLE FINAL TWEAKS
   ========================================================= */

/* ---------------------------------
   1) ЛІВА КОЛОНКА ШИРША
--------------------------------- */
@media (min-width: 992px) {
  .celp-container-advanced-design .ex_details {
    flex: 0 0 390px !important;
    width: 390px !important;
    max-width: 390px !important;
  }
}

/* якщо ще мало — можна потім підняти до 410px */

/* ---------------------------------
   2) ТАБЛИЦЯ В ЛІВІЙ КОЛОНЦІ
--------------------------------- */
.ex_details table {
  table-layout: fixed !important;
  width: 100% !important;
}

.ex_details table th {
  width: 60% !important;
  white-space: nowrap !important;
}

.ex_details table td {
  width: 40% !important;
  text-align: right !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

/* посилання Visit праворуч */
.ex_details table td a {
  margin-left: auto !important;
}

/* мобільна */
@media (max-width: 991px) {
  .ex_details table th {
    width: 46% !important;
    white-space: normal !important;
  }

  .ex_details table td {
    width: 54% !important;
    text-align: left !important;
  }

  .ex_details table td a {
    margin-left: 0 !important;
  }
}

/* ---------------------------------
   3) PROS / CONS — НОРМАЛЬНИЙ ШРИФТ
--------------------------------- */
.cdx-pros-cons,
.cdx-pros-cons *,
.cdx-panel,
.cdx-panel * {
  font-family: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* заголовки */
.cdx-panel h3 {
  font-size: 32px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 18px !important;
}

/* список */
.cdx-panel ul {
  margin: 0 !important;
  padding-left: 22px !important;
}

.cdx-panel li {
  margin-bottom: 12px !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  font-weight: 500 !important;
  color: #dbe4f0 !important;
}

/* ---------------------------------
   4) PROS — ЗЕЛЕНИЙ СТИЛЬ
--------------------------------- */
.cdx-panel--pros {
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.16) 0%, rgba(16,185,129,0) 36%),
    linear-gradient(135deg, #0f172a 0%, #0b1628 60%, #0a1b22 100%) !important;
  border: 1px solid rgba(16,185,129,.20) !important;
  box-shadow:
    0 14px 32px rgba(2,6,23,.24),
    inset 0 1px 0 rgba(255,255,255,.03) !important;
}

.cdx-panel--pros h3 {
  color: #ecfdf5 !important;
}

.cdx-panel--pros li::marker {
  color: #34d399 !important;
}

/* ---------------------------------
   5) CONS — ЧЕРВОНИЙ СТИЛЬ
--------------------------------- */
.cdx-panel--cons {
  background:
    radial-gradient(circle at top right, rgba(239,68,68,.14) 0%, rgba(239,68,68,0) 36%),
    linear-gradient(135deg, #0f172a 0%, #111827 60%, #1a1220 100%) !important;
  border: 1px solid rgba(239,68,68,.18) !important;
  box-shadow:
    0 14px 32px rgba(2,6,23,.24),
    inset 0 1px 0 rgba(255,255,255,.03) !important;
}

.cdx-panel--cons h3 {
  color: #fef2f2 !important;
}

.cdx-panel--cons li::marker {
  color: #f87171 !important;
}

/* ---------------------------------
   6) МЕНШЕ ПОВІТРЯ МІЖ PANELS
--------------------------------- */
.cdx-pros-cons {
  gap: 18px !important;
}

.cdx-panel {
  min-height: 100% !important;
  padding: 24px !important;
  border-radius: 24px !important;
}

/* ---------------------------------
   7) НА МОБІЛЦІ
--------------------------------- */
@media (max-width: 767px) {
  .cdx-panel h3 {
    font-size: 26px !important;
  }

  .cdx-panel li {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
}
/* =========================================================
   CRYPTODROP — SINGLE EXCHANGE PREMIUM POLISH
   ========================================================= */

/* ---------------------------------
   1) ЛІВА HERO-КАРТКА БІРЖІ
--------------------------------- */
.celp-container-advanced-design .ex_details {
  position: relative;
}

.celp-container-advanced-design .ex_details::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, rgba(59,130,246,0) 72%);
  pointer-events: none;
}

.ex_logo_top {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.ex_logo_top img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow:
    0 8px 18px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.ex_logo_top .ex_name {
  font-size: 31px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
}

/* ---------------------------------
   2) START BUTTON — ТРОХИ АКУРАТНІШЕ
--------------------------------- */
.ex_details a.trading-button,
.ex_details a.start-trading,
.ex_details .btn,
.ex_details a.btn,
a.celp-btn {
  min-height: 42px !important;
  padding: 8px 18px !important;
  border-radius: 13px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  box-shadow:
    0 10px 22px rgba(37,99,235,.26),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* ---------------------------------
   3) ЛІВА TABLE — БІЛЬШ ПРЕМІАЛЬНО
--------------------------------- */
.ex_details table {
  border-radius: 20px !important;
  overflow: hidden !important;
}

.ex_details table th,
.ex_details table td {
  padding: 16px 16px !important;
}

.ex_details table th {
  color: #f8fafc !important;
  font-size: 14px !important;
}

.ex_details table td {
  color: #eef2ff !important;
  font-size: 15px !important;
}

.ex_details table tr:hover th,
.ex_details table tr:hover td {
  box-shadow: inset 0 0 0 9999px rgba(255,255,255,.015);
}

/* значення справа трохи чистіше */
.ex_details table td {
  font-weight: 500;
}

/* Visit/social buttons */
.ex_details table td a {
  min-height: 32px !important;
  padding: 6px 12px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

/* ---------------------------------
   4) TABS — ДОРОЖЧИЙ ВИГЛЯД
--------------------------------- */
#celp-tabbed-area .celp-tabsBtn {
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 6px 16px rgba(2,6,23,.16);
}

#celp-tabbed-area .celp-tabsBtn.active,
#celp-tabbed-area .celp-tabsBtn:hover {
  box-shadow:
    0 10px 22px rgba(37,99,235,.26),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* ---------------------------------
   5) MARKET TABLE — PREMIUM POLISH
--------------------------------- */
#celp_currency_pairs_wrapper {
  border-radius: 26px !important;
}

#celp_currency_pairs {
  border-radius: 18px !important;
  overflow: hidden !important;
}

#celp_currency_pairs thead th {
  font-size: 14px !important;
  font-weight: 800 !important;
  padding: 13px 10px !important;
  background: linear-gradient(180deg, #1e3a8a 0%, #172554 100%) !important;
}

#celp_currency_pairs tbody td,
#celp_currency_pairs tbody td[style] {
  font-size: 14px !important;
  padding: 12px 10px !important;
}

/* м’якший hover */
#celp_currency_pairs tbody tr:hover td,
#celp_currency_pairs tbody tr:hover td[style] {
  background: #4a5a72 !important;
}

/* легкий акцент на назвах */
#celp_currency_pairs tbody td:nth-child(2),
#celp_currency_pairs tbody td:nth-child(2)[style] {
  font-weight: 700 !important;
}

/* updated links / time */
#celp_currency_pairs .celp-updated {
  color: #60a5fa !important;
  font-weight: 500;
}

/* pagination красивіша */
#celp_currency_pairs_wrapper .paginate_button {
  border-radius: 13px;
  font-weight: 700;
}

#celp_currency_pairs_wrapper .paginate_button.current,
#celp_currency_pairs_wrapper .paginate_button:hover {
  background: linear-gradient(135deg,#2563eb,#3b82f6) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 18px rgba(37,99,235,.26);
}

/* ---------------------------------
   6) BREADCRUMB / TITLE BAR — ТЕМНИЙ СТИЛЬ
   Селектори можуть відрізнятись у темі
--------------------------------- */
.page-header,
.entry-header,
.breadcrumbs,
.breadcrumb,
.rank-math-breadcrumb,
.yoast-breadcrumb,
.site-breadcrumbs,
.page-title-wrap {
  background: linear-gradient(180deg, #0b1220 0%, #111827 100%) !important;
  color: #e5e7eb !important;
  border-color: rgba(255,255,255,.08) !important;
}

.page-header h1,
.entry-header h1,
.page-title,
.breadcrumbs,
.breadcrumb,
.rank-math-breadcrumb,
.yoast-breadcrumb,
.site-breadcrumbs,
.page-title-wrap,
.page-title-wrap a,
.rank-math-breadcrumb a,
.yoast-breadcrumb a {
  color: #cbd5e1 !important;
}

.page-header h1,
.entry-header h1,
.page-title {
  color: #f8fafc !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
}

/* ---------------------------------
   7) RESPONSIVE
--------------------------------- */
@media (max-width: 991px) {
  .ex_logo_top .ex_name {
    font-size: 28px !important;
  }

  #celp_currency_pairs thead th {
    font-size: 13px !important;
  }

  #celp_currency_pairs tbody td,
  #celp_currency_pairs tbody td[style] {
    font-size: 13px !important;
  }
}
/* =====================================================
   CRYPTODROP — EXCHANGE PLUGIN STYLING
   ===================================================== */

#celp-tabbed-area {
  color: #cbd5f5;
  line-height: 1.6;
}

/* Заголовки */
#celp-tabbed-area h1,
#celp-tabbed-area h2,
#celp-tabbed-area h3,
#celp-tabbed-area h4 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Основний H1 */
#celp-tabbed-area h1 {
  font-size: 34px;
  margin-bottom: 18px;
}

/* H2 */
#celp-tabbed-area h2 {
  font-size: 26px;
  margin-top: 28px;
  margin-bottom: 14px;
}

/* H3 */
#celp-tabbed-area h3 {
  font-size: 20px;
  margin-top: 22px;
}

/* Параграфи */
#celp-tabbed-area p {
  color: #a9b3d1;
  font-size: 16px;
  margin-bottom: 14px;
}

/* Блоки тексту */
#celp-tabbed-area .content,
#celp-tabbed-area .celp-content {
  background: linear-gradient(180deg,#0b1225,#0a0f1f);
  border: 1px solid rgba(70,90,140,0.25);
  padding: 24px;
  border-radius: 14px;
  margin-bottom: 24px;
}

/* Список */
#celp-tabbed-area ul {
  padding-left: 18px;
}

#celp-tabbed-area li {
  margin-bottom: 8px;
  color: #b6c1e6;
}

/* Лінки */
#celp-tabbed-area a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

#celp-tabbed-area a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* Таб блоки (якщо є вкладки) */
#celp-tabbed-area .celp-tab {
  background: linear-gradient(180deg,#0c1530,#0a1127);
  border: 1px solid rgba(80,100,160,0.25);
  padding: 16px 22px;
  border-radius: 10px;
  color: #dbe4ff;
}

/* Активна вкладка */
#celp-tabbed-area .celp-tab.active {
  background: linear-gradient(180deg,#1d4ed8,#1e40af);
  color: #fff;
}

/* Hover вкладок */
#celp-tabbed-area .celp-tab:hover {
  background: rgba(59,130,246,0.15);
}

/* Кнопки */
#celp-tabbed-area .button,
#celp-tabbed-area .btn {
  background: linear-gradient(180deg,#2563eb,#1e40af);
  border-radius: 10px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 600;
  border: none;
}

#celp-tabbed-area .button:hover,
#celp-tabbed-area .btn:hover {
  background: linear-gradient(180deg,#3b82f6,#2563eb);
}
/* Related Exchanges */

.cryptodrop-related-exchanges{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:16px;

margin-top:20px;

}

.cryptodrop-exchange{

display:flex;

align-items:center;

justify-content:center;

background:#020617;

border:1px solid #1e293b;

border-radius:10px;

padding:18px;

transition:.2s;

}

.cryptodrop-exchange:hover{

border-color:#3b82f6;

background:#0b1225;

transform:translateY(-2px);

}

.cryptodrop-exchange img{

width:180px;

height:50px;

object-fit:contain;

}

/* Mobile */

@media (max-width:768px){

.cryptodrop-related-exchanges{

grid-template-columns:repeat(2,1fr);

}

}