/* Dark Neon Responsive - vanilla CSS */
:root {
  --bg: #061018;
  --panel: rgba(255, 255, 255, 0.03);
  --muted: rgba(255, 255, 255, 0.55);
  --neon: #7cff6e;
  --neon-2: #00ff9f;
  --glass-border: rgba(124, 255, 110, 0.06);
  --card-shadow: 0 18px 60px rgba(2, 10, 12, 0.6);
  --max-width: 1200px;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  height: 100%;

}

body {
  background-color: #111a16;
  color: #e9fff0;
  min-height: 100vh;
  line-height: 1.4;
}


/* LAYOUT helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  backdrop-filter: blur(8px) saturate(120%);
  padding: .9rem 1rem;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--neon);
  font-weight: 700
}

.brand svg {
  width: 28px;
  height: 20px;
  opacity: .96;
  filter: drop-shadow(0 6px 20px rgba(0, 255, 150, 0.04))
}

.brand span {
  font-family: 'Orbitron', sans-serif
}

/* hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: .2rem
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--neon);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .25s
}

 .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

/* nav-right */
.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center
}

.nav-right a {
  color: var(--muted);
  text-decoration: none;
  padding: .45rem .7rem;
  border-radius: 8px;
  font-weight: 600
}

.nav-right a:hover {
  color: #eaffef;
  transform: translateY(-2px)
}

.nav-right {
  transition: all .3s ease;
}

.register {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  color: var(--neon);
  border: 1px solid var(--glass-border);
  padding: .45rem .8rem;
  border-radius: 10px;
  font-weight: 700
}

.btn-outline {
  background: var(--neon);
  color: #00120a;
  border: 1px solid var(--glass-border);
  padding: .45rem .8rem;
  border-radius: 10px;
  font-weight: 700;
}

/* HERO */
.hero {
  padding: 2.6rem 1rem;
  height: 100%;
  width: 100%;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 2rem;
  align-items: center;
  margin-top: 40px;
}

.hero-left h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.neon {
  background: linear-gradient(20deg, #c7ff9f, #7eff6f 40%, #9dffbe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 40px rgba(0, 255, 150, 0.04);
  line-height: 200;
}

.lead {
  font-size: 1.5rem;
  color: var(--muted);
  margin-top: .9rem;
  max-width: 48ch;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: .9rem;
  align-items: center;
}

.btn-primary {

  background: var(--neon);
  color: #00120a;
  padding: .8rem 1.2rem;
  border-radius: 28px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(124, 255, 110, 0.06);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-ghost {
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: .55rem .9rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

/* features inline */
.features-inline {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  flex-wrap: wrap
}

.pill {
  display: none;
  background: rgba(255, 255, 255, 0.02);
  padding: .4rem .7rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .86rem;
  border: 1px solid rgba(255, 255, 255, 0.02)
}

/* floating art */
.floating-art {
  width: 720px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.floating-art img {
  width: 690px;
  height: 690px;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-4px) rotate(2deg)
  }

  100% {
    transform: translateY(0) rotate(0)
  }
}

/* TRUSTED SECTION */
.trusted {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 40px;
}



.logos-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.logos-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.logo-card {
  flex: 0 0 100px;
  margin-right: 15px;
  border-radius: 8px;
  padding: 10px;
  text-align: center;

}

.logo-card svg {
  max-width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
}

.logo-card p {
  font-size: 12px;
  margin: 0;
}

/* CRYPTO COINS */




.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  touch-action: pan-y;
  margin-top: 80px;
  /* Allows vertical scroll while swiping horizontally */
}

.carousel-inner {
  display: flex;
}

.card {
  flex: 0 0 200px;
  margin-right: 15px;
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card h3 {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 10px;
}

.card .coin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffd700;
  /* Placeholder for coin icons; replace with actual images */
  margin: 0 auto 10px;
}

.card p {
  margin: 5px 0;
  font-size: 16px;
}

.card .price {
  font-weight: bold;
  font-size: 18px;
}

/* Different colors for placeholder coin icons */
.card:nth-child(1) .coin-icon {
  background-color: #f7931a;
}

/* Bitcoin orange */
.card:nth-child(2) .coin-icon {
  background-color: #627eea;
}

/* Ethereum blue */
.card:nth-child(3) .coin-icon {
  background-color: #a9acaa;
}

/* Litecoin silver */
.card:nth-child(4) .coin-icon {
  background-color: #e6007a;
}

/* Polkadot pink */
.card:nth-child(5) .coin-icon {
  background-color: #00a478;
}

/* Solana green */
.card:nth-child(6) .coin-icon {
  background-color: #2a5ada;
}

/* Chainlink blue */
.card:nth-child(7) .coin-icon {
  background-color: #f7931a;
}

/* Duplicate */
.card:nth-child(8) .coin-icon {
  background-color: #627eea;
}

.card:nth-child(9) .coin-icon {
  background-color: #a9acaa;
}

.card:nth-child(10) .coin-icon {
  background-color: #e6007a;
}

.card:nth-child(11) .coin-icon {
  background-color: #00a478;
}

.card:nth-child(12) .coin-icon {
  background-color: #2a5ada;
}

/* Controls */
.carousel-controls {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-btn {

  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: none;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-btn:active {
  display: none;
  transform: scale(0.95);
}


/* REASONS */
.reasons-container {
  margin-top: 100px;
  padding: 0 1rem;
}

.reasons-container h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
}

.reasons-container > p {
  color: #aaaaaa;
  text-align: center;
  margin-bottom: 2rem;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.reason {
  padding: 2rem 1rem;
  line-height: 1.6;
  text-align: center;
}

.reason svg {
  fill: rgba(224, 224, 224, 0.874);
  height: 30px;
  width: 30px;
  margin: 0 auto;
}

.reason h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-top: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.reason p {
  color: #aaaaaa;
  margin-top: .5rem;
}

/* DEPOSIT */
.Deposit {
  margin-top: 80px;
  padding: 2.6rem 1rem;
}

.deposit-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.Deposit-left h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.deposit-neon {
  text-transform: capitalize;
  background: linear-gradient(20deg, #c7ff9f, #7eff6f 40%, #9dffbe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 40px rgba(0, 255, 150, 0.04);
}

.deposit-lead {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #aaaaaa;
  margin-top: .9rem;
  max-width: 48ch;
}

.other {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #aaaaaa;
  max-width: 48ch;
  margin-top: 30px;
}

.dep {
  width: 100%;
  max-width: 490px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dep img {
  width: 100%;
  height: auto;
  animation: floatY 6s ease-in-out infinite;
}

/* ABOUT US */
.about-us {
  margin-top: 80px;
  padding: 2.6rem 1rem;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-left h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.about-neon {
  text-transform: capitalize;
  background: linear-gradient(20deg, #c7ff9f, #7eff6f 40%, #9dffbe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 40px rgba(0, 255, 150, 0.04);
  
}

.about-lead {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #aaaaaa;
  margin-top: .9rem;
  max-width: 700px;
}

.about {
  width: 100%;
  max-width: 490px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about img {
  width: 100%;
  height: auto;
  animation: floatY 6s ease-in-out infinite;
}


/* FOOTER */
.footer {
  background: black;
  margin-top: 2.6rem;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 1rem;
}

.brand-col {
  flex: 1;
  min-width: 220px;
}

.brand.big {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--neon);
  font-weight: 800;
}

.socials {
  margin-top: 1rem;
  display: flex;
  gap: .6rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
}

.links-grid {
  display: flex;
  gap: 1.4rem;
  flex: 1;
  min-width: 240px
}

.links-grid div h5 {
  color: var(--neon);
  margin-bottom: .6rem;
}

.links-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: .3rem 0;
}

.subscribe-col {
  min-width: 220px;
}

.subscribe-form {
  display: flex;
  gap: .5rem;
  margin-top: .6rem;
}

.subscribe-form input {
  flex: 1;
  padding: .6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  background: transparent;
  color: #eaffef;
}

.subscribe-form button {
  padding: .6rem 0.9rem;
  border-radius: 8px;
  border: none;
  background: var(--neon);
  font-weight: 800;
  color: #00120a;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.small-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
}

/* RESPONSIVE RULES */
/* Large Tablets and Small Desktops */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
  }

  .floating-art {
    order: -1;
    height: 300px;
    width: 300px;
  }

  .floating-art img {
    order: -1;
    height: 550px;
    width: 550px;
  }
  
  .deposit-inner,
  .about-inner {
    gap: 2rem;
  }

}


@media (max-width: 1400px) {
 .floating-art {
    order: -1;
    height: 300px;
    width: 300px;
  }

  .floating-art img {
    order: -1;
    height: 550px;
    width: 550px;
  }
}


/* Tablets */
@media (max-width: 960px) {
  /* Navigation */
  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 16, 24, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);

  }
  
  .nav-right.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 1.5rem 1rem;
    min-height: auto;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .floating-art {
    display: none;
    order: -1;
    height: 300px;
  }
  
  /* Deposit and About */
  .deposit-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .deposit-lead{
    max-width: 700px;
  }
  
  .deposit-right {
    order: -1;
  }
  
  .dep,
  .about {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-lead{
   max-width:  700px;
  }
  
  /* Reasons */
  .reasons {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .links-grid {
    grid-column: span 1;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 895px) {

}


/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  /* Carousel */
  .carousel {
    padding: 0 0.5rem;
    margin-top: 60px;
  }
  
  .card {
    flex: 0 0 180px;
    padding: 12px;
  }
  
  .card h3 {
    font-size: 13px;
  }
  
  .card p {
    font-size: 14px;
  }
  
  .card .price {
    font-size: 16px;
  }
  
  .card .coin-icon {
    width: 35px;
    height: 35px;
  }
  
  /* Logo Carousel */
  .logo-card {
    flex: 0 0 80px;
    padding: 8px;
  }
  
  .logo-card svg {
    max-width: 40px;
    height: 50px;
  }
  
  .logo-card p {
    font-size: 10px;
  }
  
  /* Reasons */
  .reasons-container {
    margin-top: 60px;
  }
  
  .reasons {
    gap: 1.5rem;
  }
  
  /* Sections */
  .Deposit,
  .about-us {
    margin-top: 60px;
  }
}

/* Mobile Portrait */
@media (max-width: 520px) {
  /* Hero */
  .hero {
    padding: 1rem;
  }
  
  .hero-left h1 {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .floating-art {
    height: 200px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
  
  /* Pills */
  .features-inline {
    justify-content: center;
  }
  
  .pill {
    font-size: 0.75rem;
    padding: .3rem .6rem;
  }
  
  /* Carousel */
  .card {
    flex: 0 0 150px;
    padding: 10px;
  }
  
  .card h3 {
    font-size: 12px;
  }
  
  .card .coin-icon {
    width: 30px;
    height: 30px;
  }
  
  /* Reasons */
  .reasons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .reason {
    padding: 1.5rem 1rem;
  }
  
  /* Deposit and About */
  .dep,
  .about {
    max-width: 300px;
  }
  
  /* Footer */
  .links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .small-links {
    flex-wrap: wrap;
  }
  
  .socials a {
    width: 32px;
    height: 32px;
  }
  
  .subscribe-form {
    max-width: 100%;
  }
  
  .subscribe-form input {
    max-width: 100%;
  }
  
  .subscribe-form button {
    max-width:100%;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .hero-left h1 {
    font-size: 1.5rem;
  }
  
  .brand span {
    font-size: 1rem;
  }
  
  .nav {
    padding: .7rem .5rem;
  }
  
  .card {
    flex: 0 0 140px;
  }
  
  .floating-art {
    height: 180px;
  }

.subscribe-form {
  display: flex;
  flex-direction: column;
    max-width: 100%;
  }
  
  .subscribe-form input {
    max-width: 100%;
  }
  
  .subscribe-form button {
    max-width: 100%;
  }

}