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

html {
    scroll-behavior: smooth;
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --color-primary: #1d0c5a;
    --color-secondary: #8465d1;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark-gray: #1a1a1a;
    --color-light-gray: #f5f5f5;
    --color-border-gray: #cccccc;
    --color-primary-hover: #2a1780;
    --color-secondary-hover: #9b7df2;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Background Grid Pattern for Body */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 2px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Make sure content is above the grid */
body>* {
    position: relative;
    z-index: 1;
}

/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 5px;
    /* scrollbar thickness */
}

::-webkit-scrollbar-track {
    background: var(--color-dark-gray);
    /* track color */
}

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    /* draggable part */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary-hover);
    /* hover color */
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) var(--color-dark-gray);
}




/* Header  */
.big {
    z-index: 1000;
    padding: 10px 0;
    display: block;
}
.small{
    display: none;
}

nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8rem;
}

.logo-contain{
    width: 15%;
}

.logo {
    width: 80%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--color-white);
    font-size: 14px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: color 0.5s;
}

.nav-links a:hover {
    color: var(--color-secondary);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.auth-buttons button {
    font-size: 14px;
    color: var(--color-white);
}

.btn-signin {
    background: transparent;
    border: 2px solid var(--color-secondary);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-signin:hover{
    background: var(--color-secondary-hover);
    /* color: var(--color-dark-gray); */
}


.moonchad {
    padding: 0 5rem;
}

/* Section 1  */
.crypto-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 3rem;
}

.main-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

/* Left Content */
.main-container.content {
    z-index: 10;
    position: relative;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.main-heading .highlight {
    color: var(--color-accent-green);
}

.main-heading .gray {
    color: var(--color-secondary-hover);
}

/* User Stats */
.user-stats {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 40px;
}

.user-avatars {
    display: flex;
    margin-right: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--color-secondary);
    margin-left: -8px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.stats-text {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.stats-label {
    font-size: 0.9rem;
    color: #888;
}

/* Description */
.description-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent-green), #5cb85c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.description-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.content-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color-secondary);
}

.content-right img {
    width: 85%;
}





/* Section 2 */
.partner-section {
    padding-bottom: 5rem;
    align-items: center
}

/* Content Layout */
.content-wrapper {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Left Content */
.content-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.main-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.main-heading .highlight {
    color: var(--color-accent-green);
}

.main-heading .gray {
    color: var(--color-secondary-hover);
}

.description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 20px;
}

/* Right Content - Cards */
.content-card {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-template-areas:
        "card1 card3"
        "card2 card3";
}

.service-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--color-secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--color-dark-gray);
}

.card-01 {
    grid-area: card1;
    height: 215px;
}

.card-02 {
    grid-area: card2;
    background: var(--color-secondary-hover);
    color: var(--color-black);
    height: 260px;
}

.card-02:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-10px) scale(1.02);
}

.card-03 {
    grid-area: card3;
    height: 215px;
}

.card-number {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.8;
}

.card-02 .card-number {
    color: var(--color-black);
    opacity: 0.7;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-02 .card-title {
    color: var(--color-black);
    margin-bottom: 20px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-02 .card-description {
    color: var(--color-black);
    opacity: 0.7;
}

.card-description strong {
    color: var(--color-white);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
}

/* 
        .learn-more::after {
            content: "→";
            transition: transform 0.3s ease;
        } */

.learn-more:hover::after {
    transform: translateX(3px);
}




/* Section 3 */
.trusted-section {
    /* padding: 0 20px; */
    padding-bottom: 5rem;
}

.trusted-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.trusted-left {
    width: 40%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--color-secondary);
}

.trusted-left img {
    width: 73%;
}

.trusted-right {
    width: 60%;
}


.trusted-right p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.trusted-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-learn {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    background: var(--color-secondary);

}

.btn-learn:hover {
    background: var(--color-secondary-hover);
}



/* Section 4 */
.mission {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

/* Header Section */
.mission-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.feature-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-secondary);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    height: 70%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #8465d1, transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary-hover);
}

/* Special Green Card */
.feature-card.featured {
    height: 100%;
    background: var(--color-secondary);
    color: var(--color-black);
    border-color: var(--color-secondary);
}

.feature-card.featured:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-15px) scale(1.02);
}

/* Card Icons */
.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card.featured .card-icon {
    background: rgba(0, 0, 0, 0.15);
    color: var(--color-black);
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-secondary);
}

/* Card Content */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.feature-card.featured .card-title {
    color: var(--color-black);
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-card.featured .card-description {
    color: var(--color-black);
}

/* Learn More Button */
.learn-more-btn {
    border: 2px solid var(--color-dark-gray);
    padding: 15px 30px;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-dark-gray);

}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-secondary), transparent);
    animation: float 8s ease-in-out infinite, pulse 6s ease-in-out infinite;
    filter: blur(1px);
    opacity: 0.6;
}

/* Individual Shape Positions */
.shape-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    right: 10%;
    animation-delay: 0s, 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s, 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 6s, 2s;
}

.shape-4 {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 30%;
    animation-delay: 1.5s, 0.5s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    bottom: 0%;
    right: 5%;
    animation-delay: 4.5s, 2.5s;
}

/* Floating up & down movement */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }

    50% {
        transform: translateY(10px) translateX(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-15px) translateX(5px) rotate(3deg);
    }
}

/* Gentle pulsing effect */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}




/* Slide */
.crypto-slide-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 5rem;
}

.crypto-slide {
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slide-animation 15s linear infinite;
}

.crypto-slide img {
    width: 10%;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 20px;
    filter: grayscale(100%) brightness(200%) blur(1px);
}



.gift-card-img {
    display: block;
}

.crypto-img {
    display: block;
}

.gift-card-img {
    border-radius: 10px;
}

.crypto-img {
    border-radius: 10%;
}

/* Animation */
@keyframes slide-animation {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}










/* cursor effect */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: trailFade 0.5s forwards;
    z-index: 9999;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}


/* floating icon  */
.discord-float {
    position: fixed;
    bottom: 50px;
    right: 10px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 30px;
    padding: 10px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 9999;
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.discord-float:hover {
    background: var(--color-secondary-hover);
    transform: scale(1.1);
}





/* Footer section  */
.footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    padding: 50px 8rem;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    /* align-items: start; */
}

/* Logo and Description Section */
.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 40%;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid var(--color-secondary-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary-hover);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon i {
    font-size: 1.60rem;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-hold {
    display: flex;
    gap: 10rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent-green);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--color-secondary-hover);
    /* padding-left: 10px; */
}













/* MY RESPONSIVNESS  */
@media (max-width: 768px) {
    body {
        width: 100%;
    }

    .moonchad {
        padding: 0 1rem;
    }

    .main-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.big-text{
    font-size: 3rem;
}


/* Header  */
.big {
    display: none;
}
.small {
    display: block;
}

  nav {
    padding: 0rem 0rem;
    margin-bottom: 2rem;
  }

  /* Main mobile nav wrapper */
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background-color: var(--primary-color-dark);
    z-index: 1200;
  }

  /* Logo */
  .nav__logo img {
    max-width: 40%;
  }

  /* Hamburger styles */
  .hamburger {
    font-size: 1.40rem;
    cursor: pointer;
    color: var(--white);
    z-index: 1000;
  }

  /* Slide-down menu container */
  .hold3 {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100vh;
    background-color: var(--color-dark-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: left 0.4s ease;
    z-index: 1200;
    padding: 2rem 1rem;
    border-right: 1px solid var(--color-secondary);
  }

  /* When the menu is open */
  .hold3.open {
    left: 0;
  }

  /* Close icon inside the menu */
  .hold3 .hamburger {
    position: absolute;
    top: 1.50rem;
    right: 1rem;
    font-size: 1.50rem;
  }

  /* Nav links */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .nav-links a {
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-buttons button {
    font-size: 15px;
    color: var(--color-white);
    font-weight: 600;
}

.btn-signin {
    background: transparent;
    border: 2px solid var(--color-secondary);
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}


/* Section 1 */
.badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 10px;
    margin-bottom: 10px;
}

.main-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 5rem;
}

.description-box {
    display: flex;
    gap: 20px;
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 15px;
}

.icon-wrapper {
    display: none;
}

.crypto-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.user-stats {
    gap: 0;
    margin-bottom: 20px;
}

.content-right img {
    width: 90%;
}





/* Section 2 */
.content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-card {
    display: flex;
    flex-direction: column;
}

.card-01 {
    height: 230px;
}

.card-02 {
    height: 280px;
}

.card-03 {
    height: 230px;
}




/* Section 3 */
.trusted-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trusted-left {
    width: 100%;
}

.trusted-left img {
    width: 75%;
}

.trusted-right {
    width: 100%;
}



/* Section 4  */
.container {
    width: 100%;
    padding: 0;
}

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
        height: auto;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.95rem;
    }



    /* Slide  */
    .crypto-slide-container {
        width: 100%;
        margin-bottom: 5rem;
    }

    .crypto-slide {
        gap: 10px;
        animation: slide-animation 5s linear infinite;
    }

    .crypto-slide img {
        width: 40%;
    }

    .gift-card-img {
        display: block;
    }

    .crypto-img {
        display: none;
    }



    /* Footer section  */
    .footer {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 20px;
    }

    .footer-logo {
    width: 50%;
}

    .footer-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }

    .footer-hold {
        display: flex;
        flex-wrap: wrap;
        gap: 5rem;
    }
}