:root {
  --golden: #facc15;
  --golden-600: #d97706;
  --text-dark: #000000;
  --text-light: #4b5563;
  --background-light: #f3f4f6;
  --white: #ffffff;
  --color-black: #0d0d0d;
  --color-dark-gray: #1a1a1a;
  --color-light-gray: #f0f0f0;
  --color-primary-orange: #ff914d;
  --color-text: #ffffff;
  --color-card-bg: #222222;
  --dark-bg: #0a0a0a;
  --accent-orange: #f45b0d;
  --logo-color: #4b4b4b;
  --link-color: #cccccc;
  --heading-color: #9ca3af;
  --border-color: #1f2937;
}
@font-face {
  font-family: "Aventa";
  src: url("assets/fonts/Aventa-Regular.ttf") format("truetype");
  src: url("assets/fonts/Aventa-Bold.ttf") format("truetype");
  src: url("assets/fonts/Aventa-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  max-width: 100%;
  background-color: #000;
  overflow-x: hidden !important;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Aventa";
  background: radial-gradient(circle at bottom, #3b2a1e, #020617);

  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;

  color: #fff;
  overflow-x: hidden;
  cursor: default;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.default-image {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.default-image.hidden {
  opacity: 0;
}
section[id] {
  scroll-margin-top: 120px;
}
/* ================================================= */
/* ## NAVIGATION BAR STYLES starts*/
/* ================================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(
    135deg,
    rgba(23, 14, 10, 0.9) 0%,
    rgba(77, 50, 26, 0.9) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);

  border-bottom: 1px solid rgba(250, 204, 21, 0.5);
  transition: all 0.3s ease;
  pointer-events: auto;
}

/* Logo Styling */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  z-index: 1001;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.nav-logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  color: #facc15;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.7);
}

.logo-text {
  background: linear-gradient(90deg, #facc15, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo:hover .logo-text {
  text-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover {
  color: #facc15;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #facc15, #d97706);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-icon {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Toggle Button (Hamburger) */
.toggle-button {
  display: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 6px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
}

.toggle-button:hover {
  color: #facc15;
  background: rgba(250, 204, 21, 0.2);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}
/* ================================================= */
/* ## NAVIGATION BAR MOBILE STYLES (Fix) */
/* ================================================= */
@media (max-width: 900px) {
  .toggle-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--color-dark-gray, #1a1a1a);
    flex-direction: column;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.active {
    max-height: 800px;
    padding: 10px 5% 20px 5%;
    overflow-y: auto;
  }
}

/* ================================================= */
/* ## NAVIGATION BAR Ends */
/* ================================================= */

/* ------------------------------------------------------ */
/* HERO SECTION – FINAL FIXED VERSION                     */
/* ------------------------------------------------------ */

.hero-header {
  max-width: 1280px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  margin-top: 90px;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .hero-header {
    margin-top: 105px;
    padding: 3rem 1.25rem;
  }
}

/* ------------------------------------------------------ */
/* GRID LAYOUT                                            */
/* ------------------------------------------------------ */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* ------------------------------------------------------ */
/* TEXT AREA                                               */
/* ------------------------------------------------------ */
.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  text-align: left;
}

/* Headline */
.headline {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

/* Tablets */
@media (min-width: 640px) {
  .headline {
    font-size: 2.5rem;
    text-align: left;
    margin: 0 auto;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .headline {
    font-size: 3rem;
  }
}

/* Highlight text */
.highlight {
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Mobile highlight fix */
@media (max-width: 480px) {
  .highlight {
    font-size: 2.6rem;
    line-height: 1.1;
    word-break: break-word;
  }
}

@keyframes textGlowPulse {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(250, 204, 21, 0.35),
      0 0 12px rgba(217, 119, 6, 0.28), 0 0 22px rgba(217, 119, 6, 0.18);
  }
  50% {
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.55),
      0 0 18px rgba(217, 119, 6, 0.4), 0 0 36px rgba(217, 119, 6, 0.25);
  }
}

/* ------------------------------------------------------ */
/* DESCRIPTION                                             */
/* ------------------------------------------------------ */
.description {
  font-size: 1.125rem;
  color: var(--gray-light);
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .description {
    font-size: 1.25rem;
    text-align: left;
  }
}

/* ------------------------------------------------------ */
/* CTA BUTTONS                                             */
/* ------------------------------------------------------ */
.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

/* Button */
.btn {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 300ms ease;
  width: 100%;
  display: inline-block;
  text-decoration: none;
  color: #000;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

/* Primary */
.btn-primary {
  background: linear-gradient(to right, var(--golden), var(--golden-600));

  box-shadow: 0 10px 15px -3px rgba(249, 211, 22, 0.35),
    0 4px 6px -2px rgba(249, 116, 22, 0.45), 0 0 22px rgba(250, 204, 21, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(to left, var(--golden), var(--golden-600));
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.6);
}

/* Secondary */
.btn-secondary {
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  border: 1px solid var(--golden-600);
  box-shadow: 0 10px 15px -3px rgba(249, 211, 22, 0.35),
    0 4px 6px -2px rgba(249, 116, 22, 0.45), 0 0 22px rgba(250, 204, 21, 0.35);
}

.btn-secondary:hover {
  background: linear-gradient(to left, var(--golden), var(--golden-600));
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.6);
}

/* ------------------------------------------------------ */
/* IMAGE / GRAPHIC                                         */
/* ------------------------------------------------------ */

.graphic-container {
  display: flex;
  justify-content: center;
  order: -1;
}

.graphic-container img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .graphic-container img {
    height: 360px;
  }
}

@media (max-width: 380px) {
  .graphic-container img {
    height: 320px;
  }
}

/* Desktop layout */
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .text-content {
    text-align: left;
  }

  .hero-cta-buttons {
    justify-content: flex-start;
  }

  .graphic-container {
    order: 0;
  }

  .graphic-container img {
    height: 500px;
  }
}

/* ================================================= */
/* ## Hero Section Styling Ends */
/* ================================================= */

/* ================================================= */
/* ## About Section Styling starts */
/* ================================================= */
.about-color-primary {
  color: #facc15;
}
.about-color-secondary {
  color: #d97706;
}
.about-text-gray-900 {
  color: #fdfeff;
}
.about-text-gray-600 {
  color: #ffffff;
}
.about-text-gray-500 {
  color: #fefefe;
}

/* ==================================== */
/* --- ABOUT US SECTION STYLES --- */
/* ==================================== */
.about-section {
  min-height: 90vh;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.about-container {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  max-width: 80rem;
  width: 100%;
  padding: 2.5rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-container {
    padding: 3rem;
    margin: 0 auto;
  }
}

.about-content-wrapper {
  display: block;
}

@media (min-width: 1024px) {
  .about-content-wrapper {
    display: flex;
    gap: 3rem;
  }
}

.about-text-content {
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .about-text-content {
    width: 50%;
    margin-bottom: 0;
  }
}

.about-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-main-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .about-main-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .about-main-title {
    font-size: 3rem;
  }
}

.about-description {
  margin-bottom: 2rem;
  max-width: 28rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 2rem;
  margin-top: 1.5rem;
}

.about-stat-value {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(to left, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .about-stat-value {
    font-size: 2.25rem;
  }
}

.about-stat-description {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.about-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-image-container {
    width: 50%;
  }
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* ================================================= */
/* ## About Section Styling Ends */
/* ================================================= */

/* ==================================== */
/* --- tsdt SECTION STYLES starts --- */
/* ==================================== */
/* Section Container */
.tsdt-liquidity-section {
  width: 100%;
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

/* Main Heading */
.tsdt-liquidity-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .tsdt-liquidity-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .tsdt-liquidity-heading {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}

/* Logos Container */
.tsdt-liquidity-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .tsdt-liquidity-logos {
    gap: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .tsdt-liquidity-logos {
    gap: 15px;
    margin-bottom: 30px;
  }
}

/* Single Logo Item */
.tsdt-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s ease-in-out;
  min-width: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .tsdt-logo-item {
    font-size: 0.8rem;
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .tsdt-logo-item {
    font-size: 0.7rem;
    min-width: 60px;
  }
}

.tsdt-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2c2c2c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.tsdt-logo-circle:hover {
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2),
    0 0 15px rgba(250, 204, 21, 0.1);
  border-color: #d97706;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .tsdt-logo-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .tsdt-logo-circle {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
  }
}

.tsdt-logo-img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* TVL Container */
.tsdt-tvl-container {
  border: 2px solid #d97706;
  border-radius: 15px;
  padding: 30px 20px;
  margin: 0 auto 60px auto;
  max-width: 700px;
  position: relative;
  background-color: #0f0f0f;
}
.tsdt-tvl-container:hover {
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2),
    0 0 15px rgba(250, 204, 21, 0.1);
  border-color: #d97706;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .tsdt-tvl-container {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .tsdt-tvl-container {
    padding: 20px 10px;
    margin-bottom: 30px;
  }
}

.tsdt-tvl-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d97706;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tsdt-tvl-label:hover {
  background-color: #facc15;
  transition: all 0.3s ease;
  color: #000;
}

.tsdt-tvl-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: #facc15;
  margin: 10px 0 0 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tsdt-tvl-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .tsdt-tvl-value {
    font-size: 1.8rem;
  }
}

/* Stats Grid */
.tsdt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .tsdt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

@media (max-width: 480px) {
  .tsdt-stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Single Stat Item */
.tsdt-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tsdt-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to left, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .tsdt-stat-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tsdt-stat-value {
    font-size: 1.3rem;
  }
}

.tsdt-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

@media (max-width: 768px) {
  .tsdt-stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .tsdt-stat-label {
    font-size: 0.75rem;
  }
}

.tsdt-liquidity-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.5rem;
  margin-bottom: 50px;
}

.tsdt-address-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.token-address-container {
  background: rgba(20, 20, 20, 0.7);
  border: 1.5px solid rgba(255, 165, 0, 0.3);
  border-radius: 14px;
  padding: 20px;
  width: 90%;
  max-width: 700px;
  transition: 0.3s ease;
}
.token-address-container:hover {
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2),
    0 0 15px rgba(250, 204, 21, 0.1);
  border-color: #facc15;
  transition: all 0.3s ease;
}

.token-label {
  color: #facc15;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-align: center;
}

.address-inner {
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.address-text {
  font-family: "Courier New", monospace;
  font-size: 16px;
  color: #ffffff;
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  background: linear-gradient(135deg, #facc15 0%, #d97706 100%);
  border: none;
  border-radius: 6px;
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 15px -3px rgba(249, 211, 22, 0.35),
    0 4px 6px -2px rgba(249, 116, 22, 0.45), 0 0 22px rgba(250, 204, 21, 0.35);
}
.copy-btn:hover {
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4);
  transition: all 0.3s ease;
}

.popup-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #facc15 0%, #d97706 100%);
  color: #000;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .tsdt-liquidity-heading {
    font-size: 2.8rem;
  }
  .token-address-container {
    max-width: 600px;
    padding: 15px;
  }
  .address-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tsdt-liquidity-heading {
    font-size: 1.8rem;
  }
  .token-address-container {
    max-width: 100%;
    padding: 12px;
  }
  .address-inner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .address-text {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .copy-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ==================================== */
/* --- tsdt SECTION STYLES Ends --- */
/* ==================================== */

/* ==================================== */
/* --- Power SECTION STYLES starts --- */
/* ==================================== */

/* power section */
.power-opportunity-section {
  max-width: 1200px;
  padding: 80px 20px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

/* Main Title */
.power-opportunity-section h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 80px;
  text-align: center;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Main Grid Layout */
.power-content-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
}

/* Data Points - Now in a row */
.power-data-points {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 40px;
  flex: 1;
}

/* Individual Data Point Row */
.power-data-point-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}

/* Each Data Point */
.power-data-point {
  flex: 1;
}

.power-data-point h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.power-data-point.power-percent h2 {
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.power-data-point.power-value h2 {
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.power-data-point p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.power-data-point p strong {
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  font-weight: 600;
}

/* Button Container */
.power-button-container {
  margin-top: 30px;
}

.power-learn-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  border: 1px solid #444;
}

.power-learn-button:hover {
  background-color: #444;
}

/* Right Section - Reduced Width */
.power-placeholder-box-wrapper {
  flex: 1;
  min-width: 300px;
}

/* Placeholder Style */
.power-placeholder-box {
  width: 100%;
  min-height: 250px;

  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}
.power-placeholder-box img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Responsive Design */

@media (max-width: 900px) {
  .power-opportunity-section h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .power-data-point-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .power-content-grid {
    flex-direction: column;
    gap: 50px;
  }

  .power-data-point {
    max-width: 100%;
  }
  .power-placeholder-box-wrapper {
    min-width: 100%;
  }

  .power-button-container {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .power-opportunity-section h1 {
    font-size: 1.8rem;
  }
  .power-data-point h2 {
    font-size: 2.5rem;
  }
  .power-data-point p {
    font-size: 0.9rem;
  }

  .power-placeholder-box-wrapper {
    min-width: 100%;
  }
  .power-content-grid {
    text-align: center;
  }
}

/* ==================================== */
/* --- Power SECTION STYLES starts --- */
/* ==================================== */

/* ==================================== */
/* --- Spot SECTION STYLES starts --- */
/* ==================================== */

/* spotlight section */
.spot-main-section {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto;
  padding: 1rem;
}

.spot-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.spot-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spot-header h1 strong {
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spot-subheading {
  font-size: 1.25rem;
  color: #a0a0a0;
  margin-top: 0;
  margin-bottom: 20px;
}

.spot-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

.spot-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  z-index: 1;
}

.spot-highlighted-card {
  border-color: #facc15;
}

.spot-card-icon {
  font-size: 2.5rem;
  color: #facc15;
  margin-bottom: 15px;
}

.spot-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.spot-card p {
  color: #a0a0a0;
  flex-grow: 1;
  margin-bottom: 0;
}

.spot-card::before {
  content: "";
  position: absolute;
  top: var(--mouse-y, 0);
  left: var(--mouse-x, 0);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle 180px at center,
    rgba(255, 153, 0, 0.57) 0%,
    transparent 90%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.spot-card:hover {
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.2),
    0 0 15px rgba(250, 204, 21, 0.1);
  border-color: #facc15;
  transition: all 0.3s ease;
}

.spot-card:hover::before {
  opacity: 1;
}

@media (max-width: 1024px) {
  .spot-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .spot-header h1 {
    font-size: 1.8rem;
  }

  .spot-subheading {
    font-size: 1rem;
  }

  .spot-cards-container {
    grid-template-columns: 1fr;
  }

  .spot-card {
    min-height: auto;
  }

  .spot-card::before {
    opacity: 0;
  }

  .spot-card:active {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-color: #d97706;
  }
}

/* ==================================== */
/* --- Spot SECTION STYLES Ends --- */
/* ==================================== */

/* ==================================== */
/* --- Why SECTION STYLES Starts --- */
/* ==================================== */

/* why section */
.why-hybrid-chain-section {
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
}

/* Main Heading */
.why-hybrid-chain-section h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-hybrid-chain-section h1 strong {
  color: #fff;
}

/* Content Layout (Graphic + Features) */
.why-content-container {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  text-align: left;
}

/* Left Side: Image Placeholder */
.why-visual-fuse {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  padding-top: 30px;
}

.why-dummy-image {
  width: 500px;
  height: 300px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

/* Right Side: Features List */
.why-features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.why-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon-box {
  width: 40px;
  height: 40px;
  border: 2px solid #555;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-visual-fuse img {
  max-width: 100%;
  height: auto;
  display: block;
}

.why-dummy-image {
  width: 100%;
  overflow: hidden;
}

.why-icon-box.why-icon-orange {
  color: #ff9900;
  border-color: #ff9900;
}

.why-icon-box.why-icon-arrow {
  font-size: 1.2rem;
  transform: rotate(90deg);
}

.why-text-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.why-text-content p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
}

.why-text-content p strong {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 900px) {
  .why-content-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-visual-fuse {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .why-dummy-image {
    margin: 0 auto 40px auto;
  }

  .why-hybrid-chain-section h1 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .why-dummy-image img {
    width: 250px;
  }
}

/* ==================================== */
/* --- Why SECTION STYLES Ends --- */
/* ==================================== */

/* ==================================== */
/* --- Video SECTION STYLES Starts --- */
/* ==================================== */

.video-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
  color: #ffffff;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.video-hero {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);

  width: 80%;
  height: 80%;

  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.video-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
}

.video-main-heading {
  font-size: 4em;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.video-btn {
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.video-btn-white {
  background-color: #ffffff;
  color: #000000;
}
.video-btn-white:hover {
  background-color: #e0e0e0;
}

.video-btn-dark {
  background-color: rgba(30, 30, 100, 0.7);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.video-btn-dark:hover {
  background-color: #1e1e64;
}

.video-icon-placeholder {
  max-width: 250px;
  margin: 0 auto;
  height: 150px;
}

@media (max-width: 992px) {
  .video-main-heading {
    font-size: 3em;
  }
}

@media (max-width: 600px) {
  .video-section {
    min-height: 100vh;
    padding-top: 5vh;
  }
  .video-hero {
    top: 50px;
  }

  .video-main-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  .video-cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  .video-btn {
    padding: 12px 25px;
    width: 50vw;
    max-width: 200px;
    margin: 0 auto;
  }
  .video-icon-placeholder {
    max-width: 150px;
    height: 100px;
  }
}
/* ==================================== */
/* --- Video SECTION STYLES Ends --- */
/* ==================================== */

/* ==================================== */
/* --- Cta SECTION STYLES Starts --- */
/* ==================================== */
#section-cta {
  background-color: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

#section-cta .cta-container {
  max-width: 800px;
  margin: 0 auto;
}

#section-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #facc15, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#section-cta p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 40px;
}

#section-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #facc15, #d97706);
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(249, 211, 22, 0.35),
    0 4px 6px -2px rgba(249, 116, 22, 0.45), 0 0 22px rgba(250, 204, 21, 0.35);
}

#section-cta .cta-btn:hover {
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.6);
}

@media (max-width: 600px) {
  #section-cta h2 {
    font-size: 2rem;
  }
  #section-cta p {
    font-size: 1rem;
  }
  #section-cta .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ==================================== */
/* --- Cta SECTION STYLES Ends --- */
/* ==================================== */

/* ==================================== */
/* --- Footer SECTION STYLES Starts --- */
/* ==================================== */
.footer-main {
  color: var(--white);
  /* padding-top: 4rem; */
  background: radial-gradient(circle at bottom, #3b2a1e, #020617);
}

.footer-bg-pattern {
  background-color: var(--dark-bg);
  /* background-image: linear-gradient(to right, #1d1d1d 1px, transparent 1px),
    linear-gradient(to bottom, #1d1d1d 1px, transparent 1px); */
  background: radial-gradient(circle at center, #3b2a1e, #020617);
  /* background-size: 50px 50px; */
  box-shadow: inset 0 0 100px rgba(255, 69, 0, 0.08);
}

.footer-container {
  max-width: 1600px;
  margin-left: auto;
  position: relative;
  /* background: radial-gradient(circle at bottom, #3b2a1e, #020617); */
  overflow: hidden;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

#energy-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* PARTICLE */
.energy-particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8c2, #facc15);
  box-shadow: 0 0 6px rgba(250, 204, 21, 0.9), 0 0 14px rgba(250, 204, 21, 0.6),
    0 0 28px rgba(250, 204, 21, 0.3);
  opacity: 0;
  animation: rise linear forwards;
}

/* SMOOTH CINEMATIC RISE */
@keyframes rise {
  0% {
    transform: translateY(0) scale(0.4);
    opacity: 0;
  }
  15% {
    opacity: 1;
    transform: translateY(-40px) scale(1);
  }
  75% {
    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translateY(-460px) scale(0.5);
    opacity: 0;
  }
}
.footer-content-area-1 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main {
    padding-top: 6rem;
  }
  .footer-content-area-1 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .footer-cta-column {
    grid-column: span 2 / span 2;
  }
  .footer-nav-columns-group {
    grid-column: span 2 / span 2;
  }
}
@media (min-width: 1024px) {
  .footer-content-area-1 {
    grid-template-columns: repeat(12, 1fr);
  }
  .footer-cta-column {
    grid-column: span 4 / span 5;
  }
  .footer-nav-columns-group {
    grid-column: span 7 / span 7;
  }
}
@media (min-width: 1280px) {
  .footer-cta-column {
    grid-column: span 5 / span 6;
  }
  .footer-nav-columns-group {
    grid-column: span 6 / span 6;
  }
}

.footer-cta-heading {
  font-size: 1.875rem;
  font-weight: 700;
  max-width: 32rem;
  line-height: 1.375;
  background: linear-gradient(to right, var(--golden), var(--golden-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 640px) {
  .footer-cta-heading {
    font-size: 2.25rem;
  }
}

.footer-input-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
}
@media (min-width: 640px) {
  .footer-input-group {
    flex-direction: row;
    gap: 0;
  }
}

.footer-email-input {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: border-color 0.2s;
  flex-grow: 1;
  width: 100%;
}
.footer-email-input:focus {
  outline: none;
  border-color: var(--accent-orange);
}
@media (min-width: 640px) {
  .footer-email-input {
    width: auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.footer-subscribe-btn {
  background-color: var(--accent-orange);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.footer-subscribe-btn:hover {
  background-color: #c0480b;
}
@media (min-width: 640px) {
  .footer-subscribe-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.footer-nav-columns-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}

.footer-nav-heading {
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-nav-link {
  color: #d1d1d1;
  transition: color 0.2s;
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-nav-link:hover {
  color: var(--accent-orange);
}

.footer-logo-area {
  position: relative;
  padding-top: 3rem;
  /* padding-bottom: 3rem; */
  overflow: hidden;
}
.footer-logo-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    to top,
    #0a0a0a 20%,
    rgba(10, 10, 10, 0.789) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer-logo-area {
    padding-top: 4rem;
    /* padding-bottom: 4rem; */
  }
}

.footer-openledger-logo {
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 900;
  background: linear-gradient(to bottom, #facc155c, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 0;
  animation: float 3s linear infinite;
  background-size: 200% auto;
}
@keyframes float {
  0%,
  100% {
    text-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
  }
  50% {
    text-shadow: 0 20px 30px rgba(250, 204, 21, 0.1);
  }
}

.footer-copyright-bar {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
}

.footer-copyright-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--heading-color);
  row-gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-copyright-content {
    flex-direction: row;
    row-gap: 0;
  }
  .footer-copyright-text {
    text-align: left;
  }
}

.footer-copyright-text {
  text-align: center;
}

.footer-copyright-links {
  display: flex;
  column-gap: 1rem;
}

.footer-copyright-links a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copyright-links a:hover {
  color: var(--accent-orange);
}

/* ==================================== */
/* --- Footer SECTION STYLES Ends --- */
/* ==================================== */

/* ==================================== */
/* --- Moving gif SECTION STYLES starts --- */
/* ==================================== */
/* GIF */
.moving-gif {
  position: fixed;
  bottom: 8vh;
  left: 0;
  width: clamp(70px, 15vw, 110px);
  height: clamp(70px, 15vw, 110px);
  border-radius: 50%;
  opacity: 1;
  transition: 0.4s ease;
  z-index: 1001;
  pointer-events: none;
  transform: translateX(0);
}

.moving-gif-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Coin IMG */
.coin {
  position: fixed;
  width: min(30px, 20vw);
  height: min(30px, 20vw);
  background-image: url("assets/images/Copy_of_We_promised_we_delivered_1080_x_1080_px_20251202_143538.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1002;
}

/* ==================================== */
/* --- Moving gif SECTION STYLES ends --- */
/* ==================================== */
#movingGif {
  position: fixed !important;
  z-index: 99999999 !important;
  isolation: isolate !important;
}

/* ==================================== */
/* --- Earn SECTION STYLES starts --- */
/* ==================================== */

/* Wrapper for the light section to integrate into the dark page */
#section-earn {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.earn-section {
  max-width: 1400px;
  width: 100%;
  display: flex;

  gap: 40px;
  padding: 40px;

  border-radius: 20px;
}

.earn-section .image-left {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding-top: 2rem;
}

.default-image,
.main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.default-image.hidden {
  opacity: 0;
}

.earn-section .content-right {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.earn-section .content-right h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(
    135deg,
    #d97706,
    #facc15
  ); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 0;
}

.earn-section .content-right p {
  font-size: 1.4rem;
  color: #f3f4f6;
  margin-bottom: 25px;
}

/* ========================= SCROLLER ======================== */
.scroller-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.scroller-container {
  height: 400px;
  padding: 2rem;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroller {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 16s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroller:hover {
  animation-play-state: paused;
}

/* ========================= CARDS =========================== */
.card {
  min-width: 250px;
  flex: 0 0 250px;
  padding: 18px;
  background: rgba(255, 165, 0, 0.05);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: auto;
}

.card:hover,
.card.active {
  transform: translateY(-4px);
  border-color: var(--golden-600);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.card-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.1rem;
}
.ledger-logo {
  background: linear-gradient(135deg, #a0522d, #d97706);
}
.bitpanda-logo {
  background: linear-gradient(135deg, #facc15, #f59e0b);
}
.lemon-logo {
  background: linear-gradient(135deg, #d97706, #facc15);
}

/* ========================= CLEAN TEXT ====================== */
.card-content h3 {
  margin-bottom: 4px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--golden-600);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: initial;
}

.card-content p {
  font-size: 0.7rem;
  color: #000000;
  line-height: 1.25;
  white-space: normal;
}

/* ========================= BUTTON ============================ */
.read-more {
  margin-top: 25px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #d97706, #facc15);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: fit-content;
  white-space: nowrap;
  align-self: flex-start;
}

/* ========================= FADES ============================= */
/*.overlay-left,
.overlay-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 70px;
  pointer-events: none;
  z-index: 5;
}

.overlay-left {
  left: 0;
  background: linear-gradient(to right, #a27652, transparent);
}

.overlay-right {
  right: 0;
  background: linear-gradient(to left, #a27652, transparent);
}*/

/* Tablet */
@media (max-width: 900px) {
  .earn-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 25px;
  }

  .read-more {
    align-self: center;
  }

  .earn-section .content-right h1 {
    text-align: center;
  }
}

/* Mobile */

@media (max-width: 480px) {
  .main-image,
  .default-image {
    height: 250px;
  }
  .earn-section .content-right p {
    font-size: 1.1rem;
    color: #f3f4f6;
  }
  .card {
    min-width: 200px;
    flex: 0 0 180px;
    padding: 15px;
  }

  .scroller-container {
    height: 280px;
    padding: 1.5rem;
  }

  .scroller {
    white-space: nowrap;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .card-content p {
    font-size: 0.65rem;
  }

  .read-more {
    width: auto !important;
    align-self: center !important;
  }

  .overlay-left,
  .overlay-right {
    width: 30px;
  }
}
/* ==================================== */
/* --- Earn SECTION STYLES starts --- */
/* ==================================== */

/* ----------------------------------- */
/* MOBILE PERFORMANCE + GPU OPTIMIZE   */
/* ----------------------------------- */

.glow-bg {
  position: relative;
  isolation: isolate;
}

.glow-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(245, 198, 11, 0.18),
    transparent 65%
  );
  filter: blur(80px);
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}
