/* ===================== VISION SECTION ===================== */

.vision-section {
    position: relative;
    padding: 120px 0;
    /* background: #030712; */
    color: #fff;
    overflow: hidden;
    /* background-image: url('/images/bg2.png'); */
    background-position: center;
    background-size: cover;
    border-bottom: 3px solid #39ff14;
}

/* DARK OVERLAY */
/* .vision-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 7, 15, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1;
} */

.vision-section * {
    position: relative;
    z-index: 2;
}

.vision-container {
    width: 92%;
    max-width: 1250px;
    margin: auto;
    text-align: center;
}

/* MAIN TITLES */
.vision-title,
.core-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 55px;
    letter-spacing: 3px;
    background: linear-gradient(to right, #39ff14, #32ff87);
    color: transparent;
    -webkit-background-clip: text;
}

.core-title {
    margin-top: 90px;
}

/* INTRO BLOCK */
.vision-intro {
    position: relative; /* Needed for overlay */
    z-index: 1;

    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(57, 255, 20, 0.25);
    padding: 40px 45px;
    border-radius: 20px;
    max-width: 950px;
    margin: 0 auto 70px auto;

    backdrop-filter: blur(15px);
    overflow: hidden;

    /* box-shadow:
        inset 0 0 18px rgba(57,255,20,0.15),
        0 0 20px rgba(57,255,20,0.08); */

    background-image: url('/images/cardbg.png');
    background-position: center;
    background-size: cover;
}

/* 🔥 Overlay Layer */
.vision-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Dark overlay */
    background: rgba(0, 0, 0, 0.4);

    /* Light green neon tint */
    box-shadow:
        inset 0 0 25px rgba(57,255,20,0.15);

    z-index: 1;
}
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mission-list li {
    position: relative;
    margin: 0px 0;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(57,255,20,0.15);
    box-shadow:
        0 0 8px rgba(57,255,20,0.15),
        inset 0 0 12px rgba(57,255,20,0.08);
    color: #ccc;
    transition: all 0.25s ease;
    border-color: #37fd48;
    box-shadow:
        0 0 12px #37fd48,
        0 0 20px rgba(57,255,20,0.45),
        inset 0 0 12px rgba(57,255,20,0.3);
}

/* Neon effect on hover */
.mission-list li:hover {
    border-color: #ffffff;
    box-shadow:
        0 0 12px #fbfbfb,
        0 0 20px rgba(180, 180, 180, 0.45),
        inset 0 0 12px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Color the <strong> parts */
.mission-list li strong {
    color: #37fd48;
}


/* 🔥 Bring ALL content ABOVE overlay */
.vision-intro * {
    position: relative;
    z-index: 2;
}


.vision-intro p {
    font-family: 'Audiowide', cursive;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 18px;
}

/* Glass reusable panel */
.glass-panel {
    background: rgba(0, 0, 0, 0.12);
    border: 1.5px solid rgba(57,255,20,0.25);
    padding: 45px 50px;
    border-radius: 22px;
    max-width: 1000px;
    margin: 0 auto 70px auto;
    backdrop-filter: blur(20px);
    box-shadow:
        inset 0 0 22px rgba(57,255,20,0.18),
        0 0 30px rgba(57,255,20,0.12);
        background-image: url('/images/cardbg2.png');
        background-position: center;
        background-size: cover;
}

.glass-panel {
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Overlay color */
      /* Optional – makes overlay smoother */
    z-index: 1;
}

/* Make sure content stays above overlay */
.glass-panel > * {
    position: relative;
    z-index: 2;
}


/* Mission Title */
.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    background: linear-gradient(to right, #39ff14, #32ff87);
    color: transparent;
    -webkit-background-clip: text;
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    font-family: 'Audiowide', cursive;
}

.mission-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.glass-panel p {
    font-family: 'Audiowide', cursive;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Highlight text */
.highlight {
    color: #39ff14;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(57,255,20,0.6);
}

/* Hover / Click Hint */
.flip-hint {
    font-family: 'Audiowide', cursive;
    font-size: 1rem;
    color: #39ff14;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    animation: glowHint 1.8s infinite alternate;
}

.flip-hint i {
    font-size: 1.25rem;
}

@keyframes glowHint {
    0% { text-shadow: 0 0 6px #39ff14; }
    100% { text-shadow: 0 0 16px #32ff87; }
}

/* GRID OF ROLES */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    margin-top: 10px;
}

/* Flip Cards */
.flip-card {
    perspective: 1400px;
}

.flip-card-inner {
    width: 100%;
    height: 320px;
    transition: transform 0.85s ease;
    transform-style: preserve-3d;
    
}

/* Flip on hover */
.flip-card:hover .flip-card-inner,
.flip-card:active .flip-card-inner {
    transform: rotateY(180deg);

}

/* Card Faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    padding: 25px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(57,255,20,0.25);
    box-shadow:
        inset 0 0 18px rgba(57,255,20,0.15),
        0 0 25px rgba(57,255,20,0.08);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    backface-visibility: hidden;
    border-left: 3px solid #39ff14 !important;
border-right: 3px solid #39ff14 !important;
}

/* Front Side */
.flip-card-front i {
    color: #39ff14;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(57,255,20,0.45));
}

.flip-card-front h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.5rem;
    color: #4dff4d;
    text-shadow: 0 0 10px rgba(57,255,20,0.35);
}

/* Back Side */
.flip-card-back {
    transform: rotateY(180deg);
    font-family: 'Audiowide', cursive;
    font-size: 1rem;
    line-height: 1.6;
    padding: 25px;
    text-align: center;
}

/* Mobile Fixes */
@media (max-width: 768px) {

    .sale-email {
        width: 100% !important;
        padding: 12px 5px !important;
      }
    .vision-grid {
        grid-template-columns: 1fr;
    }
    .flip-card-inner {
        height: 260px;
    }
    .vision-title, .core-title {
        font-size: 2.2rem;
    }

    .marketplace-title {
       
        font-size: 2.2rem !important;
        
    }

    .infinityp1 {
        font-size: 8px;
      }
}


.infinityp1 {
    font-size: 12px;
  }

  .infinityp2 {
    font-size: 18px;
    cursor: pointer;
  }



/* ===================== FULL MOBILE RESPONSIVENESS ===================== */
@media (max-width: 768px) {

    /* Reduce section padding */
    .vision-section {
        padding: 70px 0;
    }

    /* Container spacing */
    .vision-container {
        width: 94%;
        text-align: center;
    }

    /* Titles smaller */
    .vision-title,
    .core-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
        letter-spacing: 2px;
    }

    /* Intro card */
    .vision-intro {
        padding: 25px 20px;
        border-radius: 16px;
        margin-bottom: 50px;
    }

    .vision-intro p {
        font-size: 1rem;
        line-height: 1.55;
    }

    /* Mission list */
    .mission-list {
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }

    .mission-list li {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 12px 15px;
    }

    /* Glass panel */
    .glass-panel {
        padding: 28px 22px;
        border-radius: 18px;
        margin-bottom: 50px;
    }

    .glass-panel p {
        font-size: 1rem;
    }

    /* Mission title */
    .mission-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    /* Flip hint */
    .flip-hint {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    /* GRID becomes 1 column */
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Flip cards */
    .flip-card-inner {
        height: 240px;
    }

    .flip-card-front h3 {
        font-size: 1.25rem;
    }

    .flip-card-front i {
        transform: scale(0.9);
    }

    .flip-card-back {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 18px;
    }
}


.private-sale-section {
    padding: 80px 20px;
    /* background: radial-gradient(circle at top, #0f1115, #07080b); */
    display: flex;
    justify-content: center;
  }
  
  .private-sale-section .container {
    /* max-width: 1100px; */
    width: 100%;
    display: flex;
    justify-content: center;
  }


  /* Content */
.sale-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #39ff14;
    text-align: center;
  }
  
  .sale-text {
    font-size: 16px;
    color: #cfd2da;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .sale-points {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    text-align: center;
  }
  
  .sale-points li {
    font-size: 15px;
    color: #e6e6e6;
    margin-bottom: 8px;
  }
  
  .sale-email {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    width: 60%;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #0b0c10;
    background: linear-gradient(135deg, #39ff14, #32e912);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .sale-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #37ff146f;
  }



  .currency-card1 {
    background: linear-gradient(
      145deg,
      rgba(10, 10, 10, 1) 0%,
      rgba(25, 25, 25, 1) 45%,
      rgb(91, 90, 90) 100%
    );
    border-radius: 24px; /* updated roundness */
    border: 2px solid rgba(55,253,72,0.4);
    padding: 25px;
    position: relative;
    z-index: 9999;
    box-shadow: 0 0 25px rgba(55,253,72,0.25);
    backdrop-filter: blur(0px); /* removed transparency blur */
    transition: .25s ease;
    min-height: 100%;
    width: 100%;
  }
  
  /* KEEP your neon corner lines */
  .currency-card1::before,
  .currency-card1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #37fd48;
    opacity: 0.35;
  }
  
  .currency-card1::before {
    top: -7px;
    left: -7px;
    border-right: none;
    border-bottom: none;
  }
  
  .currency-card1::after {
    bottom: -7px;
    right: -7px;
    border-left: none;
    border-top: none;
  }
  


/* Hologram neon corner lines */
.currency-card1::before,
.currency-card1::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid #37fd48;
  opacity: 0.35;
}

.currency-card1::before {
  top: -7px;
  left: -7px;
  border-right: none;
  border-bottom: none;
}

.currency-card1::after {
  bottom: -7px;
  right: -7px;
  border-left: none;
  border-top: none;
}

.currency-card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(55,253,72,0.45);
}