:root {
  --bg: #000000;
  --green: #00b47d;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.12);
  --up: #00b47d;
  --down: #f65454;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  position: relative;
  overflow-x: hidden;
}

body.overlay-hidden::before {
  display: none !important;
}

body::before {
  content: '';
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 400px 350px at center 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 9998;
  pointer-events: none;
  display: block;
}

button,
input {
  font-family: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image: url(./bg.png);
  background-size: 150%;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
  overflow: hidden;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(900px 520px at 12% 8%, rgba(70, 70, 70, 0.15), transparent 58%),
    radial-gradient(800px 480px at 92% 92%, rgba(90, 90, 90, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(0, 0, 0, 0.25) 42%, rgba(0, 0, 0, 0.25) 100%);
  background-size: auto;
  pointer-events: none;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./bg.png);
  background-size: 150%;
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: scaleX(-1) scaleY(-1);
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  padding: 0 16px 0 12px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 9999;
  position: relative;
}

.brand-logo {
  display: block;
  width: 110px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  white-space: nowrap;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  padding: 0 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

/* pill style used for primary Exchange/Web3 entry */
.nav-item.pill {
  background: transparent;
  padding: 4px 6px;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Exchange boxed label */
.pill-exchange {
  border: 1px solid rgba(255,255,255,0.95);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  background: transparent;
  line-height: 1;
}

/* Web3 toggle-like label */
.pill-web3 {
  background: rgba(200,200,200,0.12);
  color: rgba(200,200,200,0.95);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1;
}

/* make nav items after the pill slightly smaller */
.main-nav .nav-item:not(.pill) {
  font-size: 13px;
  padding: 0 8px;
  font-weight: 500;
}

/* show a small gray down-arrow after most nav items */
.nav-item::after {
  content: '▾';
  margin-left: 0px;
  color: rgba(200,200,200,0.55);
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  transform: translate(-1px, 0);
}

/* don't show arrow for pill or explicit caret elements */
.nav-item.pill::after { content: ''; }
.nav-item .caret { display: none; }
.nav-toggle .nav-item.is-active {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.caret {
  font-size: 9px;
  opacity: 0.7;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}

.gift-icon {
  display: grid;
  place-items: center;
}

.login-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.signup-btn {
  height: 32px;
  padding: 0 14px;
  border: none;
  border-radius: 20px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}

.signup-btn:hover,
.signup-box button:hover {
  background: #e8e8e8;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  grid-template-areas:
    "left right"
    "trust trust";
  gap: 20px 56px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 40px 0 32px;
  min-height: calc(100vh - 48px);
  min-height: calc(100vh - 64px);
  align-content: center;
}

.hero-left {
  grid-area: left;
  padding-top: 12px;
}

.hero-right {
  grid-area: right;
}

.hero-left h1 {
  margin: 0 0 22px 0;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 600px;
}

.hero-left h1 span {
  color: var(--green);
}

.tagline {
  margin: 8px 0 0  ;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.reward-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
}

.reward-icon {
  display: grid;
  place-items: center;
  color: var(--green);
}

.signup-box {
  display: flex;
  align-items: center;
  width: min(540px, 100%);
  height: 72px;
  margin-top: 22px;
  padding: 6px 6px 6px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.03);
}

.signup-box input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.signup-box input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.signup-box button {
  height: 60px;
  padding: 0 26px;
  border: none;
  border-radius: 40px;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.social-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 20, 20, 0.72);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.card-market {
  padding: 12px 18px 14px;
}

.hero-right {
  transform: translate(-12px, -12px);
  will-change: transform;
}

.card-feed {
  margin-top: 16px;
  padding: 16px 18px 14px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.tab-group {
  display: flex;
  gap: 18px;
}

.tab {
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  cursor: pointer;
}

.tab.is-active {
  color: #fff;
  font-weight: 600;
}

.panel-header a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 12px;
}

.panel-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.ticker-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.coin {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.coin-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.zec { background: #f4b728; color: #1a1200; }
.bnb { background: #f3ba2f; color: #1a1200; }
.link { background: #2a5ada; color: #fff; }
.soph { background: #6d7cff; color: #fff; }
.dot { background: #e6007a; color: #fff; }

.coin-copy strong,
.price {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.coin-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  text-align: right;
  font-weight: 500;
}

.change {
  min-width: 64px;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.change.up { color: var(--up); }
.change.down { color: var(--down); }

.card-feed ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.card-feed li {
  position: relative;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.card-feed li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.45);
}

.trusted-row {
  grid-area: trust;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 20px auto 0;
  justify-self: center;
  padding: 40px 0;
  width: 100%;
}

.trusted-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.trusted-item:last-child {
  border-right: none;
}

.trust-badge-img {
  width: 280px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.trusted-item div {
  width: 100%;
  text-align: left;
}

.trusted-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.trusted-item span {
  display: block;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "trust";
    width: calc(100% - 40px);
    padding-top: 36px;
  }

  .trusted-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .signup-box {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
  }

  .signup-box button {
    width: 100%;
  }

  .tagline {
    font-size: 22px;
  }
}

/* Airdrop announcement */
.airdrop-box {
  --airdrop-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --neon: #00ffc2;
  --neon-dim: rgba(0, 255, 194, 0.22);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 32px));
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 255, 194, 0.1), transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(0, 180, 255, 0.08), transparent 48%),
    #050507;
  border: 1px solid rgba(0, 255, 194, 0.28);
  border-radius: 28px;
  z-index: 10000;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px #000,
    0 24px 80px rgba(0, 0, 0, 0.72),
    0 0 36px rgba(0, 255, 194, 0.16),
    inset 0 1px 0 rgba(0, 255, 194, 0.12),
    inset 0 0 80px rgba(0, 255, 194, 0.04);
  animation: slideInBox 0.7s var(--airdrop-ease);
}

.airdrop-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.airdrop-aurora::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 194, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 194, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 35%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 10%, transparent 72%);
  opacity: 0.55;
}

.airdrop-aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 255, 194, 0.28), transparent 32%),
    radial-gradient(circle at 8% 92%, rgba(0, 200, 255, 0.16), transparent 34%);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.45;
  animation: auroraDrift 10s ease-in-out infinite;
}

.blob-a {
  width: 200px;
  height: 200px;
  background: #00ffc2;
  top: -80px;
  right: -50px;
}

.blob-b {
  width: 170px;
  height: 170px;
  background: #00a8ff;
  bottom: 10px;
  left: -60px;
  animation-delay: -3s;
}

.blob-c {
  width: 110px;
  height: 110px;
  background: #39ffb3;
  top: 42%;
  left: 38%;
  opacity: 0.18;
  animation-delay: -6s;
}

@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.12); }
}

.loading-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 255, 194, 0.12), transparent 42%),
    #050507;
  animation: fadeOutLoading 0.55s var(--airdrop-ease) 2.5s forwards;
  z-index: 20;
}

@keyframes fadeOutLoading {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.spinner {
  position: relative;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(0, 180, 125, 0.15);
  border-top-color: #00d9a3;
  border-right-color: rgba(0, 180, 125, 0.45);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-core {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 163, 0.35), transparent 70%);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.2px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-dots {
  display: flex;
  gap: 6px;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d9a3;
  animation: loadingDot 1.1s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes loadingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.35; }
  40% { transform: translateY(-5px); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes slideInBox {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

.airdrop-animation-container {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInContent 0.8s var(--airdrop-ease) 2.5s both;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 217, 163, 0.22);
  animation: ringPulse 3.4s ease-in-out infinite;
}

.ring-outer {
  inset: 0;
}

.ring-mid {
  inset: 16px;
  animation-delay: -1.2s;
  border-style: dashed;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f0b0;
  box-shadow: 0 0 12px #00f0b0;
  animation: orbitSpin 4.5s linear infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg) translateX(56px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(56px) rotate(-360deg); }
}

.coin-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: floatCoin 4s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(0, 180, 125, 0.7));
  z-index: 1;
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.airdrop-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}

.airdrop-content > * {
  animation: fadeInContent 0.7s var(--airdrop-ease) both;
}

.airdrop-content > :nth-child(1) { animation-delay: 2.55s; }
.airdrop-content > :nth-child(2) { animation-delay: 2.62s; }
.airdrop-content > :nth-child(3) { animation-delay: 2.7s; }
.airdrop-content > :nth-child(4) { animation-delay: 2.78s; }
.airdrop-content > :nth-child(5) { animation-delay: 2.86s; }
.airdrop-content > :nth-child(6) { animation-delay: 2.94s; }
.airdrop-content > :nth-child(7) { animation-delay: 3.02s; }
.airdrop-content > :nth-child(8) { animation-delay: 3.1s; }

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 180, 125, 0.12);
  border: 1px solid rgba(0, 217, 163, 0.28);
  color: #9ff5d6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00f0b0;
  box-shadow: 0 0 0 0 rgba(0, 240, 176, 0.7);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 240, 176, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(0, 240, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 240, 176, 0); }
}

.airdrop-content h2 {
  font-size: 22px;
  font-weight: 650;
  margin: 4px 0 0;
  color: #fff;
  letter-spacing: -0.4px;
}

.airdrop-content .reward-highlight {
  font-size: 46px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  background: linear-gradient(180deg, #7fffd4 0%, #00d9a3 45%, #00b47d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInContent 0.7s var(--airdrop-ease) 2.7s both, rewardShine 3.2s ease-in-out 3.2s infinite;
}

@keyframes rewardShine {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 217, 163, 0.25)); }
  50% { filter: drop-shadow(0 0 18px rgba(0, 240, 176, 0.55)); }
}

.sol-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  font-weight: 500;
}

.airdrop-content .reward-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin: 2px 0 6px;
}

.benefits-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--airdrop-ease), border-color 0.35s ease, background 0.35s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 217, 163, 0.35);
  background: rgba(0, 180, 125, 0.08);
}

.benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #04140f;
  background: linear-gradient(180deg, #00f0b0, #00b47d);
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  line-height: 1.3;
}

.slots-remaining {
  display: none;
}

.progress-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 0;
}

.progress-bar {
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 85%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00b47d, #00f0b0, #7fffd4, #00b47d);
  background-size: 200% 100%;
  animation: progressShimmer 1.6s linear infinite;
}

@keyframes progressShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.progress-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.airdrop-footer {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.countdown-timer {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  animation: fadeInContent 0.8s var(--airdrop-ease) 3.15s both;
  background: rgba(8, 12, 12, 0.72);
  border: 1px solid rgba(0, 217, 163, 0.22);
  padding: 8px 12px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.timer-label {
  font-size: 10px;
  color: rgba(0, 211, 163, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.timer-display {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #00f0b0;
  letter-spacing: 0.04em;
}

.recent-claims {
  margin: 0;
  padding: 0;
  animation: fadeInContent 0.8s var(--airdrop-ease) 3.2s both;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.claim-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  margin: 0;
  padding: 6px 10px;
  line-height: 1.2;
  border-radius: 999px;
  background: rgba(8, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: claimSlide 4.5s var(--airdrop-ease) infinite;
}

.claim-item:nth-child(2) {
  animation-delay: 1.4s;
}

@keyframes claimSlide {
  0%, 100% { opacity: 0.55; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-4px); }
}

.claim-success {
  color: #00b47d;
  font-weight: 700;
  font-size: 12px;
  margin-right: 6px;
}

.claim-time {
  font-weight: 500;
}

.stake-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(180deg, #1affc2 0%, #00d9a3 55%, #00b47d 100%);
  border: 0;
  color: #04140f;
  padding: 15px 48px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.35s var(--airdrop-ease), box-shadow 0.35s ease;
  margin-top: 4px;
  margin-bottom: 4px;
  box-shadow: 0 10px 28px rgba(0, 180, 125, 0.32);
  letter-spacing: 0.2px;
}

.stake-btn span {
  position: relative;
  z-index: 1;
}

.stake-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 66%);
  transform: translateX(-120%);
  animation: btnShine 2.8s ease-in-out 3.4s infinite;
}

@keyframes btnShine {
  0% { transform: translateX(-120%); }
  35%, 100% { transform: translateX(120%); }
}

.stake-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 217, 163, 0.42);
}

.stake-btn:active {
  transform: scale(0.98);
}

.airdrop-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.62);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s var(--airdrop-ease), color 0.2s ease, background 0.2s ease;
  padding: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.airdrop-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

@media (max-width: 640px) {
  .airdrop-box {
    width: min(400px, calc(100vw - 48px));
    max-height: 78dvh;
    padding: 28px 20px 22px;
    gap: 14px;
    border-radius: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .airdrop-content {
    gap: 12px;
  }

  .live-badge {
    padding: 6px 12px;
    font-size: 11px;
    gap: 8px;
  }

  .airdrop-content h2 {
    font-size: 20px;
    margin: 4px 0 0;
  }

  .airdrop-content .reward-highlight {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .sol-price {
    font-size: 13px;
  }

  .airdrop-content .reward-description {
    font-size: 14px;
    line-height: 1.45;
    margin: 2px 0 6px;
  }

  .benefits-box {
    gap: 8px;
  }

  .benefit-item {
    padding: 12px 10px;
    gap: 8px;
    border-radius: 14px;
  }

  .benefit-text {
    font-size: 12px;
    line-height: 1.35;
  }

  .progress-section {
    gap: 8px;
    margin: 4px 0 0;
  }

  .stake-btn {
    padding: 16px 22px;
    font-size: 16px;
    border-radius: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .airdrop-footer {
    margin-top: 4px;
    gap: 10px;
  }

  .countdown-timer {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .timer-display {
    font-size: 20px;
  }

  .claim-item {
    padding: 7px 11px;
    font-size: 11px;
  }

  .airdrop-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .wallet-modal {
    border-radius: 24px;
  }

  .wallet-modal-content {
    max-width: none;
    width: calc(100% - 20px);
    max-height: calc(78dvh - 28px);
    border-radius: 20px;
    padding: 44px 18px 24px;
  }

  .wallet-modal-content h3 {
    font-size: 22px;
    margin: 10px 0 8px;
  }

  .wallet-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 18px;
  }

  .wallet-list {
    gap: 10px;
    margin-bottom: 18px;
  }

  .wallet-item {
    padding: 16px;
    gap: 14px;
    border-radius: 16px;
  }

  .wallet-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 22px;
  }

  .wallet-name {
    font-size: 16px;
  }

  .wallet-status {
    font-size: 13px;
  }

  .wallet-no-extension {
    font-size: 13px;
    line-height: 1.55;
    padding: 4px 8px 0;
  }

  .wallet-back-btn {
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
  }
}

/* Wallet Detection Modal */
.wallet-modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 28px;
  z-index: 10001;
  animation: fadeIn 0.35s var(--airdrop-ease);
}

.wallet-modal-content {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 255, 194, 0.1), transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(0, 180, 255, 0.08), transparent 48%),
    #050507;
  border: 1px solid rgba(0, 255, 194, 0.28);
  border-radius: 22px;
  padding: 32px 24px 24px;
  max-width: 420px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow:
    0 0 0 1px #000,
    0 18px 50px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(0, 255, 194, 0.14),
    inset 0 1px 0 rgba(0, 255, 194, 0.12);
  animation: walletPanelIn 0.6s var(--airdrop-ease);
}

.wallet-modal-content > *:not(.airdrop-aurora) {
  position: relative;
  z-index: 1;
}

@keyframes walletPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.wallet-modal-content h3 {
  font-size: 22px;
  font-weight: 650;
  color: #fff;
  margin: 10px 0 8px;
  text-align: center;
  letter-spacing: -0.4px;
  animation: fadeInContent 0.55s var(--airdrop-ease) 0.08s both;
}

.wallet-modal-content .live-badge {
  display: flex;
  width: fit-content;
  margin: 8px auto 0;
  animation: fadeInContent 0.55s var(--airdrop-ease) both;
}

.wallet-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.5;
  animation: fadeInContent 0.55s var(--airdrop-ease) 0.12s both;
}

.wallet-back-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--airdrop-ease), color 0.2s ease, background 0.2s ease;
}

.wallet-back-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-2px);
}

.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.35s var(--airdrop-ease), border-color 0.35s ease, background 0.35s ease;
  animation: fadeInContent 0.5s var(--airdrop-ease) both;
}

.wallet-item:nth-child(1) { animation-delay: 0.14s; }
.wallet-item:nth-child(2) { animation-delay: 0.2s; }
.wallet-item:nth-child(3) { animation-delay: 0.26s; }
.wallet-item:nth-child(4) { animation-delay: 0.32s; }
.wallet-item:nth-child(5) { animation-delay: 0.38s; }
.wallet-item:nth-child(6) { animation-delay: 0.44s; }
.wallet-item:nth-child(7) { animation-delay: 0.5s; }
.wallet-item:nth-child(8) { animation-delay: 0.56s; }

.wallet-item:hover {
  background: rgba(0, 255, 194, 0.08);
  border-color: rgba(0, 255, 194, 0.35);
  transform: translateY(-2px);
}

.wallet-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wallet-item.disabled:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
  transform: none;
}

.wallet-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(0, 255, 194, 0.08);
  border: 1px solid rgba(0, 255, 194, 0.16);
}

.wallet-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.wallet-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.wallet-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.wallet-status.installed {
  color: #00ffc2;
}

.wallet-no-extension {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  animation: fadeInContent 0.55s var(--airdrop-ease) 0.4s both;
}

.wallet-no-extension a {
  color: #00ffc2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.wallet-no-extension a:hover {
  color: #7fffd4;
  text-decoration: underline;
}

.wallet-modal-content .stake-btn {
  animation: fadeInContent 0.55s var(--airdrop-ease) 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
