/* wallet connect*/

/* loader*/
.loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 15, 15, 0.85); z-index: 9999; display: flex; justify-content: center; align-items: center; }

.loader::after { content: ""; width: 60px; height: 60px; border: 6px solid transparent; border-top: 6px solid #0e6073; border-radius: 50%; animation: spin 1s linear infinite; }

@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }


/* mint*/
.modalOverlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #0e0e0e, #1c1c1c);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.3), inset 0 0 15px rgba(0, 245, 255, 0.1);
  font-family: 'Orbitron', sans-serif;
  max-width: 90%;
  width: 410px;
  border: 1px solid #00f5ff44;
  animation: popIn 0.3s ease-out;
  z-index: 1000;
}

@media screen and (max-width: 480px) { .modalOverlay {  width: 80%; padding: 20px; }}

.modalBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #0e0e0e, #1c1c1c);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.3), inset 0 0 15px rgba(0, 245, 255, 0.1);
  font-family: 'Orbitron', sans-serif;
  max-width: 90%;
  width: 410px;
  border: 1px solid #00f5ff44;
  animation: popIn 0.3s ease-out;
  z-index: 1000;
}

@media screen and (max-width: 480px) { .modalBox {  width: 80%; padding: 20px; }}

#mintSection input[type="text"] { width: 100%; padding: 12px; font-size: 18px; border: 2px solid #ff00ff; border-radius: 8px; background-color: #222; color: #fff; margin-bottom: 15px; outline: none; transition: 0.3s ease; } #mintSection input[type="text"]:focus { border-color: #00ffff; box-shadow: 0 0 10px #00ffff88; } #mintBtn { margin-top: 3vh; padding: 12px 24px; font-size: 18px; font-weight: bold; background-color: #0e6073; color: #000; border: none; border-radius: 8px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; } #mintBtn:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 0 12px #08573f; } #mintBtn:disabled { opacity: 0.5; cursor: not-allowed; } #mintStatus { margin-top: 10px; font-size: 14px; color: white; text-align: center; } #mintStatus.success { color: #00ff88; } #mintStatus.error { color: #ff4444; } #mintStatus.info { color: #ffaa00; } #refcodeInput { padding: 12px; font-size: 16px; width: 100%; border: 2px solid #ff00cc; border-radius: 12px; background: #1a1a1a; color: #fff; outline: none; transition: 0.3s; } #refcodeInput:focus { border-color: #ff66ff; box-shadow: 0 0 10px #ff66ff88; } @keyframes popIn { from { transform: translate(-50%, -60%) scale(0.8); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: 1; } } @media (max-width: 768px) { #mintSection input[type="text"], #refcodeInput { font-size: 16px; padding: 10px; } #mintBtn { font-size: 16px; padding: 10px 20px; } #mintStatus { font-size: 13px; } }
.info { color: #00f5ff; }
.success { color: #00ff88; }
.error { color: #ff4d4d; }


#mintStatus { min-height: 20px; width: 100%; text-align: center; font-size: 0.9em; margin-top: 10px; word-break: break-word; transition: color 0.3s ease; }

.success { color: #00ff88; }
.error { color: #ff4d4d; }
.info { color: #00f5ff; }

#mintSs { min-height: 20px; width: 100%; text-align: center; font-size: 0.9em; word-break: break-word; transition: color 0.3s ease; }

/* site */
.site { width: 100%; height: 100vh; }

.side-menu { background-color: #0c232c; backdrop-filter: blur(30px); box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37); position: fixed; top: 0; left: 0; width: 25%; height: 100vh; display: flex; flex-direction: column; padding-top: 2vh; z-index: 1; }

.side-menu .logo { padding: 5px; margin-bottom: 20px; }

.logo { display: flex; align-items: center; color: #fff; }

.logo img { width: 90px; height: 90px; margin-left: 2vw; }

.side-menu button { background: none; border: none; color: #ddd; font-size: 18px; font-weight: 500; padding: 15px 25px; text-align: left; cursor: pointer; transition: all 0.3s ease; margin-bottom: 5px; border-left: 5px solid transparent; }

.side-menu button:hover { background: rgba(255, 255, 255, 0.05); color: #18C8FF; border-left-color: #18C8FF; }

.side-menu button.active { background-color: #0e6073; color: #fff; border-left-color: #933FFE; font-weight: 600; }

.profile { display: flex; align-items: center; position: absolute; top: 5vh; right: 2vw; margin: 0; flex-direction: row-reverse; gap: 7px; z-index: 2; }

.profile img { width: 40px; height: 40px; border-radius: 50%; transition: 0.3s; }

.profile img:hover { transform: scale(1.1);}

.name { font-size: 20px; font-weight: 600; color: #fff; margin-top: 0; text-align: right; }

.footer-icons { position: fixed; bottom: 5vh; left: 0; right: 0; display: flex; gap: 20px; justify-content: center; pointer-events: auto; transition: all 0.3s ease; z-index: 1000; }

.footer-icons img { width: 25px; height: 25px; cursor: pointer; }

/* Mobile styles */
@media (max-width: 768px) {
  .site { flex-direction: column; }
  .side-menu { width: 60%; transform: translateX(-100%); z-index: 1001; background-color: transparent;}
  .side-menu.active { transform: translateX(0); }
  .menu-handle { position: fixed; top: 3vh; left: 3vh; width: 45px; height: 45px; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: bold; color: #fff; cursor: pointer; z-index: 1002; transition: left 0.3s ease; border-radius: 15px; box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); }
  .menu-handle span { display: block; }
  .overlay.active { display: block; }
}

/* mining */
.mining { box-sizing: border-box; margin-top: 9vh; margin-left: 25%; width: 75%; display: flex; flex-direction: column; align-items: center; padding: 30px; color: white; gap: 30px; }

.top-stats { display: flex; justify-content: center; gap: 50px; width: 100%; }

.stat-box { background: rgba(255, 255, 255, 0.05); border: 2px solid #18C8FF; border-radius: 20px; padding: 10px 15px; text-align: center; backdrop-filter: blur(6px); min-width: 100px; box-shadow: 0 0 10px #18C8FF88; transition: transform 0.2s ease; }

.stat-box .label { font-size: 14px; color: #ccc; display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }

.level, .balance, .rewarddaily { font-size: 20px; font-weight: bold; color: #fff; }

.level-progress-container { display: flex; align-items: center; justify-content: space-between; width: 50%; margin: 0 auto; gap: 10px; color: white; font-size: 14px; }

.level-start, .level-end { white-space: nowrap; }

.progress-bar { flex: 1; height: 11px; background: rgba(255, 255, 255, 0.1); border: 1px solid #18C8FF; border-radius: 999px; overflow: hidden; box-shadow: 0 0 7px #18C8FF88; position: relative; }

.progress-fill { height: 100%; background: linear-gradient(to right, #0e6073, #08573f); transition: width 0.3s ease; }

.powerup { background: linear-gradient(to right, #0e6073, #08573f); color: white; padding: 10px 30px; border: none; border-radius: 999px; font-weight: bold; font-size: 16px; width: 80%; text-transform: uppercase; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }

.powerup:hover { transform: scale(1.05); }

@media (max-width: 768px) {
  .mining { margin-top: 15vh; height: 85vh; margin-left: 0; width: 100vw; padding: 20px 10px; gap: 20px; box-sizing: border-box;}

  .top-stats { flex-direction: row; justify-content: center; align-items: center; flex-wrap: wrap; gap: 15px; }

  .stat-box { padding: 10px 14px; min-width: 75px; font-size: 12px; }

  .stat-box .label { font-size: 11px; }

  .level, .balance, .rewarddaily { font-size: 16px; }

  .mining-center { gap: 15px; }

  .powerup { padding: 10px 20px; font-size: 14px;  min-width: 120px; }

  .level-progress-container { width: 70%; margin: 0 auto; }
  }


/* mining center*/
.mining-center { box-sizing: border-box; display: flex; flex-direction: column; align-items: center; position: relative; }

.wrapper { position: relative; width: 400px; height: 350px; }

.collect-button { position: absolute; top: 170px; left: 50%; transform: translate(-50%, -50%); z-index: 3;
      width: 35vw; padding: 20px 35px; font-size: 18px;
      font-weight: bold; color: #fff; background: linear-gradient(to right, #0e6073, #08573f);
      border: none; border-radius: 999px; cursor: pointer;
      box-shadow: 0 0 20px #08573f; transition: all 0.3s ease;
      animation: pulse 1.5s infinite; display: flex;
      justify-content: center; align-items: center;}
.collect-button:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 25px #0e6073; }

#case.disabled, #fan.disabled, #cc.disabled { opacity: 1; filter: grayscale(100%); pointer-events: none; }

#neon.disabled {
  animation: none !important;
  filter: grayscale(100%);
  opacity: 1;
  pointer-events: none;
  background-color: red;
}

.fan { position: absolute; width: 175px; height: 175px; transform: rotateX(10deg) rotateY(27deg);
      transition: all .3s ease; }


.fan.top { top: 71px; left: 50px; z-index: 1; }

.neon { width: 100px; height: 50px;
  margin-top: 95px; margin-left: 250px; animation: glowEffect 3s infinite; filter: grayscale(100%); }

@keyframes glowEffect {
  0% { filter: grayscale(100%); }
  50% { background-color: #FFFF00; filter: grayscale(0%); }
  100% { filter: grayscale(100%); }}

.cc { width: 175px; height: 190px;
      margin-top: -73px; margin-left: 50px; background-color: grey;}

.fan.active { border-radius: 50%; animation: spin 2s linear infinite;
      box-shadow: inset 0 0  100px #08573f; }

.pc-case { position: absolute;
      top: 0px; left: 50%; transform: translateX(-50%);
      width: 370px; height: 340px; z-index: 2;}

@keyframes spin {
    from { transform: rotateX(10deg) rotateY(27deg) rotate(0deg); }
    to   { transform:rotateX(10deg)  rotateY(27deg) rotate(360deg); } }


@media (max-width: 768px) {
  .collect-button { width: 80vw; }
  .wrapper {
    top: 10vh;
    height: 50vh;
  }
}


@media (max-width: 1279px){
  .collect-button { width: 80vw; }
  .mining { margin-top: 15vh; height: 85vh;}
  .wrapper {

    top: 7vh;
    height: 50vh;
  }
}

@media (max-width: 375px){
  .collect-button { width: 80vw; }
  .mining { margin-top: 10vh; height: 85vh;}
  .wrapper {
    top: 3vh;
    height: 50vh;
  }
}

/* profile */
#profile { margin-top: 15vh; width: 75%; margin-left: 25%; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; height: 85vh; color: white; padding: 0; box-sizing: border-box; } .topprofile { background: linear-gradient(to right, #0e6073, #08573f); display: flex; align-items: center; justify-content: space-between; border-radius: 35px; color: white; padding: 10px; width: 100%; height: 30vh; gap: 20px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); box-sizing: border-box; } #profilelogo { margin-left: 2vw; width: 22vh; height: 22vh; border-radius: 50%; transition: transform 0.3s ease; } #profilelogo:hover { transform: scale(1.1); } .info { margin-top: 3vh; margin-left: -30vw; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; } #username { font-size: 24px; font-weight: bold; color: #fff; padding: 8px 20px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); text-align: left; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 8px #9333EA, 0 0 10px #18C8FF; }

.button-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vh;
  position: absolute;
  right: 3vw;
}

#mintMoreToggle,
#withdraw {
  background-color: #0e6073;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 1px;
  width: fit-content;
}

#mintMoreToggle:hover,
#withdraw:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #18C8FFaa;
}
#withdraw:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 0.6;
}

.names-container { width: 100%; display: flex; flex-direction: column; gap: 10px; color: #fff; padding: 20px; box-sizing: border-box; } .name-item { background: linear-gradient(to right, #0e6073, #08573f); padding: 15px; border-radius: 999px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); } .name-item span { font-size: 18px; font-weight: bold; color: #fff; } .set-active-btn { background-color: #0e6073; border: none; color: #fff; padding: 8px 15px; border-radius: 999px; cursor: pointer; font-weight: bold; transition: background-color 0.3s; } .set-active-btn:hover { background-color: #18C8FFaa; } .info { color: #ccc; } .success { color: #4ade80; } .error { color: #f87171; } .mintmore-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; backdrop-filter: blur(12px); background-color: rgba(0, 0, 0, 0.65); display: flex; justify-content: center; align-items: center; z-index: 999; } .mintmore { background: radial-gradient(circle at top left, #1a1a1a 40%, #111 100%); padding: 40px; border-radius: 25px; box-shadow: 0 0 40px #0e6073, 0 0 60px #08573f; display: flex; flex-direction: column; gap: 25px; z-index: 1000; color: white; width: 90%; max-width: 500px; transition: transform 0.3s ease, box-shadow 0.3s ease; transform: scale(1); animation: fadeInScale 0.4s ease; } .mintmore input[type="text"] { padding: 16px; border-radius: 15px; border: none; outline: none; font-size: 20px; background: rgba(255, 255, 255, 0.05); color: #fff; box-shadow: 0 0 10px #18C8FF66; text-align: center; } #mintSs { min-height: 20px; width: 100%; text-align: center; font-size: 0.9em; word-break: break-word; transition: color 0.3s ease; } .mintmore input[type="text"]::placeholder { color: #ccc; letter-spacing: 1px; } .mintmore button { padding: 14px; border: none; border-radius: 999px; background: linear-gradient(to right, #0e6073, #08573f); color: white; font-size: 18px; font-weight: bold; cursor: pointer; box-shadow: 0 0 15px #0e6073; transition: all 0.3s ease; letter-spacing: 1px; } .mintmore button:hover { transform: scale(1.05); } @keyframes fadeInScale { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 768px) { #profile { width: 100%; margin-left: 0; padding: 0 10px; box-sizing: border-box; align-items: center; } .topprofile { flex-direction: column; align-items: center; justify-content: center; height: auto; padding: 30px 20px; text-align: center; width: 100%; box-sizing: border-box; } #profilelogo { width: 120px; height: 120px; margin: 0 auto 10px auto; } .info { margin: 10px 0; align-items: center; text-align: center; } #username { font-size: 20px; padding: 6px 16px; } #walletAddress { font-size: 14px; color: #ccc; word-break: break-word; } .copy-btn { background: #9333EA; border: none; color: white; padding: 6px 12px; border-radius: 8px; cursor: pointer; font-size: 14px; } .copy-btn:hover { background: #18C8FF; } .mintmore { width: 80%; }
  .button-column {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5vw;
    margin-bottom: 7px; position: static; }
  .button-column button { padding: 8px 16px; font-size: 14px; }}
.names-container { overflow-y: auto; padding-right: 10px; }
.names-container::-webkit-scrollbar { width: 6px; }
.names-container::-webkit-scrollbar-thumb { background-color: #18C8FFaa; border-radius: 10px; }
@media (min-width: 769px) {  .topprofile { flex-direction: row; align-items: center; justify-content: flex-start; } .info { margin-left: 0.5vw; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; } #username { text-align: left; text-transform: uppercase; letter-spacing: 2px; } #useraddress { font-size: 14px; color: #ccc; word-break: break-word; }}

/* invitee */
#invite { margin-top: 15vh; width: 75%; margin-left: 25%; color: white; font-family: 'Arial Black', sans-serif; display: flex; flex-direction: column; gap: 10px; height: 85vh; overflow: hidden; box-sizing: border-box; }


.ref-statistics {
  text-align: center;
  background: linear-gradient(to right, #0e6073, #08573f);
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  color: #fff;
  box-shadow: 0 0 5px #18c8ff33;
}

.ref-statistics p {
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: bold;
  color: #ffffffdd;
}

.ref-box-container {
  display: flex;
  gap: 5vw;
  justify-content: center;
  flex-wrap: nowrap;
}

.ref-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5vw;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 10px #18c8ff33;
  box-sizing: border-box;
}

.ref-pair {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: white;
}

.ref-link-container {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 15px;
  color: #ffffffcc;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 3vh;
  box-shadow: inset 0 0 10px #18c8ff33;
}

.ref-link-container p {
  text-align: center;
}

.ref-link-container p.ref-info-title {
  text-align: left;
  margin-top: 3vh;
}

.ref-info-title {
  text-align: left;
  margin: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #18c8ff;
  text-shadow: 0 0 5px #18c8ff88;
  letter-spacing: 0.5px;
}

.ref-info-list {
  list-style: decimal inside;
  padding-left: 10px;
  margin: 0;
  color: #ffffffcc;
  font-size: 14.5px;
  line-height: 1.7;
  height: 25vh;
  box-sizing: border-box;
}

.ref-link-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 10px;
  align-items: center;
}

.ref-link-text {
  flex: 1 1 auto;
  min-width: 170px;
  word-break: break-all;
  font-weight: bold;
  margin: 5px 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ref-link-buttons {
  display: flex;
  gap: 10px;
}

.copy-btn,
.share-btn,
.share-option-btn {
  background: #0e6073;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

@media (max-width: 769px) {
  #invite {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .ref-box-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
    justify-content: center;
  }

  .ref-box {
    flex: 0 0 auto;
    min-width: 110px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(6px);
    box-shadow: inset 0 0 10px #18c8ff33;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .ref-pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    gap: 3px;
    color: white;
  }
}

/* tasks */
#tasks {
  font-family: 'Arial Black'; margin-top: 15vh; width: 75%; margin-left: 25%;
  display: flex; flex-direction: column; height: 85vh;
  overflow: hidden; box-sizing: border-box;}

.taskss { display: flex; flex-direction: column; gap: 30px; height: 100%; box-sizing: border-box; }

.task {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6); padding: 10px;
  border: 1px solid #444; border-radius: 25px;
  background: linear-gradient(to right, #0e6073, #08573f); color: white;
  position: relative; transition: transform 0.2s ease; margin-bottom: 10px;}

.task h3 { text-align: center; margin: 5px; font-size: 18px; font-weight: bold;}

.progress-wrapper { display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  justify-content: flex-start; padding-left: 10px;}

.progress-container { position: relative; flex: 1; width: 85vw; margin-left: 15px;}

.milestone-labels {position: absolute;top: -15px;width: 100%;pointer-events: none;}

.milestone-labels .milestone {position: absolute;transform: translateX(-50%);font-size: 12px;color: white;}

.progress-bar {width: 100%; height: 8px; background: #444; border-radius: 5px; overflow: hidden; margin-top: 6px;}

.progress-fill { height: 100%; background: linear-gradient(to right, #00f260, #0575e6); border-radius: 5px;}

.mint-btn {
  padding: 10px 17px;
  border-radius: 999px;
  background-color: #0e6073;
  color: white;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  transition: transform 0.2s ease, background-color 0.3s ease;
  min-width: 100px;
  font-weight: bold;
}

.mint-btn:disabled { background: #555 }

@media screen and (max-width: 768px) {
  #tasks {width: 90%;
    margin-left: auto; margin-right: auto;}

    .milestone-labels .milestone {font-size: 9px;}

  .taskss { gap: 15px; }

  .task {
    padding: 5px 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    background: linear-gradient(to right, #0e6073, #08573f);
    color: white;
    position: relative;
    transition: transform 0.3s ease-in-out;
  }
  .progress-container { margin-left: 5px;}

  .task h3 { font-size: 13px; margin: 7px 0 15px 0; text-align: center;
   font-weight: bold;}

   .mint-btn {
  padding: 7px 11px;
  font-size: 14px;
  min-width: 90px;
}
}

/* about */
#about { margin-top: 10vh; width: 75%; margin-left: 25%; color: white; font-family: 'Arial Black', sans-serif; display: flex; flex-direction: column; gap: 10px; height: 90vh; overflow: hidden; box-sizing: border-box; }

#about h2 { font-size: 2rem; margin-bottom: 15px; text-align: center; color: #ffffff; }
#about p { text-align: center; font-size: 1rem; line-height: 1.6; margin: 0 auto; max-width: 80%; color: #e0e0e0; }
#about ul { list-style: none; padding: 0; margin: 20px auto; max-width: 60vw; text-align: left; }
#about ul li { margin-bottom: 10px; font-size: 1rem; line-height: 1.4; }
#about .final-call { margin-top: 20px; font-size: 1.5rem; font-weight: bold; color: #ffffff; text-align: center; }

@media (max-width: 768px) {
  #about { margin-left: 0; width: 100vw; padding: 20px 10px; gap: 20px; box-sizing: border-box;}
    #about h2 {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }

  #about p, #about ul li {
    font-size: 0.9rem;
  }
  #about ul {  max-width: 80vw; text-align: center; }
  #about .final-call {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
    #about h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  #about p, #about ul li {
    font-size: 0.7rem;
  }
  #about .final-call {
    font-size: 0.9rem;
  }
}
#shareOptions {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #0e0e0e, #1c1c1c);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.3), inset 0 0 15px rgba(0, 245, 255, 0.1);
  font-family: 'Orbitron', sans-serif;
  width: 90%;
  max-width: 390px;
  border: 1px solid #00f5ff44;
  animation: popIn 0.3s ease-out;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.sharess {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#twitterShareBtn, #warpcastShareBtn {
  font-size: 14px;
  padding: 12px 20px;
  min-width: 120px;
  border-radius: 999px;
  background: linear-gradient(145deg, #0e6073, #0a4452);
  color: white;
  border: 1px solid #00f5ff55;
  cursor: pointer;
  transition: all 0.3s ease;
}
