
body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding-top: 160px;
}

/* HEADER WRAPPER */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

/* MAIN HEADER */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid #eee;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}
.logo-icon {
  margin-right: 6px;
  font-size: 24px;
}
.right-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.signup-btn {
  background: blue;
  color: white;
  padding: 10px 16px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger .bar {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
}
.hamburger.open .bar:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}
.hamburger.open .bar:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* TOP NAV */.top-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  font-size: 13px;
}

.top-nav a {
  text-decoration: none;
  color: black;
}
.top-nav.show {
  display: flex;
}

/* JUMP NAV */
.jump-nav {
  position: sticky;
  top: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  padding: 10px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
.jump-nav span {
  margin-right: 10px;
  font-weight: bold;
}
.jump-links {
  display: flex;
  gap: 24px;
  position: relative;
  background: transparent;
  backdrop-filter: none;
}
.jump-link {
  text-decoration: none;
  color: black;
  padding-bottom: 4px;
}

.tracker {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 2px ;
  flex-wrap: wrap;
  text-align: center;
}
.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-label {
  font-family: monospace;
  font-size: large;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: 40px;
  margin-bottom: 18px;
}
.hero-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.primary-btn {
  background: blue;
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: 500;
  cursor: pointer;
}
.secondary-btn {
  background: white;
  border: 1px solid #000;
  padding: 12px 20px;
  font-weight: 500;
  cursor: pointer;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.droplet-placeholder {
  width: 220px;
  height: 220px;
  background: blue;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {
 
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px; /* tighter spacing */
  padding: 160px 32px 60px;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tracker {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  pointer-events: none;
}

.jump-links {
  display: flex;
  gap: 24px;
  position: relative;
  background: transparent;
  overflow-x: auto; /* enables horizontal scroll */
  white-space: nowrap; /* prevent wrapping */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scrollbar-width: none; /* Firefox: hide scrollbar */
}
.jump-links::-webkit-scrollbar {
  display: none; /* Chrome/Safari: hide scrollbar */
}
.jump-link {
  flex: 0 0 auto; /* prevent shrinking */
  text-decoration: none;
  color: black;
  padding-bottom: 4px;
  font-size: 14px;
}
.jump-nav {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
/* HERO - Desktop */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 160px 32px 60px; /* top padding adjusted to match header height */
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 768px) {
   body {
    padding-top: 120px; /* reduce on mobile */
  }
  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 30px 20px 20px;
    padding-top: 10px;
  }

  .hero-image {
    order: -1;
  }

  .top-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-content {
    align-items: center;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 280px 20px 60px;
  }

  .hero-image {
    order: -1;
    margin-bottom: 24px;
  }

  .hero-content {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .top-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
   .hero {
    flex-direction: column;
    padding: 0px 20px 40px; /* ✅ cleaner spacing */
  }

  .hero-image {
    order: -1;
    margin-bottom: 24px;
  }

  .hero-content {
    order: 1;
    align-items: center;
    text-align: center;
  }
  .top-nav {
    display: none; /* hidden by default on mobile */
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .top-nav.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


/* HERO - Mobile */
@media (max-width: 600px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 500px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero {
    padding: 120px 20px 40px;
    flex-direction: column;
    gap: 24px;
  }

  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }
}


.top-nav a {
  position: relative;
  text-decoration: none;
  color: black;
  padding-bottom: 4px;
}

.top-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: black;
  transition: width 0.3s ease;
}

.top-nav a:hover::after,
.top-nav a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
    body {
    padding-top: 120px; 
  }
  .top-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 998;
  }

  .top-nav.show {
    display: flex;
  }
}

.token-distribution {
  padding: 4rem 1rem;
  text-align: center;
  justify-content: center;
  background-color: white;
}

.token-distribution .container {
  max-width: 800px;
  margin: 0 auto;
}

.token-distribution h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000;
}

.token-distribution p {
  font-size: 1rem;
  font-weight: 400;
  color: #111;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.claim-redemption-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.claim-redemption-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.claim-column,
.redemption-column {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.claim-column h2,
.redemption-column h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.claim-image img,
.redemption-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.arrow-divider {
  font-size: 24px;
  font-weight: bold;
  align-self: center;
  color: #999;
  display: none;
}

.claim-cta {
  margin-top: 40px;
  text-align: center;
}

.how-to-claim-btn {
  background: #0000ff;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.how-to-claim-btn:hover {
  background: #0000cc;
}

/* Responsive Design */
@media (max-width: 900px) {
  .claim-redemption-container {
    flex-direction: column;
    gap: 60px;
  }

  .arrow-divider {
    display: block;
  }

  .claim-column,
  .redemption-column {
    width: 100%;
  }
}
.claim-redemption-container {
  display: flex;
  flex-direction: row;

}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000;
  margin: 0;
  padding-top: 160px;
}

/* CLAIM + REDEMPTION SECTION */
.claim-redemption-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.claim-redemption-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.claim-column,
.redemption-column {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.claim-column h2,
.redemption-column h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}


.redemption-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.claim-image img {
   width: 1000px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2px;

}

.arrow-divider {
  font-size: 32px;
  font-weight: bold;
  align-self: center;
  color: #999;
  display: block;
  margin: 0 20px;
}

.claim-cta {
  margin-top: 40px;
  text-align: center;
}

.how-to-claim-btn {
  background: #0000ff;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.how-to-claim-btn:hover {
  background: #0000cc;
}

/* MOBILE - stack layout and rotate arrow */
@media (max-width: 900px) {
  .claim-redemption-container {
    flex-direction: column;
    gap: 60px;
  }

  .arrow-divider {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .claim-column,
  .redemption-column {
    width: 100%;
  }
}
.claim-phases-section {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  margin: 60px auto;
  max-width: 1200px;
}

.claim-phases-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.phases {
  flex: 1;
}

.accordion-item {
  margin-bottom: 24px;
}

.accordion-btn {
  font-size: 20px;
  font-weight: bold;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  cursor: pointer;
  position: relative;
  outline: none;
  border-bottom: 1px solid #ddd;
}

.accordion-btn::after {
  content: "▾";
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.accordion-btn.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  margin-top: 8px;
  font-size: 16px;
  color: #444;
}

.accordion-content.open {
  display: block;
}

.claim-image {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.claim-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .claim-phases-container {
    flex-direction: column;
    align-items: stretch;
  }

  .claim-image {
    order: -1;
    margin-bottom: 20px;
    justify-content: center;
  }
}

  .tokenomics-section {
    padding: 80px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tokenomics-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    gap: 80px;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .tokenomics-icon {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
  }

  .circle-primary, .circle-secondary {
    position: absolute;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    top: 40px;
  }

  .circle-primary {
    background: white;
    border: 12px solid black;
    left: 0;
    z-index: 2;
  }

  .circle-secondary {
    background: #f5f5f5;
    border: 12px solid #bbb;
    left: 80px;
    z-index: 1;
  }

  .circle-primary::before {
    content: "⋮";
    position: absolute;
    font-size: 48px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .circle-secondary::before {
    content: "⋮";
    position: absolute;
    font-size: 48px;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    color: #aaa;
  }

  .tokenomics-content {
    max-width: 600px;
  }

  .tokenomics-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .tokenomics-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .tokenomics-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-tokenomics-primary {
    background: blue;
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    border: none;
    border-radius: 5px;
  }

  .btn-tokenomics-secondary {
    background: white;
    color: black;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid black;
    border-radius: 5px;
  }

  .btn-tokenomics-primary:hover,
  .btn-tokenomics-secondary:hover {
    opacity: 0.85;
  }

.night-token-section {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.night-token-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.night-token-left {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.night-token-icon img {
  width: 150px;
  height: auto;
}

.night-token-right {
  flex: 2 1 400px;
  text-align: left;
}

.highlight {
  color: #00f;
  font-weight: bold;
}

.night-token-video {
  margin: 40px 0;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 320px;
  height: 180px;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper img {
  width: 100%;
  height: auto;
}

.play-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.night-token-cards {
  margin-top: 40px;
  position: relative;
}

.card-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.card {
  flex: 0 0 300px;
  background: #111;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  color: #fff;
  min-height: 250px;
}

.card-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.slider-controls {
  text-align: center;
  margin-top: 10px;
}

.slider-controls button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  font-size: 24px;
  padding: 5px 10px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 5px;
}

.read-whitepaper {
  margin-top: 40px;
}


.night-token-section {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 30px;
  font-family: sans-serif;
}

.night-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}

.night-header .text-content {
  max-width: 600px;
}

.night-header h2 span {
  font-size: 32px;
  color: #fff;
}

.night-header p {
  font-size: 18px;
  margin-top: 10px;
}

.night-header ul {
  margin-top: 20px;
  padding-left: 20px;
}

.night-header ul li {
  margin-bottom: 10px;
  list-style: disc;
}

.icon-container img {
  max-width: 180px;
}

.video-preview h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.video-box {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-btn {
  background: #1a1a1a;
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
}

.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
}
.card-slider::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 auto;
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  min-height: 160px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.card h4 {
  margin-bottom: 10px;
  color: #fff;
}

.whitepaper-button {
  text-align: center;
  margin-top: 40px;
}

.read-whitepaper {
  background: #0000ff;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .night-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-container {
    margin-top: 20px;
  }

  .card-slider {
    gap: 12px;
  }

  .card {
    width: 240px;
  }
}

.btn-blue {
  background: blue;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.token-section {
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  margin-top: 40px;
}
.token-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.token-header .token-text {
  flex: 1;
  min-width: 280px;
}
.token-header .token-icon img {
  width: 150px;
  height: auto;
  opacity: 0.3;
}
.slider-container {
  margin: 40px 0;
  position: relative;
}
.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
}
.card {
  min-width: 260px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  flex: 0 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}
.card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.slider-controls {
  position: absolute;
  right: 10px;
  bottom: -10px;
  display: flex;
  gap: 5px;
}
.slider-controls button {
  border: none;
  background: #000;
  color: white;
  font-size: 18px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.cta-button {
  text-align: center;
  margin-top: 30px;
}
.cta-button .btn {
  background: blue;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
@media (max-width: 768px) {
  .token-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .token-header .token-icon img {
    width: 100px;
  }
  .slider-controls {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }
}

body{
  padding: 40px 50px;
}

/* CARD STYLES */
.card {
  width: 300px;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Bright sections */
.token-section .card {
  background: #fff;
  color: #000;
}

/* Night section */
.night-token-section {
  background: #121212;
  color: #fff;
  padding: 40px 0;
}

.night-token-section .card {
  background: #1c1c1c;
  color: #fff;
  border: 1px solid #333;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* CARD SLIDER */
.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

/* SCROLL BUTTON */
.slider-controls {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
  margin-top: 10px;
  position: relative;
}

.slider-controls button {
  padding: 10px 15px;
  font-size: 1.2em;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-controls button:hover {
  background: #444;
}
.night-token-section {
  background: #121212;
  color: #fff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Night section content blocks */
.night-token-header,
.video-preview,
.night-token-cards,
.read-whitepaper {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
}

/* Cards alignment */
.night-token-cards .card-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
}

/* Buttons in the center */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.slider-controls button {
  padding: 10px 20px;
  font-size: 1.2em;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background: #444;
}

.read-whitepaper {
  margin: 30px auto 0;
  text-align: center;
}

.read-whitepaper .btn-blue {
  display: inline-block;
  padding: 12px 25px;
  /* background: #007bff; */
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

/* Dust section specific */
.token-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.token-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.token-text {
  max-width: 600px;
}

.token-icon img {
  width: 100px;
}


.card-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.card {
  flex: 0 0 300px;
  background: white;
  color: black;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}


.slider-controls.dust-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.slider-controls.dust-controls button {
  padding: 10px 20px;
  font-size: 1.5rem;
  background: #000;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.slider-controls.dust-controls button:hover {
  background: #333;
}


.cta-button {
  margin-top: 40px;
}

.cta-button .btn {
  padding: 12px 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.cta-button .btn:hover {
  background: #0056b3;
}
.token-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}


.token-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.token-icon img {
  width: 100px;
}

.token-text {
  max-width: 600px;
}


.slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.card-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  margin-bottom: 20px;
}

.card {
  flex: 0 0 280px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: black;
  text-align: left;
}


.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}


.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.slider-controls button {
  padding: 10px 20px;
  font-size: 1.5rem;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.slider-controls button:hover {
  background-color: #333;
}


.cta-button {
  margin-top: 40px;
}

.cta-button .btn {
  padding: 12px 30px;
  background: #007bff;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button .btn:hover {
  background: #0056b3;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.cancel-btn {
  background: transparent;
  border: 1px solid #000;
  padding: 8px 16px;
  cursor: pointer;
}

.submit-btn {
  background: #0000ff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
}
.modal input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}

.modal input[type="email"]:focus {
  border-color: #000; 
  outline: none;   
}

body{
  padding: 40px 50px;
}
.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
}
.card-slider::-webkit-scrollbar {
  display: none;
}
