html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v30-cyrillic_latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v30-cyrillic_latin-500.woff2') format('woff2');
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  margin: 0 auto;
  z-index: 50;
  background-color: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 8px 32px;
}
.logo-container { display: flex; align-items: center; }
.logo { width: 48px; height: 48px; object-fit: contain; }
.separator { width: 2px; height: 40px; rotate: 20deg; background-color: rgba(255,255,255,0.6); margin: 0 16px; }
.version { color: white; font-size: 1.2rem; font-weight: bold; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-link:hover {
  transform: scale(1.01);
  opacity: 0.85;
}
body.scrolled .navbar { background-color: rgba(0,0,0,0.8);}
body.scrolled .nav-link { transform: scale(0.985); text-decoration-color: white;}
.menu-icon { display: none; cursor: pointer; }
.icon { width: 32px; height: 32px; stroke-width: 2; }
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
  fill: currentColor;
  margin-right: 0.3em;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropbtn {
  background: rgba(14,165,233,0.14);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 15px;
  opacity: 0.95;
  padding: 7px 18px 7px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  box-shadow: 0 3px 16px rgba(14,165,233,0.12);
  transition: background 0.18s, box-shadow 0.22s, color 0.18s;
  outline: none;
}
.nav-dropbtn .drop-arrow {
  display: inline-block;
  margin-left: 1px;
  width: 15px;
  height: 15px;
  transition: transform 0.5s cubic-bezier(.51,.4,.23,1.4);
  position: relative;
}
.nav-dropbtn .drop-arrow::after {
  content: '';
  display: block;
  width: 9px; height: 9px;
  border-right: 2.3px solid #fff;
  border-bottom: 2.3px solid #fff;
  border-radius: 1.5px;
  transform: rotate(45deg);
  position: absolute; left: 3px; top: 2px;
  transition: border-color 0.21s;
}
.nav-dropbtn.buy-btn { background: linear-gradient(90deg,#0ea5e9 0%,#38bdf8 90%);}
.nav-dropbtn.stake-btn { background: linear-gradient(90deg,#0ea5e9 0%,#22d3ee 90%);}
.nav-dropbtn:hover,
.nav-dropbtn.active,
.nav-dropdown.open .nav-dropbtn {
  background: rgba(14,165,233,0.30);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14,165,233,0.19);
}
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.dropdown-hoverzone {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 55px 28px 55px;
  z-index: 999;
  display: none;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-hoverzone,
.nav-dropdown:focus-within .dropdown-hoverzone,
.nav-dropdown.open .dropdown-hoverzone {
  display: block;
  pointer-events: auto;
}

.dropdown-content {
  position: static !important;
  pointer-events: auto;
  min-width: 330px;
  background: rgba(17,24,39,0.99);
  border-radius: 1.3em;
  box-shadow: 0 14px 44px 0 rgba(14,165,233,0.10), 0 1.5px 7px 0 rgba(0,0,0,0.10);
  z-index: 1000;
  padding: 15px 15px 15px 15px;
  backdrop-filter: blur(12px);
  animation: dropdownFade 0.38s cubic-bezier(.7,.1,.17,1) both;
}
@keyframes dropdownFade {
  from {opacity:0;transform:translateY(-18px) scale(0.96);}
  to {opacity:1;transform:translateY(0) scale(1);}
}
.dropdown-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  grid-template-rows: repeat(9, 1fr); 
  gap: 8px 12px;
  max-width: 100%;
}
@media (max-width: 1300px) {
  .dropdown-grid {
    grid-template-rows: repeat(12,1fr);
  }

}

.stake-dropdown .dropdown-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, 1fr); 
  grid-auto-columns: max-content;
  gap: 8px 13px;
}

.dropdown-content .dropdown-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,0.04);
  border-radius: 9px;
  padding: 10px 15px;
  color: #fff;
  font-size: 1.07rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0.5px 0px rgba(14,165,233,0.07);
}
.dropdown-content .dropdown-item:hover {
  background: linear-gradient(90deg,#0ea5e9 20%,#38bdf8 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(14,165,233,0.12);
  transform: scale(1.01);
}
.dropdown-content .dropdown-item img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0.5px 3px rgba(14,165,233,0.09);
  padding: 2px;
}

@media (max-width: 700px) {
  .dropdown-hoverzone {
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 5vw 16px 5vw;
  }
  .dropdown-content {
    min-width: 90vw;
    padding: 16px 8px 10px 8px;
  }
  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    gap: 14px;
  }
  .dropdown-content {
    min-width: unset;
  }
  .dropdown-hoverzone {
    left: 0;
    transform: none;
    width: 100vw;
    padding: 4px 0 7px 0;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    circle at center,
    #0f0f0f 0%,
    #000000 55%
  );
  color: white;
  text-align: center;
  padding: 110px 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: top left;
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  pointer-events: none;
}

.background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px 0;
  position: relative;
  text-align: left;
}

.hero-left,
.hero-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-left {
  max-width: 480px;
  z-index: 2;
}
.hero-logo {
  width: 100px;
  height: 100px;
  margin-bottom: -10px;
}
.hero-left h1 {
  font-size: 2.65rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
  font-family: var(--font-cool, "Montserrat", sans-serif);
}
.hero-desc {
  font-size: 1.15rem;
  opacity: 0.82;
  margin-bottom: 28px;
  color: #e2e8f0;
  font-family: var(--font-body, "Roboto", sans-serif);
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, #0EA5E9 10%, rgb(0, 177, 177) 100%);
  color: #fff;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.05rem;
  margin-bottom: 30px;
  text-decoration: none;
  transition: background 0.22s;
  box-shadow: 0 2px 16px rgba(14,165,233,0.11);
}
.hero-cta:hover {
  background: linear-gradient(90deg, #38bdf8 5%, #0EA5E9 90%);
}
.hero-trust {
  margin-bottom: 22px;
}
.hero-trust-number {
  color: #0ea5e9;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(14,165,233,0.10);
  border-radius: 7px;
  padding: 6px 14px;
  display: inline-block;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 10px;
  margin-top: 4px;
}
.hero-badge {
  background: rgba(255,255,255,0.09);
  color: #fff;
  border-radius: 14px;
  padding: 5px 15px 5px 10px;
  font-size: 0.96rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(14,165,233,0.12);
  transition: background 0.2s;
}
.hero-badge i {
  font-size: 1.05em;
}
.hero-badge:hover {
  background: rgba(14,165,233,0.18);
}

.hero-right {
  max-width: 620px;
  z-index: 2;
  align-items: flex-start;
}

.hero-right h1,
.hero-right h2 {
  text-align: left;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 44px;
    padding-top: 10px;
  }
  .hero-left, .hero-right {
    align-items: flex-start;
    max-width: 100%;
  }
  .hero-left {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    gap: 18px;
    padding: 0 7px;
  }
  .hero-logo { width: 40px; height: 40px; }
  .hero-left h1 { font-size: 1.5rem; }
  .hero-desc { font-size: 1.0rem; }
  .hero-cta { font-size: 0.98rem; padding: 10px 22px;}
  .hero-badge { font-size: 0.91rem; }
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero h2 {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 auto 40px;
}
.hero p {
 font-size: 0.94rem;
 max-width: 800px;
 opacity: 0.8;
 margin: 0 auto;
}

.video-container {
  position: relative;
  max-width: 100%;
  margin: 25px auto 50px;
}

#video {
  width: 85%;
  margin: 0 auto;
  height: auto;
  border-radius: 6px;
  display: block;
}

#screenshot {
  width: 85%;
  margin: 0 auto;
  height: auto;
  border-radius: 6px;
  display: none;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  transition: opacity 0.3s ease;
  font-weight: bold;
  text-decoration: none;
}

.download-btn {
  background-color: #fff;
  color: #000;
}

.learn-btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.download-btn:hover,
.learn-btn:hover {
  opacity: 0.8;
}

.info-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0 20px;
  margin-top: 40px;
}

#background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .mobile-menu {
    display: block;
  }
}

@keyframes fastRockingVertical {
  0% {
    transform: rotate(0deg) translateY(0) scaleX(1) scaleY(1);
  }
  25% {
    transform: rotate(4deg) translateY(-5px) scaleX(1.03) scaleY(0.98);
  }
  50% {
    transform: rotate(1deg) translateY(-4px) scaleX(1) scaleY(0.95);
  }
  75% {
    transform: rotate(-4deg) translateY(5px) scaleX(1.03) scaleY(0.98);
  }
   85% {
    transform: rotate(5deg) translateY(-3px) scaleX(1.04) scaleY(0.93);
  }
  100% {
    transform: rotate(0deg) translateY(0) scaleX(1) scaleY(1);
  }
}

.video-container {
  position: relative;
  max-width: 100%;
  animation: fastRockingVertical 1.7s ease-in-out;
}

.swap-cashback-text,
.swap-cashback-image,
.metrics-frame,
.stake-earn-text,
.stake-earn-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.section-inside {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.section-inside-bg {
  position: absolute;
  inset: 0;
  background-color: #2a2558;
  background-image:
    linear-gradient(to bottom, #000 0%, transparent 100%),
    linear-gradient(to top,   #000 0%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 150px, 100% 150px;
  background-position: top left, bottom left;
  z-index: 0;
  pointer-events: none;
}

.section-inside-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 40px;
  margin-bottom: 70px;
}
.tabs-title {
  flex: 1 1 300px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.tabs-subtitle {
  flex: 1 1 400px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  padding: 21px;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  fill: currentColor;
}
.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.card-1 { background: linear-gradient(135deg, #7f00ff, #e100ff); }
.card-2 { background: linear-gradient(135deg, #00b09b, #96c93d); }
.card-3 {  background: linear-gradient(135deg, #e4b621 0%, #c94824 100%); }
.card-4 { background: linear-gradient(135deg, #43cea2, #185a9d); }
.card-5 { background: linear-gradient(135deg, #ff416c, #ff4b2c); }
.card-6 { background: linear-gradient(135deg, #141e30, #243b55); }







.wallet-downloads-section {
  position: relative;
  padding: 30px 0 40px;
  overflow: hidden;
}

.wallet-decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: fadeScale 1s forwards ease;
}



@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

.wallet-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.wallet-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: #fff;
}

.wallet-subtitle {
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto 40px;
  color: #9ca3af;
}

.wallet-downloads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .wallet-downloads-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wallet-card {
  position: relative;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}

.wallet-card:hover {
  transform: scale(1.02) rotateX(-3deg) rotateY(3deg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.wallet-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,255,255,0.15), rgba(255,0,255,0.15));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events:none;
}

.wallet-card:hover .wallet-card-overlay {
  opacity: 1;
}

.wallet-os-icon {
  font-size: 48px;
  margin-bottom: 10px;
  width: 1.4em;
  height: 1.4em;
  fill: currentColor;
}

.os-icon-windows { color: #2563eb; }
.os-icon-macos   { color: #7488b1; }
.os-icon-linux   { color: #4ade80; }

.your-os {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2563eb;
  padding: 2px 6px;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
}

.wallet-card h3 {
  font-size: 1.15rem;
  margin: 6px 0 4px;
  color: #fff;
}

.wallet-card p {
  margin: 2px 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

.wallet-card p span {
  color: #fff;
}

.wallet-description {
  color: #d1d5db;
  margin-top: 12px;
}

.wallet-download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.wallet-download-btn:hover {
  background: linear-gradient(90deg, #0ea5e9, #60a5fa);
}

.wallet-wave-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: 60px;
}

.wallet-wave-wrapper svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}






.prices {
  margin-top: 80px;
}

.prices-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 35px;
  text-align: left;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .prices-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .prices-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .prices-grid { grid-template-columns: 1fr; }
}

.price-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.price-card:hover {
  box-shadow: 0 0 18px rgba(233, 119, 119, 0.5);
}

.price-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.price-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-symbol {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.price-value {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-change {
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.price-up {
  color: #4caf50;
}
.price-down {
  color: #f44336;
}

.price-btn {
  margin-top: auto;
  padding: 8px 16px;
  border: 1px solid #f97316;
  border-radius: 6px;
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.4s ease, color 0.4s ease;
}
.price-btn:hover {
  background: rgba(255, 122, 0, 0.1);
  color: #f1e2d3;
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #0f0f0f 0%, #000000 25%);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: top left;
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
  pointer-events: none;
}

.cta-content {
  max-width: 1150px;
  width: 100%;
  z-index: 1;
  padding: 0 20px;
  position: relative;
}

.cta h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta h2 {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 6px;
  transition: opacity 0.3s ease;
  font-weight: bold;
  text-decoration: none;
}

.documentation-btn {
  background-color: #fff;
  color: #000;
}

.github-btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.documentation-btn:hover,
.github-btn:hover {
  opacity: 0.8;
}

.cta-buttons .fa {
  margin-right: 8px;
}

#cta-background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

@media (max-width: 768px) {
  .cta h1 {
    font-size: 2.5rem;
  }
  .cta h2 {
    font-size: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  mix-blend-mode: screen;
}



.section-accent-wrapper {
  position: relative;
    background: linear-gradient(
    180deg,
    rgba(17,24,39,0)   0%,
    rgba(17,24,39,0.4) 10%,
    rgba(17,24,39,0.4) 90%,
    rgba(17,24,39,0)   100%
  );
  padding: 80px 0;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.swap-cashback-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 0px;
  padding: 40px;
}

.swap-cashback-text {
  flex: 1;
}

.swap-cashback-heading {
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.swap-cashback-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.swap-cashback-image {
  flex: 1;
  text-align: right;
}

.swap-cashback-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
}


@media (max-width: 768px) {
  .swap-cashback-section {
    flex-direction: column;
    text-align: center;
  }
  .swap-cashback-image {
    margin-top: 24px;
    text-align: center;
  }
}



.stake-earn-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 0px;
  padding: 40px;
}

.stake-earn-image {
  flex: 1;
  text-align: left;
}

.stake-earn-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
}

.stake-earn-text {
  flex: 1;
}

.stake-earn-heading {
  font-size: 2.7rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 16px;
}

.stake-earn-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}


@media (max-width: 768px) {
  .stake-earn-section {
    flex-direction: column;
    text-align: center;
  }
  .stake-earn-image {
    margin-bottom: 24px;
  }
}






.metrics-frame {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(17, 24, 39, 0.45);

  border-radius: 0;
  padding: 24px 12px;

}


.metric-card {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}


.metric-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;            
  bottom: 20%;       
  right: 0;          
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}


.metric-value {
  font-size: 2.1rem;
  font-weight: 500;
  color: #0ea5e9;
}
.metric-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}


@media (max-width: 768px) {
  .metrics-frame {
    flex-direction: column;
    gap: 24px;
  }
  .metric-card:not(:last-child)::after {
    display: none;
  }
}


.footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 32px 0 16px;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(120deg, #111315 0%, #181b1f 70%);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 4px
    );
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: stretch;
}

.footer-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
}

.footer-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-nav {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
}

.footer-link {
  color: rgba(255,255,255,0.83);
  text-decoration: none;
  transition: color 0.22s, filter 0.19s;
  padding: 2px 0;
}
.footer-link:hover {
  color: #fff;
  filter: brightness(1.25);
}

.footer-social {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.footer-social-link {
  color: inherit;
  transition: color 0.18s;
}
.footer-social-link:hover {
  color: #0ea5e9;
}

.footer-separator {
  max-width: 1120px;
  margin: 32px auto 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-wallets-4col {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin: 30px auto 0;
  width: 90%;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 120px;
}
.footer-wallet-link {
  color: rgba(255,255,255,0.77);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed transparent;
  transition: color 0.18s, border-bottom-color 0.18s, filter 0.15s;
  padding: 3px 0;
}
.footer-wallet-link:hover {
  color: #fff;
  border-bottom: 1px dashed #0ea5e9;
  filter: brightness(1.23);
}

@media (max-width: 900px) {
  .footer-wallets-4col { gap: 16px; }
  .footer-col { min-width: 90px; }
}
@media (max-width: 600px) {
  .footer-wallets-4col { flex-direction: column; align-items: center; }
  .footer-col { min-width: 100px; gap: 10px; }
}
