/* ================= 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: #0f0f1f; /* Dark modern background */
    color: #f0f0f5;       /* Softer white for readability */
    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, #ff6ec7, #845ef7); /* Pink → Violet */
    color: #fff;
    box-shadow: 0 0 25px rgba(255,110,199,0.5);
}

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

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

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

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

/* ================= HEADER / NAV ================= */
.header {
    position: sticky;
    top: 0;
    background: rgba(15,15,31,0.9);
    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: #ff6ec7; /* Vibrant accent */
}

.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(15,15,31,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, #1b003c, #0f0f1f); /* Deep purple → dark */
}

.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: #ff6ec7; /* Pink accent */
}

.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: #845ef7; /* Violet accent */
}

/* Hero Card */
.hero__card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    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: #ff6ec7;
}

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

.section--alt {
    background: #1c1c33;
}

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

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

.section__description {
    opacity: 0.8;
}

/* ================= 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;
    }
  }
  

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

.section__badge {
    display: inline-block;
    background: rgba(255,110,199,0.15);
    color: #ff6ec7;
    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: #ff6ec7;
    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(255,110,199,0.15);
}

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

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



/* ================= MODERN CTA ================= */
.modern-cta {
    background: linear-gradient(135deg, #ff6ec7, #845ef7);
    color: #fff;
}

.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 ================= */
.clean-final {
    background: radial-gradient(circle at top, #0f0f1f, #050512);
    border-top: 1px solid rgba(255,110,199,0.3);
}

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

.final__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    color: #ff6ec7;
}

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

.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: #ff6ec7;
}

.final__cta .btn {
    padding: 14px 36px;
    box-shadow: 0 0 30px rgba(255,110,199,0.4);
}

.final__cta .btn:hover {
    box-shadow: 0 0 45px rgba(255,110,199,0.7);
}

@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(255,110,199,0.2);
}

.feature__icon,
.tip__icon {
    font-size: 36px;
    color: #845ef7;
    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: #ff6ec7;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
}

/* ================= CTA ================= */
.cta {
    background: linear-gradient(135deg, #ff6ec7, #845ef7);
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

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

/* ================= PREMIUM FOOTER ================= */
.footer {
    background: linear-gradient(180deg, #050512, #02020a);
    border-top: 1px solid rgba(255,110,199,0.2);
    padding-top: 70px;
}

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

.footer__logo {
    font-size: 28px;
    font-weight: 800;
    color: #ff6ec7;
    margin-bottom: 15px;
}

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

.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: #ff6ec7;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,110,199,0.6);
}

.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: #ff6ec7;
}

.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: #ff6ec7;
    font-size: 18px;
}

.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);
}

@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;
  }
  
  
  