body {
  cursor: crosshair;
  margin: 0;
  background: #000;
  font-family: Arial;
}

/* 🌌 dots */
#dots {
  position: fixed;
  inset: 0;
  z-index: -1;   /* IMPORTANT */
  pointer-events: none;
}
.dot {
  position: absolute;
  top: -10px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: fall linear forwards;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}

/* 🧊 header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  padding: 20px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  z-index: 1000;

  box-sizing: border-box;
}
/* logo */
#logo {
  display: inline-block;
  cursor: crosshair;
  color: #ffffffb8;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              text-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.6s ease;
  will-change: transform;
}

#logo:hover {
  transform: translateY(-2px) scale(1.03);
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255,255,255,0.25);
}
@keyframes blink {
  0%,50% { opacity: 1; }
  51%,100% { opacity: 0; }
}

/* NAV desktop */

/* NAV DESKTOP (SAFE FLEX) */
nav {
  display: flex;
  gap: 25px;
  align-items: center;

  /* IMPORTANT FIX */
  position: relative;
  right: auto;
  flex-wrap: nowrap;
}

/* links */
nav a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  position: relative;
  transition: 0.3s;
}

/* hover */
nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* underline animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* hero */
.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  margin: 10px;
  z-index: 1;
}

.hero h2 {
  font-size: 80px;
  margin: 0;
}

.subtitle {
  margin-top: 12px;
  font-size: 20px;
  color: rgba(255,255,255,0.55);
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 20px 90px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.7);
}

/* hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* X animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

/* mobile */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 240px;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1500;
  }

  nav.active {
    right: 0;
  }
}

/*scroll fade*/
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*title */
.why-title {
  font-size: 65px;
  font-weight: bold;
  letter-spacing: 1px;
}

.subtitle.reveal {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* clickable image logo */
.logo-icon img {
  width: 50px;   /* adjust size */
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* hover animation */
.logo-icon img:hover {
  transform: scale(1.15) rotate(-5deg);
}

.how-it-works {
  text-align: center;
  color: white;
  padding: 100px 20px;
}

.section-title {
  font-size: 48px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* keeps it responsive */
}

.step {
  width: 220px;
  text-align: center;
}

.circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.step h3 {
  margin: 10px 0;
  font-size: 20px;
}

.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.arrow {
  font-size: 30px;
  color: rgba(255,255,255,0.4);
}

/* mobile */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

.end {
  text-align: center;
  color: white;
  padding: 120px 20px;
}

.end h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.end-buttons {
  display: flex;
  justify-content: center;
}

.end .btn {
  padding: 16px 50px;
}

/* footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  padding: 40px 20px;
  margin-top: 100px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  color: white;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* logo + text row */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.footer-brand img:hover {
  cursor: crosshair;
  transform: scale(1.1) rotate(-5deg);
}

.footer-brand h3 {
  margin: 0;
  font-size: 22px;
}

/* text */
.footer-left p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
}

/*mobile*/
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-brand {
    justify-content: center;
  }
}

.pricing{
  margin-top: 140px;

  display:flex;
  justify-content:center;
  align-items:stretch;
  gap:40px;
padding: 60px 20px 10px;

  max-width:1200px;
  margin-left:auto;
  margin-right:auto;

  flex-wrap:nowrap;     /* FORCE ONE LINE */
}

.card{
  color: white;
  padding:35px;
  border-radius:20px;
  background:rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  position:relative;
  transition:0.4s;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  flex:1;               /* equal width */
  min-height:520px;     /* MAKE THEM TALLER */
}

.card:hover{
  transform:translateY(-10px);
  border-color:white;
}

.card h3{
  color: white;
  letter-spacing:2px;
  opacity:0.7;
}

.card h2{
  color: white;
  font-size:42px;
  margin:15px 0;
}
.card h1{
  color: white;
  font-size:42px;
  margin:15px 0;
}

.card h2 span{
  font-size:14px;
  opacity:0.6;
}

.card p{
  opacity:0.6;
  margin-bottom:15px;
}

.card ul{
  list-style:none;
  margin-bottom:20px;
}

.card ul li{
  margin:8px 0;
  opacity:0.8;
}

.card button{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:none;
  background:white;
  color:black;
  font-weight:600;
  cursor:pointer;
}

.popular{
  border:2px solid white;
}

.badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:white;
  color:black;
  padding:4px 12px;
  font-size:12px;
  border-radius:20px;
  font-weight:700;
}

.card h1{
  display:flex;
  align-items:center;
  gap:12px;          /* space between icon and text */
}

.card h1 img{
  width:70px;        /* make icon smaller */
  height:70px;
  object-fit:contain;
}

/* floating currency button */
.currency-wrap{
  display:flex;
  justify-content:flex-end;  /* push to right */
  max-width:1200px;
  margin: 20px auto 60px;
  padding: 0 20px;
}

#currencyToggle{
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: white;
  color: black;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* appears after scroll */
#currencyToggle.show-toggle{
  opacity: 1;
  transform: translateY(0);
}

.section-divider{
  width: 90%;
  height: 2px;
  margin: 60px auto 30px auto;
  background: linear-gradient(
    to right,
    transparent,
    #6c5ce7,
    #00d2ff,
    transparent
  );
  opacity: 0.7;
}

.between-line{
  color: white;
  text-align: center;
  margin: 40px 0 10px 0;
  font-size: 18px;
  opacity: 0.85;
}

/* Allow hearts to appear from button */
.card button{
  position: relative;
  overflow: hidden;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* On hover → light pink */
.card button:hover{
  background-color: #ffb6c1;   /* light pink */
  color: #000;
  box-shadow: 0 0 12px #ffb6c1;
}

/* Heart style */
.floating-heart{
  position: absolute;
  bottom: 6px;
  font-size: 14px;
  pointer-events: none;
  animation: floatHeart 1.6s linear forwards;
}

@keyframes floatHeart{
  0%{
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100%{
    transform: translateY(-120px) scale(1.8);
    opacity: 0;
  }
}
/* override ONLY discord button */
.card .discord-btn{
  background: #5865F2 !important;
  color: white !important;
}

/* hover */
.card .discord-btn:hover{
  background: #4752c4 !important;
  color: white !important;
  box-shadow: 0 0 12px rgba(88,101,242,0.6);
}
.donation-extra{
  display: flex;
  justify-content: center;
  align-items: center;   /* 👈 ADD THIS */
  margin: 80px 20px;
}
/* smaller card */
.small-card{
  max-width: 260px;   /* shrink width */
  padding: 20px;      /* less padding */
  min-height: auto;   /* remove tall height */
  align-items: center;
  justify-content: center;
}

/* discord button */
.discord-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 10px;

  border-radius: 8px;
  border: none;

  background: #5865F2; /* discord color */
  color: white;
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

/* icon size */
.discord-btn i{
  font-size: 18px;
}

/* hover */
.discord-btn:hover{
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(88,101,242,0.6);
}

/* heading style */
.support-heading{
  font-size: 28px;   /* smaller than main cards */
  margin-bottom: 15px;
  text-align: center;
}

/* ===== DONATE PAGE MOBILE FIX ===== */

/* stop sideways drag */
html, body{
  max-width:100%;
  overflow-x:hidden;
}

/* make all main blocks center automatically */
header,
.pricing,
.currency-wrap,
.donation-extra,
.section-divider,
.between-line,
.footer{
  width:100%;
  max-width:1200px;
  margin-left:auto !important;
  margin-right:auto !important;
  box-sizing:border-box;
  padding-left:20px;
  padding-right:20px;
}

/* CRITICAL: allow cards to wrap on small screens */
@media (max-width: 900px){
  .pricing{
    flex-wrap:wrap !important;
    gap:25px;
  }

  .card{
    flex:1 1 320px;
    min-height:auto;
  }
}

/* stack cards nicely on phones */
@media (max-width:600px){
  .pricing{
    flex-direction:column;
    align-items:center;
  }

  .card{
    width:100%;
    max-width:420px;
  }
}

/* fix header spacing on mobile */
@media (max-width:768px){
  header{
    padding:15px 20px;
  }
}

/* center text that was stuck left */
@media (max-width:768px){
  .card,
  .between-line{
    text-align:center;
  }
}

/* ===== FIX: cards going out of screen ===== */

html, body{
  overflow-x: hidden;
}

/* allow flex items to shrink (critical) */
.pricing > *{
  min-width: 0 !important;
}

.card{
  min-width: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

/* proper wrapping on smaller screens */
@media (max-width: 900px){
  .pricing{
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 25px;
  }

  .card{
    flex: 1 1 320px;
    max-width: 420px;
  }
}

/* ===== HEADER WIDTH FIX ===== */
header{
  left: 0;
  right: 0;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 20px;
  padding-right: 20px;
}

/* Disable text selection across the entire site */
body {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Standard syntax for Chrome, Firefox, and Opera */
}