/*--------------------------------------------------------------
# Liquidity Pool
--------------------------------------------------------------*/

.story {
  background: #060d1f;
  padding: 110px 0;
}

html[data-theme="light"] .story {
  background:
    radial-gradient(circle at top, rgba(6, 182, 212, 0.08), transparent 45%),
    linear-gradient(180deg, #f7f8fc 0%, #edf2ff 100%);
}

html[data-theme="dark"] .story {
  background: #060d1f;
}

.lp-title {
  text-align: center;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

html[data-theme="light"] .lp-title {
  color: var(--text);
}

html[data-theme="dark"] .lp-title {
  color: #fff;
}

.lp-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .lp-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(11, 18, 32, 0.08);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .lp-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* LEFT SIDE */

.lp-logo {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 55px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  /*background: rgb(255, 255, 255);*/
}

.lp-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: 0.4s;
  filter: drop-shadow(0 0 20px rgba(78, 124, 255, 0.45));
}

.lp-logo img:hover {
  transform: scale(1.06);
}

/* RIGHT SIDE */

.lp-content {
  width: 75%;
  padding: 55px 60px;
}

.lp-content h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

html[data-theme="light"] .lp-content h3,
html[data-theme="light"] .lp-content strong {
  color: var(--text);
}

html[data-theme="dark"] .lp-content h3,
html[data-theme="dark"] .lp-content strong {
  color: #fff;
}

.lp-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 35px;
}

html[data-theme="light"] .lp-content p {
  color: var(--muted);
}

html[data-theme="dark"] .lp-content p {
  color: rgba(255, 255, 255, 0.82);
}

.lp-content strong {
  color: #fff;
}

.lp-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.lp-btn:hover {
  color: var(--brand);
  border-color: var(--brand);
}

/* Responsive */

@media (max-width: 991px) {
  .lp-card {
    flex-direction: column;
    text-align: center;
  }

  .lp-logo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  html[data-theme="light"] .lp-logo {
    border-bottom-color: rgba(11, 18, 32, 0.08);
  }

  html[data-theme="dark"] .lp-logo {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .lp-content {
    width: 100%;
    padding: 45px 35px;
  }

  .lp-title {
    font-size: 34px;
  }

  .lp-content h3 {
    font-size: 26px;
  }
}