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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffd700;
}

.nav a {
  color: #bbbbbb;
  text-decoration: none;
  margin: 0 22px;
  font-weight: 500;
}

.nav a:hover {
  color: #ffd700;
}

.nav-links {
  margin-right: 18px;
}

.nav-links a {
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 600;
  margin-right: 20px;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd700;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.secondary-btn:hover {
  background: rgba(255, 215, 0, 0.14);
  border-color: rgba(255, 215, 0, 0.25);
}

.presale-section {
  padding: 100px 5% 80px;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 18%), linear-gradient(180deg, #080808, #0d0d0d);
  color: #f2f2f2;
}

.presale-head {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.presale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.presale-head h2 {
  font-size: 2.7rem;
  margin-bottom: 18px;
}

.presale-head p {
  color: #ccc;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.presale-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.16);
  padding: 36px;
  border-radius: 32px;
  backdrop-filter: blur(18px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 80px rgba(255, 215, 0, 0.08);
}

.presale-countdown-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
}

.presale-label {
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.countdown-timer div {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
}

.countdown-timer span {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.countdown-timer small {
  display: block;
  margin-top: 8px;
  color: #bbb;
  font-size: 0.85rem;
}

.presale-copy {
  color: #d5d5d5;
  line-height: 1.8;
  margin-bottom: 18px;
}

.presale-tagline {
  color: #e0d7b8;
  margin-top: 14px;
  font-size: 1rem;
}

.presale-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0 0 22px;
  color: #f5f0d8;
}

.presale-benefits li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.presale-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd700;
}

.presale-card {
  display: grid;
  gap: 22px;
}

.presale-card input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #444;
  background: #121212;
  color: #fff;
  font-size: 1rem;
}

.presale-summary {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.summary-label {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.presale-summary strong {
  font-size: 1.55rem;
  color: #fff;
}

.presale-rate {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.presale-payment {
  margin-top: 20px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.presale-payment.hidden {
  display: none;
}

.presale-payment-title {
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
}

.presale-qr-details {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.presale-qr-block {
  display: flex;
  justify-content: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 22px;
}

.presale-qr-block img {
  width: 220px;
  height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.presale-address-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.presale-address {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  color: #f5f2df;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.22);
  padding: 14px 18px;
  border-radius: 16px;
  word-break: break-all;
}

.presale-address-help {
  color: #e7d8b8;
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.65;
}

.copy-address-btn {
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.copy-address-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 191, 0, 0.18);
}

.presale-payment-summary p {
  display: flex;
  justify-content: space-between;
  color: #e6e6e6;
  margin-bottom: 10px;
}

.presale-payment-summary span {
  color: #b8b8b8;
}

.presale-note {
  color: #c8c8c8;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .presale-summary {
    grid-template-columns: 1fr;
  }
}

.top-apply-btn {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  color: black;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.top-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1f1f1f, #0a0a0a);
  text-align: center;
  padding-top: 90px;
}

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 15px;
  color: #e5e5e5;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #f8f8f8, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.8),
    0 -1px 2px rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.tagline {
  font-size: 1.4rem;
  color: #aaaaaa;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.card-wrapper {
  perspective: 1600px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* No Shadow Version - Pure Card */
.crypto-card {
  width: 380px;
  height: auto;
  max-height: 230px;
  border-radius: 20px;
  background: transparent !important;
  box-shadow: none !important;           /* Removed shadow */
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  object-fit: contain;
}

.card-wrapper:hover .crypto-card {
  transform: translateY(-45px) rotateX(10deg) rotateY(12deg) scale(1.12);
  box-shadow: 0 40px 90px rgba(255, 215, 0, 0.3);   /* Only light gold glow on hover */
}

.cta-section h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.big-apply-btn {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  color: black;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
}

.big-apply-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

/* Form */
.apply-section {
  padding: 120px 5%;
  background: #111111;
  text-align: center;
}

.apply-section h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px;
}

input {
  padding: 16px 20px;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
}

input:focus {
  border-color: #ffd700;
  outline: none;
}

.submit-btn {
  background: #ffd700;
  color: black;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 70px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.submit-btn.loading {
  opacity: 0.9;
  cursor: wait;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-message {
  color: #4ade80;
  font-size: 1.35rem;
  margin-top: 40px;
}

.team-section {
  padding: 100px 5% 80px;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 25%), radial-gradient(circle at bottom right, rgba(0, 169, 255, 0.08), transparent 22%), linear-gradient(180deg, #0c0c0c 0%, #090909 100%);
  color: #f2f2f2;
}

.team-intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.team-label {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.team-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.team-section p {
  color: #c6c6c6;
  max-width: 760px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1180px;
  margin: 50px auto 0;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.45));
}

.team-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.team-card-copy {
  padding: 28px 26px 32px;
}

.team-card-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.team-role {
  display: block;
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 14px;
}

footer {
  text-align: center;
  padding: 60px 20px;
  color: #667;
}
.whitepaper-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(255, 223, 0, 0.14), transparent 25%), linear-gradient(180deg, #080808, #111111);
  padding: 140px 5% 80px;
  text-align: center;
}

.whitepaper-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.whitepaper-visual {
  margin: 24px 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.whitepaper-visual img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.whitepaper-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 24px;
  color: #f5f5f5;
}

.breadcrumb {
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 22px;
  display: inline-block;
}

.hero-text {
  color: #d1d1d1;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 740px;
  margin: 0 auto 34px;
}

.whitepaper-content {
  padding: 80px 5% 100px;
  max-width: 1080px;
  margin: 0 auto;
}

.whitepaper-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 42px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.whitepaper-card h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.whitepaper-card p {
  color: #d7d7d7;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
