  @font-face {
    font-family: font1;
    src: url('../fonts/Super\ Meatball.ttf') format('truetype'),

  }

  @font-face {
    font-family: font2;
    src: url('../fonts/Super\ Meatball.ttf') format('truetype'),


  }




    :root {
        --primary-color: ;
        --secondary-color: ;
        --accent-color: ;
        --tertiary-color: ;
        --font-1: font1;
        --font-2: font2;
        /* --font-3: font3; */
        --heading-size: ;
        --para-size: ;
        --padding: ;
    }




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


  body,
  html {
    width: 100%;
    /* font-size: 24px; */
    overflow-x: clip;
    background-color: var(--secondary-color);
    transition: all .4s ease;
    color: var(--secondary-color);
    scroll-behavior: smooth;

    font-family: var(--font-2);

  }

  h1,
  h2 {
    text-shadow: 3px 3px #5555554e;

  }

  .hero {
    min-height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background: linear-gradient(90deg, rgba(248, 220, 250, 1) 0%, rgba(212, 188, 212, 1) 50%, rgba(226, 217, 255, 1) 100%);
    background: var(--secondary-color);

  }

  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: blobMove 25s infinite ease-in-out;
  }

  .blob1 {
    width: 500px;
    height: 500px;
    background: rgba(171, 107, 255, 0.4);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
  }

  .blob2 {
    width: 400px;
    height: 400px;
    background: rgba(234, 102, 219, 0.4);
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
  }

  .blob3 {
    width: 350px;
    height: 350px;
    background: rgba(240, 147, 251, 0.4);
    top: 50%;
    right: 20%;
    animation-delay: 6s;
  }

  @keyframes blobMove {

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

    33% {
      transform: translate(50px, -50px) scale(1.1);
    }

    66% {
      transform: translate(-30px, 30px) scale(0.9);
    }
  }

  .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: var(--padding);
  }

  .hero h1 {
    font-size: var(--heading-size);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    font-family: var(--font-2);
  }

  .hero .tagline {
    font-size: var(--para-size);
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.2s both;
    margin-bottom: 3rem;
    font-weight: 300;
    font-family: var(--font-3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
  }

  .btn-primary {
    padding: 18px 45px;
    background: #fff;
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: clamp(14.4px, 3.5vw, 16.7px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

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

  .btn-secondary {
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: clamp(14.4px, 3.5vw, 16.7px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    background: #fff;
    color: #667eea;
  }

  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .float-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 15s infinite ease-in-out;
  }

  .float-item:nth-child(1) {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    transform: rotate(25deg);
  }

  .float-item:nth-child(2) {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 70%;
    left: 10%;
    animation-delay: 2s;
  }

  .float-item:nth-child(3) {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    top: 40%;
    right: 10%;
    animation-delay: 4s;
    transform: rotate(-15deg);
  }

  .float-item:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 15%;
    right: 20%;
    animation-delay: 1s;
    transform: rotate(45deg);
  }

  @keyframes float {

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

    50% {
      transform: translateY(-30px) rotate(180deg);
    }
  }

  .features-section {
    padding: var(--padding);
    background: #fafbff;
    background-color: var(--primary-color);
  }

  .section-title {
    text-align: center;
    font-size: var(--heading-size);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;

    font-family: var(--font-2);
  }

  .section-subtitle {
    text-align: center;
    font-size: var(--para-size);
    color: #666;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-3);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    transition: all 0.1s;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    /* background: rgb(248, 237, 248); */
    box-shadow: 3px 3px 0px black, rgb(242, 236, 243) 0px 3px 1px 0px inset;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    transition: all 0.4s;
  }

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

  .feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
    font-family: var(--font-1);
    color: var();
  }

  .feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: clamp(16px,2.5vw,180deg);
    font-family: var(--font-3);
  }

  .timeline-section {
    padding:  var(--padding);
    background: linear-gradient(180deg, #f5f7ff 0%, #fff 100%);
    background: rgb(248, 237, 248);
    background: linear-gradient(180deg, #fcf5ff 0%, rgb(253, 246, 253) 100%);

  }

  .timeline {
    /* max-width: 1000px; */
    margin: 0 auto;
    position: relative;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea, #764ba2, #f093fb);
    transform: translateX(-50%);
  }

  .timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;

  }

  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }

  .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .timeline-content {
    width: 45%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: var(--accent-color);

    box-shadow: 3px 3px 0px black, rgb(251, 237, 251) 0px 3px 1px 0px inset, 0px 0px 10px 2px rgba(104, 84, 104, 0.193);


  }

  .timeline-content p {
    color: var(--primary-color);
    font-family: var(--font-3);
  }

  .timeline-content2 {
    background: var(--secondary-color);
  }

  .timeline-content3 {
    background: var(--tertiary-color);
  }

  .timeline-content4 {
    background: #600404;
  }
  .timeline-content4 {
    background: #686303;
  }

  .timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px #fff, 0 0 0 12px #667eea33;
  }

  .timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-1);
  }

  .timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-1);
  }


  @media (max-width: 768px) {
   .hero .tagline{
    line-height: 24px;
   }
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
    .timeline{
      right: 10px;
    }

  
    .timeline::before {
      left: 20px;
    }

    .timeline-item {
      flex-direction: column !important;
    }

    .timeline-content {
      width: 88%;
      margin-left: 50px;
      padding:25px 20px;
    }

    .timeline-dot {
      left: 20px;
    }

    .newsletter-form {
      flex-direction: column;
    }
  }




  /*  */


  .section-1 {
    min-height: 70vh;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: var(--padding);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }

  .section-1 h2 {
    font-family: var(--font-2);
    font-size: var(--heading-size);
  }

  .section-1 p {
    font-family: var(--font-3);
    font-size: var(--para-size);
    width: min(950px, 95%);
    margin: 0 auto;
    color: whitesmoke;
    line-height: 30px;
  }


  /* modal */

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    animation: fadeIn 0.3s;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) translateX(50px);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%) translateX(0);
    }
  }

  @keyframes slideUpModal {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) translateY(30px);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%) translateY(0);
    }
  }

  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-content.initial-animation {
    animation: slideUpModal 0.4s ease-out;
  }

  .modal-content.slide-animation {
    animation: slideLeft 0.5s ease-out;
  }

  .close {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
  }

  .close:hover {
    color: #333;
  }

  .modal h2 {
    color: var(--secondary-color);
    /* margin-bottom: 20px; */
    /* font-size: 1.8em; */
    font-size: clamp(24px, 5vw, 45px);
    text-align: center;
  }

  .risk-content {
    text-align: left;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .risk-content h3 {
    color: #764ba2;
    margin: 20px 0 10px 0;
    font-family: var(--font-3-b);
  }

  .risk-content p {
    font-family: var(--font-3);
  }

  .risk-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    font-family: var(--font-3);


  }

  .risk-content li {
    margin-bottom: 8px;
  }

  .agreement-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  .checkbox-container label {
    cursor: pointer;
    color: #333;
    font-weight: 500;
    font-family: var(--font-3-b);
  }

  .accept-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1em;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    font-weight: 600;
    width: 100%;
    opacity: 0.5;
    cursor: not-allowed;
  }

  .accept-button.enabled {
    opacity: 1;
    cursor: pointer;
  }

  .accept-button.enabled:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  }

  /* Form Styles */
  .form-content {
    text-align: left;
  }


  .form-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-3);
    font-size: var(--para-size);

  }
  .form-content .imp{
    font-family: var(--font-3-b);
  }
  .wallet-address {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    word-break: break-all;
    font-family: monospace;
    border: 2px dashed #667eea;
  }

  form {
    margin-top: 30px;
  }

  label {
    display: block;
    color: var(--secondary-color) !important;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 20px;
  }

  input {
    color: var(--tertiary-color);
  }

  input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: border-color 0.3s;
  }

  input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
  }

  .submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: clamp(14.4px, 3.5vw, 16.7px);
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
    width: 100%;
    margin-top: 30px;
  }


  .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  }

  .submit-button:disabled{
    background: grey !important;
    cursor: not-allowed;
    box-shadow: unset !important;
  }

  .form-footer {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
  }



  /*  */

  .success-popup {
    display: none;
  }

  .success-popup {
    border-radius: 20px;
    /* padding: 50px 40px; */
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: popupAppear 0.5s ease-out;
    flex-direction: column;
    margin: 0 auto;
  }

  @keyframes popupAppear {
    from {
      opacity: 0;
      transform: scale(0.8) translateY(20px);
    }

    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .success-popup .checkmark-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out 0.2s both;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
    }

    to {
      transform: scale(1);
    }
  }

  .success-popup .checkmark {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .checkmark path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.6s ease-out 0.5s forwards;
  }

  @keyframes drawCheck {
    to {
      stroke-dashoffset: 0;
    }
  }

  .success-popup h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out 0.7s both;
  }

  .success-popup .message {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.9s both;
    font-family: var(--font-3);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .success-popup .btn-container {
    animation: fadeInUp 0.6s ease-out 1.1s both;
  }

  .success-popup .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }

  .success-popup .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  }

  .success-popup .btn:active {
    transform: translateY(0);
  }

  .success-popup .confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #667eea;
    position: absolute;
    animation: confettiFall 3s ease-out forwards;
  }

  @keyframes confettiFall {
    to {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }



  /*  */

  @media (max-width:760px) {
    .hero-content{
      position: relative;
      top: 10px;
    }
    .feature-card{
      padding: 35px 25px;
    }
    .section-1 p{
      line-height: 29px;
    }
    .hero .tagline{
      margin-bottom: 2rem;
    }
    .btn-primary{
      padding: 18px 15px;
    }
    .btn-secondary{
      padding: 18px 15px;

    }

    .section-subtitle{
      margin-bottom: 70px;
    }
    .modal-content{
      padding: 30px;
    }
  }

  @media (max-width:500px) {
    .modal-content{
      padding: 30px 20px;
    }
    .features-grid{
      grid-template-columns: 1fr;
    }
    
  }

  @media (max-width:450px) {
    .success-popup h1{
      font-size: 7.5vw;
    }
  }




    .loader {
        background-color: var(--secondary-color);
        position: fixed;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        transition: all .45s ease;
        /* display: none !important; */
    }

    .loader .ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
        height: 250px;
        background: transparent;
        border: 3px solid #3c3c3c;
        border-radius: 50%;
        text-align: center;
        line-height: 150px;
        font-family: sans-serif;
        font-size: 20px;
        color: var(--primary-color);
        letter-spacing: 4px;
        text-transform: uppercase;
        text-shadow: 0 0 10px rgba(249, 244, 250, 0.598);
        box-shadow: 0 0 20px rgba(0, 0, 0, .5);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 25px;
        font-family: var(--font-2);

    }

    .loader .ring:before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        width: 100%;
        height: 100%;
        border: 3px solid transparent;
        border-top: 3px solid var(--primary-color);
        border-right: 3px solid var(--primary-color);
        border-radius: 50%;
        animation: animateC 2s linear infinite;
    }

    .loader span {
        display: block;
        position: absolute;
        top: calc(50% - 2px);
        left: 50%;
        width: 50%;
        height: 4px;
        background: transparent;
        transform-origin: left;
        animation: animate 2s linear infinite;
    }

    .loader span:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--primary-color);
        top: -6px;
        right: -8px;
        box-shadow: 0 0 20px var(--primary-color);
    }

    @keyframes animateC {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes animate {
        0% {
            transform: rotate(45deg);
        }

        100% {
            transform: rotate(405deg);
        }
    }




