/* ================= RESET & BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.menu-open {
  overflow: hidden;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0f19;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #00ffcc, #00c2ff);
  color: #000;
  box-shadow: 0 0 25px rgba(0,255,204,0.4);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,255,204,0.7);
}

.btn--secondary {
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
  background: rgba(255,255,255,0.1);
}

.btn--large {
  padding: 16px 34px;
}

/* ================= HEADER / NAV ================= */
/* ================= NAVBAR ================= */
.header {
  position: sticky;
  top: 0;
  background: rgba(11,15,25,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.nav__logo {
  font-size: 26px;
  font-weight: 800;
  color: #00ffcc;
}


.nav__tagline {
  font-size: 12px;
  opacity: 0.7;
}

.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav__link {
  font-weight: 500;
  position: relative;
}

/* Toggle icons */
.nav__toggle,
.nav__close {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* ================= MOBILE MENU ================= */
@media (max-width: 900px) {

  .nav__logo {
    margin-left: 10px;   /* adds space from left edge */
  }

  .nav {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(11,15,25,0.95);
    backdrop-filter: blur(12px);
    padding: 80px 30px;
    transition: right 0.4s ease;
    z-index: 2000;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 25px;
  }

  .nav__link {
    font-size: 18px;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}



/* ================= HERO ================= */
.hero {
  padding: 100px 0;
  background: radial-gradient(circle at top, #111933, #0b0f19);
}

.hero__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-size: 48px;
  line-height: 1.2;
}

.hero__highlight {
  color: #00ffcc;
}

.hero__description {
  margin: 20px 0;
  opacity: 0.85;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 25px;
}

.hero__stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat__number {
  font-size: 24px;
  font-weight: 700;
  color: #00ffcc;
}

/* Hero Card */
.hero__card {
  background: rgba(255,255,255,0.06);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.card__header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.card__avatar img {
  width: 50px;
}

.robux__display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 28px;
  font-weight: 700;
}

.robux__icon {
  color: #00ffcc;
}

/* ================= SECTIONS ================= */
.section {
  padding: 90px 0;
}

.section--alt {
  background: #0f162d;
}

.section__header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.section__title {
  font-size: 36px;
  margin-bottom: 15px;
}

.section__description {
  opacity: 0.8;
}

/* ================= CTA BUTTON RESPONSIVE FIX ================= */

.cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;                 /* Space between buttons */
  margin-top: 35px;
  flex-wrap: wrap;           /* Allows wrapping on small screens */
}

.cta__buttons .btn {
  min-width: 220px;          /* Same width for both buttons */
  justify-content: center;
  padding: 16px 36px;        /* Perfect padding */
  font-size: 16px;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .cta__buttons {
    flex-direction: column;  /* Stack buttons */
    gap: 16px;
  }

  .cta__buttons .btn {
    width: 100%;             /* Full-width buttons */
    max-width: 320px;
  }
}
.cta__title {
  font-size: 42px;
  margin-bottom: 18px;
}

.cta__description {
  max-width: 600px;
  margin: 0 auto 10px;
  font-size: 17px;
  opacity: 0.9;
}
/* ================= WHY CHOOSE (MODERN) ================= */

.why-modern {
    background: radial-gradient(circle at top, #0f1b3d, #0b0f19);
  }
  
  .why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .why__card {
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  .why__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0,255,204,0.15));
    opacity: 0;
    transition: 0.35s;
  }
  
  .why__card:hover::before {
    opacity: 1;
  }
  
  .why__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0,255,204,0.25);
  }
  
  .why__icon {
    font-size: 40px;
    color: #00ffcc;
    margin-bottom: 18px;
  }
  
  .why__card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .why__card p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
  }

/* ================= WHY CTA BUTTON ================= */
.why__cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.why__cta .btn {
  padding: 16px 38px;
  font-size: 16px;
  min-width: 240px;
  justify-content: center;
}

/* Mobile */
@media (max-width: 600px) {
  .why__cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

.btn--primary {
  border-radius: 999px;
  letter-spacing: 0.3px;
}



/* ================= MODERN SAFETY ================= */
.modern-safety {
  background: radial-gradient(circle at top, #10193a, #0b0f19);
}

.section__badge {
  display: inline-block;
  background: rgba(0,255,204,0.15);
  color: #00ffcc;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.safety__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.safety__list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.safety__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  padding: 14px 18px;
  border-radius: 14px;
}

.safety__item i {
  color: #00ffcc;
  font-size: 20px;
}

.safety__card {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(0,255,204,0.15);
}

.safety__icon {
  font-size: 48px;
  color: #00ffcc;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .safety__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ================= MODERN CTA ================= */

.modern-cta {
  background: linear-gradient(135deg, #00eeff, #00c2ff);
  color: #000;
}

.cta__box {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.cta__trust {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  font-size: 14px;
}

.cta__trust i {
  margin-right: 6px;
}

/* ================= FINAL THOUGHTS (FIXED & MODERN) ================= */
.clean-final {
  background: radial-gradient(circle at top, #0a0f1f, #050712);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.final__content {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

/* Title */
.final__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

/* Text */
.final__text {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Points */
.final__points {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.final__point {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  background: rgba(255,255,255,0.05);
  padding: 14px 18px;
  border-radius: 14px;
}

.final__point i {
  font-size: 18px;
  color: #00ffcc;
}

/* CTA */
.final__cta .btn {
  padding: 14px 36px;
  box-shadow: 0 0 30px rgba(0,255,204,0.4);
}

/* Hover polish */
.final__cta .btn:hover {
  box-shadow: 0 0 45px rgba(0,255,204,0.7);
}

/* Responsive */
@media (max-width: 600px) {
  .final__title {
    font-size: 28px;
  }

  .final__text {
    font-size: 15px;
  }
}



/* ================= FEATURES ================= */
.features__grid,
.tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
}

.feature__card,
.tip__card {
  background: rgba(255,255,255,0.06);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
}

.feature__card:hover,
.tip__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0,255,204,0.2);
}

.feature__icon,
.tip__icon {
  font-size: 36px;
  color: #00ffcc;
  margin-bottom: 15px;
}

/* ================= STEPS ================= */
.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 16px;
}

.step__number {
  width: 40px;
  height: 40px;
  background: #00ffcc;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #00ffcc, #00c2ff);
  color: #000;
  padding: 90px 0;
  text-align: center;
}

.cta__title {
  font-size: 40px;
  margin-bottom: 15px;
}

/* ================= PREMIUM FOOTER ================= */
.footer {
background: linear-gradient(180deg, #050712, #02030a);
border-top: 1px solid rgba(255,255,255,0.08);
padding-top: 70px;
}

.footer__grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
gap: 40px;
}

/* Brand */
.footer__logo {
font-size: 28px;
font-weight: 800;
color: #00ffcc;
margin-bottom: 15px;
}

.footer__text {
font-size: 15px;
opacity: 0.8;
margin-bottom: 20px;
}

/* Socials */
.footer__socials {
display: flex;
gap: 14px;
}

.footer__socials a {
width: 40px;
height: 40px;
display: grid;
place-items: center;
border-radius: 50%;
background: rgba(255,255,255,0.08);
font-size: 18px;
transition: 0.3s;
}

.footer__socials a:hover {
background: #00ffcc;
color: #000;
box-shadow: 0 0 20px rgba(0,255,204,0.6);
}

/* Links */
.footer__links h4 {
margin-bottom: 15px;
font-size: 16px;
}

.footer__links a {
display: block;
font-size: 15px;
opacity: 0.75;
margin-bottom: 10px;
transition: 0.3s;
}

.footer__links a:hover {
opacity: 1;
color: #00ffcc;
}

/* Trust */
.footer__trust {
display: grid;
gap: 14px;
}

.trust__badge {
display: flex;
align-items: center;
gap: 10px;
background: rgba(255,255,255,0.06);
padding: 12px 16px;
border-radius: 14px;
font-size: 14px;
}

.trust__badge i {
color: #00ffcc;
font-size: 18px;
}

/* Bottom */
.footer__bottom {
margin-top: 60px;
padding: 20px 0;
text-align: center;
font-size: 14px;
opacity: 0.6;
border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= FOOTER RESPONSIVE ================= */
@media (max-width: 900px) {
.footer__grid {
  grid-template-columns: 1fr;
  text-align: center;
}

.footer__socials {
  justify-content: center;
}

.footer__trust {
  justify-items: center;
}
}

/* ================= ANIMATION ================= */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__buttons,
  .hero__stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  
}

/* Button desing */

.btncolor {
    padding: 0.6em 2em;
    text-decoration: none;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

  .linkbtn{
    margin-top: 70px;
    margin-bottom: 30px;
  }
  
  .btncolor:before {
    content: "";
    background: linear-gradient(
      45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
  }
  
  @keyframes glowing-button-85 {
    0% {
      background-position: 0 0;
    }
    50% {
      background-position: 400% 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  .btncolor:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
