/*=============== GOOGLE FONTS ===============*/@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');/*=============== VARIABLES CSS ===============*/:root {  /*========== Colors ==========*/  --hue: 240;  --first-color: hsl(var(--hue), 16%, 18%);  --first-color-alt: hsl(var(--hue), 16%, 12%);  --title-color: hsl(var(--hue), 8%, 15%);  --text-color: hsl(var(--hue), 8%, 35%);  --body-color: hsl(var(--hue), 100%, 99%);  --container-color: #FFF;  /*========== Font and typography ==========*/  --body-font: 'Poppins', sans-serif;  --big-font-size: 1.5rem;  --normal-font-size: .938rem;  /*========== z index ==========*/  --z-modal: 1000;}@media screen and (min-width: 968px) {  :root {    --big-font-size: 1.75rem;    --normal-font-size: 1rem;  }} *{font-family: 'Poppins', sans-serif;}          .seed-phrase-container {      display: flex;      gap: 8px;      flex-wrap: wrap;      justify-content: center;  }  .seed-phrase-item {      display: flex;      align-items: center;      background: #efefef;      padding: 3px 4px;      border-radius: 16px;      border: 1px solid #ccc;      width: 28.5%;  }  .seed-phrase-item label {      margin-right: 5px;      font-size: 14px;      /*background: #aca5a5;*/      color: #000;      width: 25px;      text-align: center;      padding: 5px 0px;      border-radius: 17px;  }  .seed-phrase-item input {      width: 100%; /* Make the input wider */      border: 0;      background: #efefef;      text-align: left;      font-weight: 400;      padding: 5px;      font-size: 13px;      outline: none;      color: #1c1c1c;  }  /* Placeholder styling */  .seed-phrase-item input::placeholder {      color: gray;      font-size: 12px;      opacity: 1; /* Ensure the placeholder is visible */  }  .seed-phrase-item input:focus {      outline: none;      border: 1px solid #ccc; /* Add your preferred color */      border-radius: 17px;  }  .buttons-container {      margin-bottom: 20px;  }  .buttons-container button {      padding: 10px 20px;      font-size: 16px;      margin-right: 10px;      cursor: pointer;  }   /* Basic styling for the modal background */  .modal {      display: none; /* Hidden by default */      position: fixed; /* Stay in place */      z-index: 1; /* Sit on top */      left: 0;      width: 100%; /* Full width */      height: 100%; /* Full height */      background-color: hsla(var(--hue), 18%, 75%, .8); /* Semi-transparent background */      overflow-y: auto;  -webkit-overflow-scrolling: touch; /* Prevent scrolling */      transition: all 0.3s ease; /* Smooth transition */  }  /* Modal Content */  .modal-content {      background-color: #fff;      width: 50%;      max-width: 500px;      margin: 0 auto;      border-radius: 20px 20px 0 0; /* Rounded top corners */      position: fixed;      bottom: 0;	    }  /* Close Button */  .close {      color: #aaa;      font-size: 28px;      font-weight: bold;      position: absolute;      top: 10px;      right: 10px;      cursor: pointer;  }  .close:hover,  .close:focus {      color: black;      text-decoration: none;  }  /* For mobile: Keep modal fixed at the bottom */  @media (max-width: 768px) {      .modal-content {          position: fixed;          bottom: 0;          left: 0;          right: 0;          border-radius: 20px 20px 0 0 !important; /* Rounded top corners */          transform: none; /* No sliding effect */      }  }  /* For large screens (laptops): Center the modal */  @media (min-width: 769px) {      .modal-content {          top: 20%; /* Center the modal vertically */          border-radius: 20px !important; /* Rounded top corners */          transform: none; /* No sliding animation */      }  }r {display: block; background: #f1f1f1; padding: 9px 13px; border-radius: 8px; margin-bottom: 6px; text-align: left; font-size: 16px; border-left: 0px solid;}.web3-modal-title {    color: #000 !important;}.web3-modal .item span {    color: #000 !important;}.web3-modal {    background: #fff !important;    color: #000 !important;        border-radius: 1.25rem !important;}.swal2-popup {    background: #fff !important;    color: #000 !important;    border-radius: 1.25rem;}.web3-modal .item:hover {    background: #efefef !important;    border-radius: inherit !important;}.web3-modal .item .arrow {     -webkit-filter: invert(0) !important;      filter: invert(0) !important;     color: #000 !important;    margin-top: 15px !important;}.swal2-container.swal2-center>.swal2-popup {  border-radius: 1.25rem !important;}@media all and (max-width: 600px) and (orientation:landscape) {  .web3-modal, .web3-overlay {    position: fixed;    bottom: 0 !important;    top: unset !important;    left: 0;    width: 100%;  }  }.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {    background: hsla(var(--hue), 18%, 75%, .8) !important; }.modal{  height: 100vh;  display: none;  place-items: center;}.modal__button{ display: inline-block;    background-color: #ededed;    color: #000000;    padding: 1rem 1.25rem;    border-radius: 17px;    transition: .3s;    margin: 3px 0px;    text-align: left;    font-weight: 400;    cursor: pointer; border: none; outline: none;}.modal__button:hover{  border: 1px solid #ccc;  background-color: #ebebeb;}.modal__container {  position: fixed;  inset: 0;              /* shorthand for top/right/bottom/left:0 */  background-color: hsla(var(--hue), 18%, 75%, .8);  width: 100%;  height: 100%;  display: grid;  place-items: center;   /* centers the inner modal */  overflow: hidden;  transition: all .3s;  z-index: var(--z-modal);  visibility: hidden;  opacity: 0;  /*=== Effect 3 ===*/  /* perspective: 1000px; */}.modal__content{  position: relative;  background-color: black;  text-align: center;  padding: 3rem 2rem 2rem;  border-radius: 1rem 1rem 0 0;  transition: all .3s;  /*=== Effect 1 ===*/  transform: translateY(10%);  /*=== Effect 2 ===*/  /* transform: scale(.5) translateY(10%); */  /*=== Effect 3 ===*/  /* transform: rotateX(65deg) scale(.75) translateY(10%);  transform-origin: 50% 100%; */}.modal__img{  width: 150px;  margin-bottom: .75rem;}.modal__close{  display: inline-flex;  background-color: var(--first-color);  border-radius: .25rem;  color: #FFF;  font-size: 1.5rem;  position: absolute;  top: 2rem;  right: 2rem;  cursor: pointer;}.modal__title{  font-size: var(--big-font-size);  color: white;  font-weight: 500;}.modal__description{  margin-bottom: 1.5rem;  margin-top: 1.5rem;  color: white;}.modal__button-width{  width: 90%;}.modal__button-link{  display: block;  margin: 1rem auto 0;  background-color: transparent;  color: white;  font-weight: 500;  cursor: pointer; border: none; outline: none;}/* Show modal */.show-modal{  visibility: visible;  opacity: 1;}.show-modal .modal__content{  /*=== Effect 1 ===*/  transform: translateY(0);  /*=== Effect 2 ===*/  /* transform: scale(1) translateY(0); */  /*=== Effect 3 ===*/  /* transform: rotateX(0) scale(1) translateY(0); */}/*=============== BREAKPOINTS ===============*//* For small devices */@media screen and (min-width: 576px){  .modal__content{    margin: auto;    width: 380px;    border-radius: 1.25rem;  }  .modal__img{    width: 170px;  }}.modal-main img {width: 100%;}:root {--primary: #FF0055;--secondary: #00FF99;--bg-dark: #0a0a0a;--glass: rgba(255, 255, 255, 0.05);--glass-strong: rgba(20, 20, 20, 0.6);--border: rgba(255, 255, 255, 0.1);--font-main: 'Inter', sans-serif;--font-display: 'Montserrat', sans-serif;}/* SOCIAL BUTTONS */.social-links { display: flex; gap: 12px; align-items: center; }.social-btn {display: flex; align-items: center; gap: 8px;padding: 10px 18px;background: rgba(255,255,255,0.06);border: 1px solid var(--border);border-radius: 24px;color: white;text-decoration: none;font-size: 0.85rem;font-weight: 600;font-family: var(--font-main);transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);backdrop-filter: blur(12px);position: relative;overflow: hidden;white-space: nowrap;}.social-btn::before {content: '';position: absolute;top: 0; left: -100%; width: 100%; height: 100%;background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);transition: left 0.5s;}.social-btn:hover::before { left: 100%; }.social-btn:hover {background: rgba(255,255,255,0.12);border-color: rgba(255,255,255,0.3);transform: translateY(-1px);box-shadow: 0 4px 20px rgba(0,0,0,0.3);}.social-btn:active { transform: translateY(0); }.social-hero {display: flex;gap: 16px;margin-top: 32px;justify-content: center;flex-wrap: wrap;}.social-hero .social-btn {padding: 14px 24px;font-size: 1rem;min-height: 52px;box-shadow: 0 4px 20px rgba(0,0,0,0.2);}.hero-notice {background: var(--glass-strong);border: 1px solid var(--border);padding: 16px 24px;border-radius: 20px;margin-top: 28px;text-align: center;font-size: 0.9rem;color: #bbb;box-shadow: 0 8px 32px rgba(0,0,0,0.3);line-height: 1.4;}/* GLOBAL */* { margin: 0; padding: 0; box-sizing: border-box; }body {background-color: var(--bg-dark);color: white;font-family: var(--font-main);overflow-x: hidden;background-image:radial-gradient(circle at 10% 20%, rgba(255, 0, 85, 0.15) 0%, transparent 40%),radial-gradient(circle at 90% 80%, rgba(0, 255, 153, 0.1) 0%, transparent 40%);background-size: 200% 200%;animation: bgShift 15s ease infinite;}h1, h2, h3 {font-family: var(--font-display);font-weight: 800;text-transform: uppercase;letter-spacing: -1px;}.gradient-text {background: linear-gradient(90deg, #fff, var(--secondary));-webkit-background-clip: text;-webkit-text-fill-color: transparent;}.panic-text {color: var(--primary);text-shadow: 0 0 15px var(--primary);animation: neonFlicker 5s infinite alternate;}/* NAVBAR */nav {display: flex;justify-content: space-between;align-items: center;padding: 1.5rem 5%;background: rgba(10, 10, 10, 0.8);backdrop-filter: blur(10px);position: fixed;width: 100%;z-index: 1000;border-bottom: 1px solid var(--border);}.logo {font-size: 1.5rem;font-weight: bold;display: flex;align-items: center;gap: 10px;}.logo img { height: 32px; width: auto; border-radius: 4px; }.logo span {background: var(--primary);padding: 2px 8px;border-radius: 4px;font-size: 0.9rem;color: black;}.btn {padding: 12px 28px;border-radius: 50px;font-weight: 700;cursor: pointer;transition: all 0.3s ease;border: none;font-size: 1rem;position: relative;overflow: hidden;}.btn-connect {background: rgba(255,255,255,0.1);color: white;border: 1px solid var(--border);display: flex;align-items: center;gap: 8px;}.btn-connect:hover { background: rgba(255,255,255,0.2); border-color: white; }.btn-claim {background: linear-gradient(45deg, var(--primary), #ff4d88);color: white;width: 100%;font-size: 1.2rem;text-transform: uppercase;letter-spacing: 1px;box-shadow: 0 4px 30px rgba(255, 0, 85, 0.4);}.btn-claim:hover { box-shadow: 0 4px 50px rgba(255, 0, 85, 0.7); }/* HERO */.hero {min-height: 100vh;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;padding: 120px 20px 50px;position: relative;}.hero h1 { font-size: 4rem; line-height: 0.9; margin-bottom: 20px; }.hero-subtitle {font-size: 1.1rem;color: #ccc;max-width: 550px;margin: 0 auto 0px;font-weight: 500;letter-spacing: 0.5px;}/* AIRDROP CARD */.airdrop-container {background: var(--glass);border: 1px solid var(--border);padding: 40px;border-radius: 24px;backdrop-filter: blur(20px);max-width: 500px;width: 100%;text-align: left;box-shadow: 0 20px 50px rgba(0,0,0,0.5);position: relative;overflow: hidden;z-index: 10;margin-top: 40px;opacity: 0;animation: floatCard 6s ease-in-out infinite, fadeInSimple 1s ease-out forwards 1s;}.airdrop-container::before {content: '';position: absolute;top: 0; left: 0; right: 0; height: 4px;background: linear-gradient(90deg, var(--primary), var(--secondary));}.status-badge {display: inline-block;padding: 5px 12px;border-radius: 20px;background: rgba(0, 255, 153, 0.2);color: var(--secondary);font-size: 0.8rem;font-weight: bold;margin-bottom: 15px;animation: softPulse 2s infinite;}.progress-bar {width: 100%;height: 6px;background: rgba(255,255,255,0.1);border-radius: 10px;margin: 20px 0;overflow: hidden;}.progress-fill {height: 100%;width: 25%;background: var(--primary);box-shadow: 0 0 10px var(--primary);animation: pulseWidth 2s infinite alternate;}/* CLAIMS */.claims-section {width: 100%;max-width: 500px;margin-top: 20px;background: var(--glass-strong);border-radius: 16px;border: 1px solid var(--border);padding: 20px;backdrop-filter: blur(10px);}.claims-header {font-size: 0.9rem;color: #888;margin-bottom: 15px;display: flex;align-items: center;gap: 8px;}.live-dot {width: 8px; height: 8px; background: var(--secondary);border-radius: 50%;box-shadow: 0 0 8px var(--secondary);animation: blink 1s infinite;}.claim-row {display: flex;justify-content: space-between;align-items: center;padding: 12px 0;border-bottom: 1px solid rgba(255,255,255,0.05);animation: fadeIn 0.5s ease-out;font-size: 0.9rem;}.claim-row:last-child { border-bottom: none; }.wallet-info { display: flex; align-items: center; gap: 10px; }.wallet-icon {width: 30px; height: 30px;background: linear-gradient(135deg, #333, #111);border-radius: 50%;display: flex; justify-content: center; align-items: center;font-size: 0.7rem; color: #fff;}.amount-info { text-align: right; }.token-amount { color: var(--secondary); font-weight: bold; }.usd-amount { font-size: 0.75rem; color: #666; }.time-ago { font-size: 0.75rem; color: #555; margin-left: 8px; }/* TOKENOMICS */.tokenomics-section {padding: 80px 20px 40px;position: relative;z-index: 5;}.tokenomics-container {max-width: 1000px;margin: 0 auto;background: var(--glass-strong);border: 1px solid var(--border);border-radius: 32px;padding: 40px;backdrop-filter: blur(20px);display: flex;flex-wrap: wrap;align-items: center;gap: 50px;box-shadow: 0 20px 50px rgba(0,0,0,0.4);}.chart-wrapper {flex: 1;min-width: 300px;display: flex;justify-content: center;position: relative;}.pie-chart {width: 280px;height: 280px;border-radius: 50%;position: relative;background: conic-gradient(var(--secondary) 0% 30%,var(--primary) 30% 55%,#00CCFF 55% 72%,#9D00FF 72% 84%,#FF9900 84% 95%,#FFE600 95% 98%,#888888 98% 100%);box-shadow: 0 0 50px rgba(0,0,0,0.5);animation: spinIn 1.5s ease-out;}.pie-chart::after {content: "1B\A SUPPLY";white-space: pre;position: absolute;top: 50%; left: 50%;transform: translate(-50%, -50%);width: 160px; height: 160px;background: var(--bg-dark);border-radius: 50%;display: flex;align-items: center;justify-content: center;text-align: center;font-family: var(--font-display);font-weight: 900;font-size: 1.5rem;color: white;border: 4px solid rgba(255,255,255,0.05);}.legend-wrapper { flex: 1.5; min-width: 300px; }.legend-title {font-family: var(--font-display);font-size: 2rem;margin-bottom: 24px;text-transform: uppercase;}.legend-grid {display: grid;grid-template-columns: 1fr;gap: 16px;}.legend-item {display: flex;align-items: center;background: rgba(255,255,255,0.03);padding: 12px 16px;border-radius: 12px;border: 1px solid transparent;transition: all 0.3s ease;}.legend-item:hover {background: rgba(255,255,255,0.08);border-color: rgba(255,255,255,0.1);transform: translateX(5px);}.color-dot {width: 16px; height: 16px;border-radius: 4px;margin-right: 16px;box-shadow: 0 0 10px rgba(0,0,0,0.5);}.legend-text strong {display: block;font-size: 1rem;color: white;margin-bottom: 2px;}.legend-text span {font-size: 0.8rem;color: #888;}/* NEW SECTIONS (ABOUT, HOW-TO, ROADMAP, FAQ) */.section {padding: 40px 20px;}.section-inner {max-width: 1000px;margin: 0 auto;background: var(--glass-strong);border: 1px solid var(--border);border-radius: 24px;padding: 32px 28px;backdrop-filter: blur(20px);box-shadow: 0 20px 50px rgba(0,0,0,0.4);}.section-title {font-family: var(--font-display);font-size: 1.8rem;margin-bottom: 16px;text-transform: uppercase;}.section-sub {font-size: 0.95rem;color: #bbb;margin-bottom: 16px;max-width: 700px;}.section-list {list-style: none;margin-top: 10px;}.section-list li {margin-bottom: 8px;font-size: 0.95rem;color: #ddd;}/* TWO-COLUMN GRID for HOW-TO / ROADMAP / FAQ */.grid-2 {display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 20px;}.card {background: rgba(255,255,255,0.03);border-radius: 16px;border: 1px solid rgba(255,255,255,0.08);padding: 18px 18px 16px;}.card h3 {font-size: 1rem;margin-bottom: 6px;}.card p {font-size: 0.9rem;color: #bbb;}/* FAQ */.faq-item + .faq-item { margin-top: 12px; }.faq-q {font-weight: 600;margin-bottom: 3px;}.faq-a {font-size: 0.9rem;color: #bbb;}/* ANIMATIONS */@keyframes bgShift {0% { background-position: 0% 50%; }50% { background-position: 100% 50%; }100% { background-position: 0% 50%; }}@keyframes neonFlicker {0%, 18%, 22%, 25%, 53%, 57%, 100% {text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);opacity: 1;}20%, 24%, 55% {text-shadow: none;opacity: 0.5;}}@keyframes floatCard {0% { transform: translateY(0px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }50% { transform: translateY(-12px); box-shadow: 0 35px 70px rgba(0,0,0,0.6); }100% { transform: translateY(0px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }}@keyframes sheen {0% { left: -150%; }20% { left: 150%; }100% { left: 150%; }}.btn-claim::after {content: '';position: absolute;top: 0; left: -150%;width: 100%; height: 100%;background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);transform: skewX(-20deg);animation: sheen 3s infinite 2s;}@keyframes fadeUp {from { opacity: 0; transform: translateY(30px); }to { opacity: 1; transform: translateY(0); }}.hero h1 { opacity: 0; animation: fadeUp 0.8s ease-out forwards 0.2s; }.hero-subtitle { opacity: 0; animation: fadeUp 0.8s ease-out forwards 0.4s; }.social-hero { opacity: 0; animation: fadeUp 0.8s ease-out forwards 0.6s; }.hero-notice { opacity: 0; animation: fadeUp 0.8s ease-out forwards 0.8s; }@keyframes fadeInSimple { to { opacity: 1; } }@keyframes softPulse {0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 153, 0.4); }70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 255, 153, 0); }100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 153, 0); }}@keyframes pulseWidth { from { width: 23%; } to { width: 27%; } }@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }@keyframes spinIn { from { transform: rotate(-90deg) scale(0.8); opacity: 0; } to { transform: rotate(0) scale(1); opacity: 1; } }/* RESPONSIVE */@media (max-width: 768px) {.hero h1 { font-size: 2.5rem; }.hero { padding-top: 100px; }.logo img { height: 28px; }.social-hero { gap: 12px; }.social-hero .social-btn { padding: 12px 20px; font-size: 0.95rem; }.tokenomics-container { flex-direction: column; padding: 24px; gap: 30px; }.legend-title { text-align: center; }.grid-2 { grid-template-columns: 1fr; }.section-inner { padding: 24px 20px; }}</style>