@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url("colors.css");

:root {
  --bg: var(--bg-primary-light);
  --text: #333;
  --card: #fff;
  --nav-bg: var(--bg-primary-dark);
  --nav-link: #0ff;
  --coming: #666;
}

body.dark {
  --bg: var(--bg-primary-dark);
  --text: #eee;
  --card: #1e1e1e;
  --nav-bg: var(--bg-primary-dark);
  --nav-link: #0ff;
  --coming: #888;
}

/* Dark theme (default) */
body.dark .header {
  background-color: var(--bg-primary-dark); /* Or your dark background token */
}
body.dark .footer {
  background-color: #1a1a1a;
}

/* Light theme */
body:not(.dark) .header {
  background-color: var(--bg-primary-light); /* Add this variable for light mode */
}

/* Light Theme - Adjustments */
body:not(.dark) .left-icons img[alt="Text Logo"] {
  filter: brightness(0); /* Makes dark logo visible on light background */
}

body:not(.dark) .footer-text-logo {
  filter: brightness(0); /* Makes dark logo visible on light background */
}

/* Tabs in Light Theme */
body:not(.dark) .header-tabs .tab {
  color: var(--bg-primary-dark);
}

body:not(.dark) .header-tabs .tab:hover {
  color: var(--tab-color);
}

body:not(.dark) .header-tabs .tab.active::after {
  background-color: var(--bg-primary-dark);
}

body:not(.dark) .page-title {
  color: var(--bg-primary-dark);
}

body:not(.dark) .page-sub-title {
  color: var(--bg-tertiary-dark);
}

/* Theme Toggle Button Background in Light Theme */
body:not(.dark) .theme-toggle-btn {
  background-color: var(--bg-primary-light);
  border-radius: 40%;
  border: 1px solid var(--border-primary-light);
}

body:not(.dark) .btn-outline {
  background-color: var(--border-secondary-light);
  color: var(--bg-tertiary-dark);
}

body:not(.dark) .stat-card {
  border-top: 0.5px solid var(--border-secondary-light);
  border-bottom: 0.5px solid var(--border-secondary-light);
  border-right: 0.5px solid var(--border-secondary-light);
}

body:not(.dark) .section-title {
  color: var(--text-primary-light);
}

body:not(.dark) .section-subtitle {
  color: var(--text-tertiary-light);
}

body:not(.dark) .how-title {
  color: var(--text-primary-light);
}

body:not(.dark) .how-subtitle {
  color: var(--text-tertiary-light);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s, color 0.3s;
}

/* === HEADER START === */
.header {
  background-color: var(--bg-primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-left: 120px;
  padding-right: 120px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}

.left-icons img:first-child {
  width: 60px;
  height: 60px;
}

.left-icons img:last-child {
  width: 108px;
  height: 64px;
  margin-left: 8px;
}

.header-tabs {
  display: flex;
  gap: 0.2rem;
  flex-grow: 1;
  justify-content: center;
}

.tab {
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--util-gray-700-dark);
  position: relative;
  transition: color 0.3s ease;
  padding: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.tab:hover {
  color: var(--tab-color);
}

/* .tab.active {
  border-bottom: 3px solid var(--bg-brand-solid);
  color: var(--tab-color);
} */

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  height: 2px;
  width: 100%;
  background-color: var(--bg-brand-solid); /* Green underline */
  border-radius: 2px;
  transition: background-color 0.5s, color 0.5s;
}

.header-right-buttons {
  display: flex;
  gap: 0.10rem;
  align-items: center;
}

.btn-outline {
  /* padding: 0.5rem 1rem; */
  cursor: pointer;
  background-color: var(--bg-tertiary-dark);
  color: var(--bg-secondary);
  padding: 10px 18px 10px 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
}

.btn-outline:hover {
  color: var(--bg-tertiary-dark);
  background-color: var(--bg-brand-solid);
  padding: 10px 18px 10px 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.btn-primary {
  /* padding: 0.5rem 1rem; */
  background-color: var(--bg-brand-solid);
  color: var(--gray-dark-mode);
  padding: 10px 18px 10px 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.theme-toggle-btn {
  background-color: var(--bg-primary-dark);
  padding: 6px;
  /* border-radius: 16px; */
  width: 40px;
  height: 40px;
  border-radius: 40%;
  position: relative; /* changed from absolute */
  border-style: ridge;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-primary-dark);
  justify-content: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  /* padding: 0.25rem; */
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 40%;
  background: transparent;
  border: none;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.theme-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
}

.rotate-in {
  transform: rotate(0deg);
  opacity: 1;
}

.rotate-out {
  transform: rotate(0deg);
  opacity: 0;
}

/* === HEADER END === */

/* MARQUEE START */

.crypto-marquee {
  margin-left: 48px;
  margin-right: 48px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--bg-primary-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

body:not(.dark) .crypto-marquee {
  background: rgba(154, 148, 148, 0.10);
}

.sticky-marquee {
  position: sticky;
  border-top: 0.5px solid var(--border-primary-dark);
  border-bottom: 0.5px solid var(--border-primary-dark);
  background-color: var(--bg-primary-dark);
}

body:not(.dark) .sticky-marquee {
  border-top: 0.5px solid var(--border-secondary-light);
  border-bottom: 0.5px solid var(--border-secondary-light);
}

.crypto-item {
  margin-right: 40px;
  font-weight: 500;
  color: var(--text-secondary-hover-dark);
}

body:not(.dark) .crypto-item {
  color: var(--text-secondary-hover-light);
}

.crypto-price {
  margin-left: 8px;
  color: var(--fg-tertiary-dark);
}

body:not(.dark) .crypto-price {
  color: var(--fg-tertiary-light);
}

.crypto-item .up {
  margin-left: 8px;
  color: var(--text-success-dark);
}

body:not(.dark) .crypto-item .up {
  color: var(--text-success-light);
}

.crypto-item .down {
  margin-left: 8px;
  color: var(--text-error-dark);
}

body:not(.dark) .crypto-item .down {
  color: var(--text-error-light);
}

/* MARQUEE END */

/* BANNER CAROUSEL START */

.banner-carousel {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Foreground content */
.page-section {
  position: absolute;
  top: 15%;
  left: 7%;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.page-title {
  /* margin-top: 144px; */
  color: var(--text-primary-dark);
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 72px;
  line-height: 90px;
  letter-spacing: -1.44px;
}

.page-sub-title {
  width: 70%;
  margin-top: 16px;
  font-size: 20px;
  color: var(--text-tertiary-dark, #94979C);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* Button */
.mirroring-btn {
  position: absolute;
  top: 50%;
  left: 7%;
  cursor: pointer;
  z-index: 2;
  background-color: var(--bg-brand-solid);
  color: var(--gray-dark-mode);
  border-radius: 16px;
  font-weight: 500;
  font-size: 16px;
  margin-top: 36px;
  transition: background-color 0.3s ease;
  margin-right: 16px;
  padding: 14px 24px;
  border: 1px solid var(--text-white);
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* App store buttons */
.download-app-section {
  position: absolute;
  top: 65%;
  left: 7%;
  z-index: 2;
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.download-app-section img {
  height: 40px;
}

/* Bottom Image Box */
.banner-bottom-image {
  position: absolute;
  bottom: -80px; /* Default for laptops/desktops */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1800px;
  z-index: 1;
}

.banner-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Adjustments */
/* TV Screens (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .banner-bottom-image {
    bottom: -120px;
  }
}

/* Ultra-wide Monitors & 4K (2560px - 3839px) */
@media (min-width: 2560px) and (max-width: 3839px) {
  .banner-bottom-image {
    bottom: -160px;
    max-width: 2000px;
  }
}

/* 8K Resolutions (3840px and above) */
@media (min-width: 3840px) {
  .banner-bottom-image {
    bottom: -200px;
    max-width: 2400px;
  }
}

@media (min-width: 1920px) {
  .banner-bottom-image {
    bottom: -120px;
  }
}

@media (max-width: 1024px) {
  .banner-bottom-image {
    width: 95%;
    bottom: -20px;
  }
  .page-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 40px;
  }
}

/* BANNER CAROUSEL END */


/* STATS SECTION START */

/* Entire stats section spacing */
.stats-section {
  /* padding: 4rem 0;
  margin-top: 108px; */
  font-family: 'Inter', sans-serif;
}

/* Container Grid */
.stats-container {
  max-width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Stat card base style */
.stat-card {
  position: relative;
  border-top: 0.5px solid var(--border-secondary-dark);
  border-bottom: 0.5px solid var(--border-secondary-dark);
  border-right: 0.5px solid var(--border-secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  min-height: 152px;
}

body:not(.dark) .stat-card {
  border-top: 0.5px solid var(--border-secondary-light);
  border-bottom: 0.5px solid var(--border-secondary-light);
  border-right: 0.5px solid var(--border-secondary-light);
}

/* First card: no left border and more padding */
.stat-card:first-child {
  border-left: none;
  padding-left: 20px;
}

/* Last card: no right border and custom padding */
.stat-card:last-child {
  border-right: none;
  padding-right: 60px;
}

/* Top hover line */
.stat-hover-top-line {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  height: 2px;
  background-color: var(--bg-brand-solid);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 2px;
}

body:not(.dark) .stat-hover-top-line {
  background-color: var(--text-primary-light);
}

/* Show top line on hover */
.stat-card:hover .stat-hover-top-line {
  opacity: 1;
}

/* Adjust hover line padding for first/last cards */
.stat-card:first-child .stat-hover-top-line {
  left: 64px;
  right: 0px;
}

.stat-card:last-child .stat-hover-top-line {
  left: 0px;
  right: 64px;
}

/* Icon container */
.stat-icon {
  border: 1px solid var(--border-primary-dark);
  padding: 12px;
  width: 52px;
  height: 52px;
  display: flex;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative; /* important */
  overflow: hidden;
}

body:not(dark) .stat-icon {
  border: 1px solid var(--border-primary-light);
}

/* Icon image color and appearance */
.stat-icon img {
  width: 26px;
  height: 26px;
  transition: all 0.2s ease-in-out;
  position: absolute;
}

.stat-icon .icon-default {
  opacity: 1;
  z-index: 1;
}

.stat-icon .icon-hover {
  opacity: 0;
  z-index: 2;
}

.stat-card:hover .stat-icon .icon-default {
  opacity: 0;
}

.stat-card:hover .stat-icon .icon-hover {
  opacity: 1;
}

/* On hover: icon background and image color */
.stat-card:hover .stat-icon {
  border-color: var(--positive-color);
  background-color: var(--bg-brand-solid);
}

body:not(dark) .stat-card:hover .stat-icon {
  border: none;
  background-color: var(--bg-brand-solid);
}

.stat-card:hover .stat-icon img {
  filter: none; /* or apply a dark shade filter if needed */
}

/* Info block: title and value */
.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-title {
  color: var(--fg-tertiary-dark);
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}

body:not(.dark) .stat-title {
  color: var(--fg-tertiary-light);
}

.stat-value {
  font-weight: 600;
  color: var(--bg-brand-solid);
  font-size: 30px;
  line-height: 38px; 
}

body:not(.dark) .stat-value {
  color: var(--text-primary-light);
}


/* STATS SECTION END */

/* WHY CHOOSE SECTION START */
.why-choose-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  margin-bottom: 10px;
  color: var(--text-primary-dark);
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -2%;
}

.section-subtitle {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--colors-text-text-tertiary-600, #94979C);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr)); /* 2 columns for desktop */
  gap: 16px 24px;
  /* max-width: 1200px;  */
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  justify-content: center; /* Center grid */
  max-width: 1200px;
  padding-left: 120px;
  padding-right: 120px;
  /* border: 1px solid white; */
}

.why-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-card-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.full-row {
  grid-column: 1 / -1; /* Span across all columns */
}

/* Mobile & Small Tablets: 1 column */
@media (max-width: 768px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Large Screens: Slightly bigger cards */
@media (min-width: 1600px) {
  .why-cards-grid {
    max-width: 1400px;
    padding-left: 184px;
    padding-right: 184px;
  }
}

/* Ultra-wide (4K & above) - Keep max width for balance */
@media (min-width: 2560px) {
  .why-cards-grid {
    max-width: 1600px;
  }
}
/* WHY CHOOSE SECTION END */


/* HOW IT WORKS START */

.how-it-works-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Section Title */
.how-title {
  margin-bottom: 10px;
  color: var(--text-primary-dark);
  font-weight: 400;
  font-style: Regular;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -2%;
  text-align: center;
}

/* Section Subtitle */
.how-subtitle {
  margin-bottom: 40px;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: var(--colors-text-text-tertiary-600, #94979C);
}

/* Steps Grid (2 per row on desktop) */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}

/* Individual Card Style */
.how-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Responsive Image */
.how-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* Mobile: stack 1 per row */
@media (max-width: 768px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
  }

  .how-card:nth-child(3) { order: 4; } /* 3rd moves after 4th */
  .how-card:nth-child(4) { order: 3; } /* 4th moves before 3rd */
  .how-card:nth-child(5) { order: 5; } /* 5th moves after 6th */
  .how-card:nth-child(6) { order: 6; } /* 6th moves before 5th */

  .how-title {
    font-size: 40px;
  }
}

/* Large screens (4K / TVs): make images scale nicely */
@media (min-width: 1920px) {
  .how-card img {
    max-width: 80%; /* slightly bigger on large displays */
  }
}

/* HOW IT WORKS END */

/* TOP LEADERS START */

.card-scroll {
  display: none;
  margin-top: 32px;
  /* display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scroll-behavior: smooth; */
}

.card-scroll::-webkit-scrollbar {
  height: 1px;
}

.card-scroll::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

/* .vertical-gradient {
  position: relative;
  top: -500px;
  left: 1270px;
} */

.leaders-heading {
  color: var(--text-primary-dark);
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: -1.2px;
  margin-right: 100px;
}

body:not(.dark) .leaders-heading {
  color: var(--text-primary-light);
}

.leader-card {
  flex-shrink: 0; /* Prevent shrinking so it stays full width in scroll */
  display: flex;
  width: 300px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid var(--border-secondary-dark);
  background: var(--bg-brand-section-dark);
}

body:not(.dark) .leader-card {
  background-color: var(--text-white);
  border: 1px solid var(--border-secondary-light);
}

/* Existing card styles remain same */
.leader-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.leader-avatar {
  /* border-radius: 50%; */
  width: 56px;
  height: 56px;
  display: flex;
  /* padding: 36px 0 0 36px; */
  justify-content: flex-end;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* background: var(--avatar-user-square-kate-morrison-color-background, url(<path-to-image>) lightgray 50% / cover no-repeat, #CCCBDC); */
}

.leader-info {
  margin-left: 10px;
  flex: 1;
}

.leader-name {
  margin: 0;
  font-size: 16px;
  color: var(--text-primary-dark);
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

body:not(.dark) .leader-name {
  color: var(--text-primary-light);
}

.leader-followers {
  font-size: 12px;
  color: var(--text-tertiary-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

body:not(.dark) .leader-followers {
  color: var(--text-tertiary-light);
}

.leader-status {
  width: 14px;
  height: 14px;
  background: var(--fg-success-secondary-dark);
  position: absolute;
  left: 38px;
  bottom: 4px;
  border-radius: 9999px;
  border: 1.5px solid var(--bg-primary-dark);
  flex-shrink: 0;
}

body:not(.dark) .leader-status {
  border: 1.5px solid var(--text-white);
}

.menu-icon {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  position: absolute;
  right: -96px;
  top: 8px;
  /* padding-left: 84px; */
}

.section-divider {
  margin: 1px 0;
  width: 260px;
  height: 1px;
  background: var(--border-secondary-dark);
}

body:not(.dark) .section-divider {
  background: var(--border-secondary-light);
}

.profit-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px;
  gap: 90px;
}

.profit-chart img{
  width: 80px;
  height: 80px;
}

.profit-text h2 {
  margin: 0;
  font-size: 18px;
  color: var(--text-primary-dark);
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

body:not(.dark) .profit-text h2 {
  color: var(--text-primary-light);
}

.profit-change {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-success-dark);
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

body:not(.dark) .profit-change {
  color: var(--text-tertiary-light);
}

.up {
  color: var(--text-success-dark);
}

hr {
  border: 0;
  height: 1px;
  background: #333;
  margin: 12px 0;
}

body:not(.dark) hr {
  background: var(--text-tertiary-light);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin: 6px 0; */
  gap: 44px;
}

.leader-stat-value {
  margin: 0;
  color: var(--text-primary-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.aum {
  padding-left: 60px;
}

.stat h3{
  color: var(--text-primary-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

body:not(.dark) .stat h3 {
  color: var(--text-primary-light);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.stat-header h3{
  margin-bottom: 16px;
}

.stat-label {
  margin: 0;
  font-size: 14px;
  overflow: hidden;
  color: var(--fg-tertiary-dark);
  text-overflow: ellipsis;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

body:not(.dark) .stat-label {
  color: var(--text-tertiary-light);
}

.stat h3 {
  font-size: 16px;
  text-align: end;
  margin-top: 16px;
}

.leader-stat-value {
  margin-left: 20px;
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.progress-bar {
  margin-bottom: 12px;
}

.stat winrate {
  gap: 1px;
}

.winrate p{
  margin-bottom: 20px;
}

.progress-bar {
  display: flex;
  height: 6px;
  width: 100px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
}

.progress-win {
  background: #00ff88;
  width: 87%;
}

.progress-loss {
  background: #ff3b30;
  width: 13%;
}

.mirror-btn {
  border-radius: 16px;
  background: var(--border-secondary-dark);
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  color: var(--text-primary-dark);
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border: none;
  margin-top: 8px;
}

body:not(.dark) .mirror-btn {
  color: var(--text-primary-light);
  background: var(--bg-disabled-light);
}

.mirror-btn:hover {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  align-self: stretch;
  border-radius: 16px;
  background: var(--bg-brand-solid);
  color: var(--gray-dark-mode);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

body:not(.dark) .mirror-btn:hover {
  background: var(--bg-brand-solid);
  color: var(--gray-dark-mode);
}

.leaders-section {
  padding-left: 100px;
  padding-right: 20px;
  padding-bottom: 64px;
}

.leaders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 15px;
  margin-top: 32px;
  margin-right: 100px;
}

.leaders-header p{
  max-width: 60%;
  color: var(--text-tertiary-dark);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

body:not(.dark) .leaders-header p {
  color: var(--text-tertiary-light);
}

.leaders-title {
  text-align: center;
  flex: 1;
}

.leaders-title h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.leaders-title p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #666;
}

.scroll-btn {
  color: white;
  background-color: var(--bg-primary-dark);
  width: 48px;
  height: 48px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: flex;
  padding: 14px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--util-gray-200-dark);
}

body:not(.dark) .scroll-btn {
  background-color: var(--text-white);
  border: 1px solid var(--fg-disabled-subtle-light);
}

.scroll-btn:hover {
  width: 50px;
  height: 50px;
  border: 2px solid var(--bg-brand-solid);
  background: var(--bg-brand-section-dark);
}

body:not(.dark) .scroll-btn:hover {
  width: 50px;
  height: 50px;
  color: var(--text-primary-light);
  border: 2px solid var(--bg-brand-solid);
  background: var(--text-white);
}

.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border: 1px solid var(--text-tertiary-dark);
  border-radius: 50%;
  background-color: var(--bg-primary-dark);
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

body:not(.dark) .help-icon {
  color: var(--fg-quaternary-light);
  background-color: var(--text-white);
}

.card-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
}

.card-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

/* --- Responsive Adjustments for Top Leaders Section --- */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .leaders-heading {
    font-size: 40px;
    line-height: 52px;
    margin-right: 0;
  }

  .leaders-heading {
    /* font-size: 32px; */
    line-height: 36px;
    margin: 0 0 16px;
  }

  .leaders-header p {
    /* font-size: 14px; */
    /* line-height: 22px; */
    max-width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
    padding: 10px;
    display: none;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .leaders-section {
    margin-top: 32px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .leaders-heading {
    font-size: 32px;
    line-height: 36px;
    margin: 0 0 16px;
  }

  .leaders-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  .leaders-header p {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .scroll-btn {
    width: 36px;
    height: 36px;
    padding: 8px;
    display: none;
  }

  /* .leader-card {
    width: 260px;
    padding: 16px;
  } */

  /* .profit-section {
    flex-direction: column;
    gap: 12px;
  } */

  /* .stats-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  } */
}

/* TOP LEADERS END */

/* MIRROR LEADER START */

.mirror-leaders-section {
  padding-left: 80px;
  padding-right: 48px;
  padding-bottom: 120px; /* ADD SPACE FOR FOOTER */
}

.top-rated-leaders-text {
  position: absolute;
  top: 160px;
  left: 124px;
  color: var(--text-tertiary-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.filters {
  position: absolute;
  top: 152px;
  right: 124px;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Normal Filter */
.normal-filter {
  display: flex;
  overflow: hidden;              /* keeps radius clean */
  border-radius: 16px;
  border: 1px solid var(--border-primary-dark);
}

.normal-filter span {
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  min-height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--text-brand-secondary-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

/* Vertical divider except last item */
.normal-filter span:not(:last-child) {
  border-right: 1px solid var(--border-primary-dark);
}

.normal-filter span:hover {
  background: rgba(255, 255, 255, 0.1);  /* faded hover background */
}

.normal-filter span.active {
  background: rgba(0, 255, 0, 0.1);   /* faded green background */
  color: green;                       /* green text for selected */
}

/* Dropdown Filter */
.dropdown {
  position: relative;
}

.dropbtn {
  /* background-color: black;
  border: 1px solid grey; */
  /* border-radius: 5px; */
  
  /* color: white; */
  cursor: pointer;
  /* font-weight: bold;
  display: flex;
  align-items: center; */
  /* gap: 5px; */
  transition: all 0.2s ease; /* smooth hover effect */

  display: inline-flex;
  padding: 10px 14px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid var(--border-primary-dark);
  background: var(--bg-primary-dark);
  color: var(--text-brand-secondary-dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.dropbtn:hover {
  border: 2px solid green; /* thicker & green on hover */
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 160px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}

.dropdown-content div {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-content div:hover {
  background: #f0f0f0;
}

.top-rated-leaders-container {
  margin-top: 80px;
}

.show {
  display: block;
}

.most-trusted-leaders-text {
  position: absolute;
  margin-top: 96px;
  margin-left: 0px;
  color: var(--text-tertiary-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.most-trusted-leaders-container {
  margin-top: 130px;
}

.become-leader-container {
  display: flex;
  justify-content: space-between; /* text left, button right */
  align-items: center;
  padding: 60px;
  /* border-radius: 1rem; */
  margin-top: 116px;
  border-radius: 1rem;
  /* border: 1px solid var(--border-secondary-dark); */
  background: var(--bg-brand-section-dark);
}

.become-leader-texts {
  display: flex;
  flex-direction: column; /* stack texts vertically */
}

.become-leader-text {
  color: var(--text-primary-dark);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.join-leaders-text {
  font-size: 20px;
  margin-top: 16px;
  color: var(--text-tertiary-dark);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.sign-up-button {
  padding: 12px 18px;
  font-weight: bold;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;              /* space between text and arrow */
  transition: background 0.2s ease;
  justify-content: center;
  background: var(--bg-brand-solid);
  color: var(--gray-dark-mode);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.button-arrow {
  font-size: 20px;
}

/* .sign-up-right-arrow {
  color: black;
} */

/* .sign-up-button:hover {
  background-color: darkgreen;
} */

.video-section {
  padding: 32px;
  border-radius: 1rem;
  /* border: 1px solid var(--border-secondary-dark); */
  background: var(--bg-brand-section-dark);
  margin-top: 96px;
}

.video-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.video-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-tertiary-dark);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.learn-more {
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px; 
  color: var(--text-brand-secondary-dark);
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.learn-more:hover {
  /* text-decoration: underline; */
  color: white;
}

.arrow {
  font-size: 16px;
}

.video-container video {
  border-radius: 12px;
  max-width: 100%;
  height: 600px;
  margin-top: 16px;
}

.faq-section {
  margin-top: 80px;
  padding: 40px 24px;
  text-align: center;
}

.faq-title {
  font-size: 36px;
  color: var(--text-primary-dark);
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
}

.faq-subtitle {
  font-size: 20px;
  color: var(--text-tertiary-dark);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 24px;
}

.faq-accordions {
  margin-top: 80px;
  padding-left: 200px;
  padding-right: 200px;
}

/* Accordion styling */
.accordion {
  margin-bottom: 10px;
  text-align: left;
  position: relative;
}

.accordion-btn {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

/* .accordion-btn:hover {
  color: green;
} */

.accordion-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border: 1px solid grey;
  border-radius: 50%;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Accordion content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 0;
  margin-bottom:20px;
}

.accordion-content p {
  margin: 0;
  color: var(--text-tertiary-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Divider */
.accordion-divider {
  height: 1px;
  background: var(--border-secondary-dark);
  width: 100%;
  margin-bottom: 10px;
}

.ending-learn-more-option {
  justify-items: center;
}

/* MIRROR LEADER END */

/* FEATURES SECTION START */

.features-section {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 64px;
  gap: 2rem;
}

.features-image {
  text-align: center;
  color: #fff;
}

.features-image img {
  width: 100%;
  height: 100%;
}

.features-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

/* Feature images */
.features-row img {
  flex: 1 1 30%; /* flexible: grows, shrinks, basis ~30% */
  /* max-width: 300px;  */
  height: auto; /* maintain aspect ratio */
  object-fit: contain;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .features-section {
    gap: 1rem;
  }
  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .features-row img {
    flex: unset;
    width: 100%; /* take 80% width on mobile */
    /* max-width: 400px; */
  }
}

/* FEATURES SECTIONN END */

/* PLANETARY CIRCLE SECTION START */
/* .planetary-circle-section {
  position: relative;
  overflow: hidden;
  margin-left: 72px;
  margin-right: 72px;
  margin-top: 104px;
}

.planetary-circle-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
}

.planetary-circle-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.blur-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  top: 51%;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.planetary-circle-image img {
  width: 100%;
  height: auto;
  display: block;
}

.icon {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: contain;
  z-index: 2;
}

.center-logo {
  mix-blend-mode: hard-light;
}

.icon-outer.pos-1 { top: 35%; left: 3%; transform: translate(-50%, -50%); }
.icon-outer.pos-2 { top: 10%; left: 21%; transform: translate(-50%, -50%); }
.icon-outer.pos-3 { top: 10%; left: 79%; transform: translate(-50%, -50%); }
.icon-outer.pos-4 { top: 35%; left: 97%; transform: translate(-50%, -50%); }

.icon-inner.pos-1 { top: 57%; left: 16%; transform: translate(-50%, -50%); }
.icon-inner.pos-2 { top: 30%; left: 23%; transform: translate(-50%, -50%); }
.icon-inner.pos-3 { top: 16%; left: 50%; transform: translate(-50%, -50%); }
.icon-inner.pos-4 { top: 30%; left: 78%; transform: translate(-50%, -50%); }
.icon-inner.pos-5 { top: 57%; left: 84%; transform: translate(-50%, -50%); }

.icon-core.pos-1 { top: 45%; left: 32%; transform: translate(-50%, -50%); }
.icon-core.pos-2 { top: 45%; left: 68%; transform: translate(-50%, -50%); }

.icon-core.pos-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); } */

/* Wrapper height matches the image height */
    .image-wrapper {
      margin-top: 144px;
      box-sizing: border-box;
      position: relative; /* needed for absolute positioning of blur */
      width: 100%;
      height: 100vh; 
      overflow: hidden;
      display: flex;
      padding-left: 80px;
      padding-right: 80px;
      justify-content: center;
      align-items: flex-start; /* aligns main image to top */
    }

    /* Main image fills the wrapper while keeping top visible */
    .half-image {
      width: 100%;
      height: 100%;
      object-fit: cover;   
      object-position: top;
      display: block;
    }

    /* Blur image overlapping at bottom */
    .blur-image-part {
      position: absolute;
      bottom: 0; /* align to bottom of wrapper */
      left: 50%; /* center horizontally */
      transform: translateX(-50%); /* adjust center alignment */
      width: 90%; /* adjust size as needed */
      height: auto; /* keep aspect ratio */
      pointer-events: none; /* ensures it doesn't block interactions */
    }

  .icon {
    position: absolute;
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 2;
  }

  .icon-outer.pos-1 { top: 55%; left: 9%; transform: translate(-50%, -50%); }
  .icon-outer.pos-2 { top: 15%; left: 27%; transform: translate(-50%, -50%); }
  .icon-outer.pos-3 { top: 15%; left: 74%; transform: translate(-50%, -50%); }
  .icon-outer.pos-4 { top: 55%; left: 91%; transform: translate(-50%, -50%); }

  .icon-inner.pos-1 { top: 94%; left: 20%; transform: translate(-50%, -50%); }
  .icon-inner.pos-2 { top: 45%; left: 30%; transform: translate(-50%, -50%); }
  .icon-inner.pos-3 { top: 30%; left: 50%; transform: translate(-50%, -50%); }
  .icon-inner.pos-4 { top: 45%; left: 71%; transform: translate(-50%, -50%); }
  .icon-inner.pos-5 { top: 94%; left: 80%; transform: translate(-50%, -50%); }

  .icon-core.pos-1 { top: 72%; left: 36%; transform: translate(-50%, -50%); }
  .icon-core.pos-2 { top: 72%; left: 64%; transform: translate(-50%, -50%); }

  .icon-core.pos-3 { top: 89%; left: 50%; transform: translate(-50%, -50%); }

  .center-logo {
    mix-blend-mode: hard-light;
  }

    /* Optional: adjust height for smaller screens */
    @media (max-width: 768px) {
      .image-wrapper {
        margin-top: 40px;
        height: 30vh;
        padding-left: 0px;
        padding-right: 12px;
      }
      .blur-image-part {
        width: 90%; /* adjust blur size for mobile */
      }
      .icon {
        width: 32px;
        height: 32px;
      }
      .icon-outer.pos-1 { top: 55%; left: 6%; transform: translate(-50%, -50%); }
      .icon-outer.pos-2 { top: 15%; left: 25%; transform: translate(-50%, -50%); }
      .icon-outer.pos-3 { top: 15%; left: 76%; transform: translate(-50%, -50%); }
      .icon-outer.pos-4 { top: 55%; left: 95%; transform: translate(-50%, -50%); }

      .icon-inner.pos-1 { top: 94%; left: 20%; transform: translate(-50%, -50%); }
      .icon-inner.pos-2 { top: 45%; left: 30%; transform: translate(-50%, -50%); }
      .icon-inner.pos-3 { top: 30%; left: 50%; transform: translate(-50%, -50%); }
      .icon-inner.pos-4 { top: 45%; left: 71%; transform: translate(-50%, -50%); }
      .icon-inner.pos-5 { top: 94%; left: 80%; transform: translate(-50%, -50%); }

      .icon-core.pos-1 { top: 72%; left: 30%; transform: translate(-50%, -50%); }
      .icon-core.pos-2 { top: 72%; left: 65%; transform: translate(-50%, -50%); }

      .icon-core.pos-3 { top: 75%; left: 48%; transform: translate(-50%, -50%); }
    }

/* PLANETARY CIRCLE SECTION END */

/* TERMS OF SERVICE START */

/* Container styling for both dark and light modes */
.terms-of-service-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark mode */
body.dark .terms-of-service-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light mode */
body:not(.dark) .terms-of-service-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.terms-of-service-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.terms-of-service-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Effective date */
.terms-of-service-container .effective-date {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}

/* Paragraphs */
.terms-of-service-container p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Lists */
.terms-of-service-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.terms-of-service-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .terms-of-service-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .terms-of-service-container a {
  color: #0056b3;
  text-decoration: underline;
}

.terms-of-service-container a:hover {
  opacity: 0.8;
}

/* TERMS OF SERVICE END */

/* PRIVACY POLICY START */

/* Container styling for both dark and light modes */
.privacy-policy-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark mode */
body.dark .privacy-policy-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light mode */
body:not(.dark) .privacy-policy-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.privacy-policy-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-policy-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Effective date */
.privacy-policy-container .effective-date {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}

/* Paragraphs */
.privacy-policy-container p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Lists */
.privacy-policy-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.privacy-policy-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .privacy-policy-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .privacy-policy-container a {
  color: #0056b3;
  text-decoration: underline;
}

.privacy-policy-container a:hover {
  opacity: 0.8;
}

/* PRIVACY POLICY END */

/* COOKIE POLICY START */
#cookies-policy.privacy-policy-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;
    background-color: #1c1c1c; /* dark card */
    border-radius: 12px;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

#cookies-policy h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

#cookies-policy h2 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e90ff; /* accent blue */
}

#cookies-policy h3 {
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1e90ff;
}

#cookies-policy p {
    margin-bottom: 15px;
    color: #d0d0d0;
}

#cookies-policy ul {
    margin: 10px 0 20px 20px;
}

#cookies-policy ul li {
    margin-bottom: 8px;
}

#cookies-policy a {
    color: #1e90ff;
    text-decoration: none;
}

#cookies-policy a:hover {
    text-decoration: underline;
}

#cookies-policy .effective-date {
    font-style: italic;
    color: #aaa;
}

/* Dark theme */
body.dark #cookies-policy.privacy-policy-container {
    background-color: #1c1c1c;
    color: #e0e0e0;
    box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

body.dark #cookies-policy h1,
body.dark #cookies-policy h2,
body.dark #cookies-policy h3 {
    color: #1e90ff;
}

body.dark #cookies-policy p,
body.dark #cookies-policy ul li {
    color: #e0e0e0;
}

body.dark #cookies-policy a {
    color: #1e90ff;
}

body.dark #cookies-policy a:hover {
    text-decoration: underline;
}

/* Light theme */
body:not(.dark) #cookies-policy.privacy-policy-container {
    background-color: #fdfdfd;
    color: #222;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

body:not(.dark) #cookies-policy h1,
body:not(.dark) #cookies-policy h2,
body:not(.dark) #cookies-policy h3 {
    color: #0077cc;
}

body:not(.dark) #cookies-policy p,
body:not(.dark) #cookies-policy ul li {
    color: #222;
}

body:not(.dark) #cookies-policy a {
    color: #0077cc;
}

body:not(.dark) #cookies-policy a:hover {
    text-decoration: underline;
}

body:not(.dark) #cookies-policy .effective-date {
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    #cookies-policy.privacy-policy-container {
        padding: 20px;
        margin: 20px;
    }

    #cookies-policy h1 {
        font-size: 1.8rem;
    }

    #cookies-policy h2 {
        font-size: 1.3rem;
    }

    #cookies-policy h3 {
        font-size: 1.1rem;
    }
}
/* COOKIE POLICY END */

/* RISK DISCLAIMER START */

.risk-disclaimer-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  background-color: #1c1c1c; /* dark card */
  border-radius: 12px;
  color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

.risk-disclaimer-container h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
}

.risk-disclaimer-container h2 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #1e90ff; /* accent blue */
}

.risk-disclaimer-container p,
.risk-disclaimer-container ul li {
  margin-bottom: 15px;
  color: #d0d0d0;
}

.risk-disclaimer-container ul {
  margin: 10px 0 20px 20px;
}

.risk-disclaimer-container a {
  color: #1e90ff;
  text-decoration: none;
}
.risk-disclaimer-container a:hover {
  text-decoration: underline;
}

.risk-disclaimer-container .condensed {
  background: rgba(30,144,255,0.05);
  padding: 15px;
  border-left: 4px solid #1e90ff;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Dark theme */
body.dark #risk-disclaimer.risk-disclaimer-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light theme */
body:not(.dark) #risk-disclaimer.risk-disclaimer-container {
  background-color: #fdfdfd;
  color: #222;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

body:not(.dark) #risk-disclaimer h1,
body:not(.dark) #risk-disclaimer h2 {
  color: #0077cc;
}

body:not(.dark) #risk-disclaimer p,
body:not(.dark) #risk-disclaimer ul li {
  color: #222;
}

body:not(.dark) #risk-disclaimer .condensed {
  background: rgba(0,119,204,0.05);
  border-left-color: #0077cc;
}
/* Responsive */
@media (max-width: 768px) {
  #risk-disclaimer.risk-disclaimer-container {
    padding: 20px;
    margin: 20px;
  }

  #risk-disclaimer h1 {
    font-size: 1.8rem;
  }

  #risk-disclaimer h2 {
    font-size: 1.3rem;
  }
}

/* RISK DISCLAIMER END */

/* DECLARATION OF CONSENT START */

/* Declaration of Consent (mirrors Privacy Policy style) */
.declaration-consent-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark theme */
body.dark .declaration-consent-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light theme */
body:not(.dark) .declaration-consent-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.declaration-consent-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.declaration-consent-container p {
  margin-bottom: 15px;
}

body.dark .declaration-consent-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .declaration-consent-container a {
  color: #0056b3;
  text-decoration: underline;
}

.declaration-consent-container a:hover {
  opacity: 0.8;
}

/* DECLARATION OF CONSENT END */

/* CONFLICT OF INTEREST POLICY START */

/* Conflict of Interest Policy Styling */

/* Container setup */
.conflict-policy-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark mode */
body.dark .conflict-policy-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light mode */
body:not(.dark) .conflict-policy-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.conflict-policy-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.conflict-policy-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Effective date */
.conflict-policy-container .effective-date {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}

/* Paragraphs */
.conflict-policy-container p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Lists */
.conflict-policy-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.conflict-policy-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .conflict-policy-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .conflict-policy-container a {
  color: #0056b3;
  text-decoration: underline;
}

.conflict-policy-container a:hover {
  opacity: 0.8;
}

/* CONFLICT OF INTEREST POLICY END */

/* END USER LICENCE AGREEMENT START */

/* End-User License Agreement Styling */

/* Container */
.eula-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .eula-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .eula-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.eula-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.eula-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Effective Date */
.eula-container .effective-date {
  font-style: italic;
  margin-bottom: 15px;
  text-align: center;
}

/* Paragraphs */
.eula-container p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Lists */
.eula-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.eula-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .eula-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .eula-container a {
  color: #0056b3;
  text-decoration: underline;
}

.eula-container a:hover {
  opacity: 0.8;
}

/* END USER LICENCE AGREEMENT END */

/* ABOUT US START */

/* Container */
.about-us-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .about-us-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .about-us-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.about-us-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.about-us-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro Text */
.about-us-container .intro-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Paragraphs */
.about-us-container p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Lists */
.about-us-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.about-us-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .about-us-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .about-us-container a {
  color: #0056b3;
  text-decoration: underline;
}

.about-us-container a:hover {
  opacity: 0.8;
}

/* ABOUT US END */

/* WHY CHOOSE US START */
/* Section and Container */
.why-choose-section {
  margin-top: 60px;
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Titles */
.section-title {
  margin-bottom: 16px;
  color: var(--text-primary-dark);
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: -1.2px;
}

.section-subtitle {
  margin-bottom: 60px;
  color: var(--text-tertiary-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* Grid Layout */
.images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  gap: 20px;
}

/* Images */
.images-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Make last image full width */
.images-grid img.full-width {
  grid-column: 1 / -1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .images-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 20px;
  }

  .images-grid img.full-width {
    grid-column: 1 / -1;
  }

  .images-grid img {
    width: 100%;
    height: auto;
  }
}

/* WHY CHOOSE US END */

/* AFFILIATE PROGRAMME START */

/* Affiliate Programme Styling */

/* Container */
.affiliate-programme-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .affiliate-programme-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .affiliate-programme-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.affiliate-programme-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.affiliate-programme-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro Text */
.affiliate-programme-container .intro-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Closing Note */
.affiliate-programme-container .closing-note {
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
}

/* Paragraphs */
.affiliate-programme-container p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Lists */
.affiliate-programme-container ul,
.affiliate-programme-container ol {
  margin: 10px 0 20px 25px;
  padding: 0;
}

.affiliate-programme-container ul li,
.affiliate-programme-container ol li {
  margin-bottom: 10px;
}

/* Links */
body.dark .affiliate-programme-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .affiliate-programme-container a {
  color: #0056b3;
  text-decoration: underline;
}

.affiliate-programme-container a:hover {
  opacity: 0.8;
}

/* AFFILIATE PROGRAMME END */

/* HELP START */

/* Help Center Styling */

/* Container settings */
.help-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .help-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .help-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.help-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.help-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro section */
.help-container .intro-text {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Lists */
.help-container ul {
  margin: 10px 0 20px 25px;
  list-style-type: disc;
  padding: 0;
}

.help-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .help-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .help-container a {
  color: #0056b3;
  text-decoration: underline;
}

.help-container a:hover {
  opacity: 0.8;
}

/* HELP END */

/* ACADEMY START */

/* Mirrorpip Academy Styling */

/* Container */
.academy-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .academy-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .academy-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.academy-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.academy-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro Text */
.academy-container .intro-text {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Lists */
.academy-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.academy-container ul li {
  margin-bottom: 10px;
}

/* Definitions in Glossary */
.academy-container ul li strong {
  color: var(--accent-color, #4da6ff);
}

/* Links */
body.dark .academy-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .academy-container a {
  color: #0056b3;
  text-decoration: underline;
}

.academy-container a:hover {
  opacity: 0.8;
}

/* ACADEMY END */

/* HELP CENTER START */

/* Mirrorpip Help Center Styling */

/* Container */
.help-center-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .help-center-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .help-center-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.help-center-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.help-center-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro text */
.help-center-container .intro-text {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Lists */
.help-center-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.help-center-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .help-center-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .help-center-container a {
  color: #0056b3;
  text-decoration: underline;
}

.help-center-container a:hover {
  opacity: 0.8;
}

/* HELP CENTER END */

/* MIRROR PIP ACADEMY START */

/* Mirror Pip Academy Styling */

/* Container */
.academy-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .academy-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .academy-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.academy-container h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.academy-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro text */
.academy-container .intro-text {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Lists */
.academy-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.academy-container ul li {
  margin-bottom: 10px;
}

/* Links */
body.dark .academy-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .academy-container a {
  color: #0056b3;
  text-decoration: underline;
}

.academy-container a:hover {
  opacity: 0.8;
}

/* MIRROR PIP ACADEMY END */

/* PRICING START */

/* Pricing Page Styling */

/* Container */
.pricing-container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  text-align: center;
}

/* Dark Mode */
body.dark .pricing-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .pricing-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Intro */
.pricing-container .intro-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Pricing Cards */
.pricing-card {
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dark .pricing-card {
  border: 1px solid #333;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: normal;
}

/* Lists */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 10px;
}

/* Highlighted Plan */
.pricing-card.highlighted {
  border: 2px solid var(--accent-color, #4da6ff);
  transform: scale(1.05);
}

/* Buttons */
.pricing-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

body.dark .pricing-btn {
  background-color: #4da6ff;
  color: #fff;
}

body:not(.dark) .pricing-btn {
  background-color: #0056b3;
  color: #fff;
}

.pricing-btn:hover {
  opacity: 0.9;
}

/* PRICING END */

/* APIS START */

/* APIs Page Styling */

.apis-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .apis-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .apis-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.apis-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.apis-container h2 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  border-left: 4px solid var(--accent-color, #4da6ff);
  padding-left: 10px;
}

/* Intro Text */
.apis-container .intro-text {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-align: center;
}

/* Lists */
.apis-container ul {
  margin: 10px 0 20px 25px;
  padding: 0;
  list-style-type: disc;
}

.apis-container ul li {
  margin-bottom: 10px;
}

/* Button */
.api-docs-btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 20px 0;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

body.dark .api-docs-btn {
  background-color: #4da6ff;
  color: #fff;
}

body:not(.dark) .api-docs-btn {
  background-color: #0056b3;
  color: #fff;
}

.api-docs-btn:hover {
  opacity: 0.9;
}

/* APIS END */

/* NEW UPDATES START */

/* New Updates Page Styling */

.new-updates-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 30px;
  border-radius: 12px;
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
}

/* Dark Mode */
body.dark .new-updates-container {
  background-color: #1c1c1c;
  color: #e0e0e0;
  box-shadow: 0 6px 20px rgba(255,255,255,0.05);
}

/* Light Mode */
body:not(.dark) .new-updates-container {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Headings */
.new-updates-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.new-updates-container h2 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  color: var(--accent-color, #4da6ff);
}

/* Dates */
.new-updates-container .update-date {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

/* Update Entries */
.update-entry {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

/* Links */
body.dark .new-updates-container a {
  color: #4da6ff;
  text-decoration: underline;
}

body:not(.dark) .new-updates-container a {
  color: #0056b3;
  text-decoration: underline;
}

.new-updates-container a:hover {
  opacity: 0.8;
}

/* Closing Note */
.new-updates-container .closing-note {
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
}

/* NEW UPDATES END */

/* FOOTER SECTION START */

.inside-planetary-footer {
  position: relative;
  margin-top: -33vw; /* Dynamic based on viewport width */
  z-index: 3;
}

.footer {
  margin-left: 48px;
  margin-right: 48px;
  background-color: var(--bg-brand-section-dark);
  color: var(--text-tertiary-dark);
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}

body:not(dark) .footer {
  background-color: var(--bg-active-light);
  color: var(--text-tertiary-light);
}

/* Background Watermark */
.footer-bg-text {
  left: 5%;
  font-weight: bold;
  color: #1a1a1a;
  z-index: 0;
  pointer-events: none;
  margin-top: 48px;
  margin-bottom: 0xp;
}
.footer-bg-text .dot {
  vertical-align: top;
  margin-left: 12px;
}
.pip-icon {
  position: relative;
  top: -150px;
  right: -950px;
  height: 48px;
  width: 48px;
}

/* Top: Branding + App Download */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}
.footer-branding {
  max-width: 400px;
}
.footer-logo {
  display: flex;
  gap: 12px;
}
.footer-logo img {
  height: 56px;
  align-items: center;
}
.footer-desc {
  margin: 32px 0 20px;
  font-weight: 400;
  max-width: 320px;
  font-style: normal;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0;
}

/* ✅ Modified to show email and phone in same row */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
.footer-contact img {
  height: 20px;
  margin-right: 4px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-decoration: none;
  opacity: 50%;
  color: var(--text-tertiary-dark);
}

/* ✅ QR + App Store Row */
.footer-app {
  text-align: start;
}

/* New row layout */
.footer-app-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.scan-qrcode-text {
    display: block;
    max-width: 250px;
    color: var(--text-secondary-dark);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
}

body:not(dark) .scan-qrcode-text {
    display: block;
    max-width: 250px;
    color: var(--text-secondary-light);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
}

.download-text {
  display: none;
}

body:not(dark) .download-text {
  display: none;
}

/* QR code white box */
.qr-wrapper {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 4px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.qr-code {
  height: 110px;
  width: 110px;
  display: block;
}

.top-right-icon {
  position: absolute;
  top: 16px;
  right: -14px;
  height: 20px;
  width: 20px;
}

.footer-app .app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}
.footer-app .app-buttons img {
  height: 44px;
  width: 120px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-app .app-buttons img:hover {
  opacity: 0.8;
}

/* Middle: Links Grid */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 60px 0 30px;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--text-tertiary-dark);
}

body:not(dark) .footer-col h4 {
  color: var(--text-tertiary-light);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  color: var(--text-tertiary-dark);
}

body:not(dark) .footer-col a {
  color: var(--text-tertiary-light);
}

.new-badge {
  color: #CECFD2;
  border: #373A41 solid 0.1px;
  opacity: 0.8;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 4px;
  border-radius: 6px;
  margin-left: 6px;
  letter-spacing: 0px;
}

/* ✅ Modified faint white line */
.footer hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-top: 80px;
}

/* Bottom: Copyright */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  position: relative;
  margin-top: 24px;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
}
.footer-bottom .social-icons img {
  height: 24px;
  margin-left: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.footer-bottom .social-icons img:hover {
  opacity: 1;
}

/* 📱 MOBILE FOOTER STYLES */
@media (max-width: 768px) {
  .footer {
    margin-left: 0px;
    margin-right: 0px;
    padding: 40px 20px;
    justify-items: center;
  }

  /* Top section stacks */
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer-logo {
    flex-direction: column;
    align-items: center; /* keeps them left aligned */
    gap: 0px; /* space between image and text */
  }

  .footer-image-logo {
    height: 48px;
    width: 56px;
  }

  .footer-text-logo {
    height: auto;
    width: 108px; /* adjust if you want smaller on mobile */
  }

  .footer-desc {
    text-align: center;
    font-size: 16px;
  }

  .footer-app {
    align-items: center;
    text-align: center;
  }

  .scan-qrcode-text {
    display: none;
    font-size: 16px;
    align-items: center;
  }

  .download-text {
    display: block;
  }

  /* Contact info stacked */
  .footer-contact {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* QR + App buttons stacked */
  .footer-app-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-app .app-buttons {
    flex-direction: row; /* show app store + play store side by side */
    gap: 16px;
  }

  /* Links stacked in single column */
  .footer-links {
    display: block;
  }
  .footer-col {
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
  }

  /* Bottom section stacked */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-bottom .social-icons {
    margin-left: 0;
  }

  .mirror-pip-text {
    width: 350px;
  }

  .pip-icon {
    position: relative;
    top: -45px;
    right: -260px;
    height: 12px;
    width: 12px;
  }

  /* .footer-bg-text {
    left: 5%;
    font-weight: bold;
    color: #1a1a1a;
    z-index: 0;
    pointer-events: none;
    margin-top: 48px;
    margin-bottom: 0xp;
  }
  .footer-bg-text .dot {
    vertical-align: top;
    margin-left: 12px;
  }
  .pip-icon {
    position: relative;
    top: -150px;
    right: -950px;
    height: 48px;
    width: 48px;
  } */
}


/* FOOTER SECTION END */

/* COMING SOON SECTION START */

.coming-soon-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 3rem;
      font-weight: bold;
      padding: 15rem;
    }

/* COMING SOON SECTION END */

/* === MAIN CONTENT START === */
#main-content {
  padding: 2rem;
  min-height: 100vh;
}

/* === CARD SECTION START === */
.card-section {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: var(--card);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-size: 1.25rem;
  text-align: center;
}
/* === CARD SECTION END === */

/* === COMING SOON START === */
.long-page {
  height: 200vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--coming);
}
/* === COMING SOON END === */

/* === RESPONSIVE === */
@media (min-width: 576px) {
  .card-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-section {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
  }
}
