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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #02040a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 216, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 216, 107, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(255, 216, 107, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 0, 55, 0.18), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(0, 180, 255, 0.14), transparent 28%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.02), transparent 35%, rgba(255,216,107,0.05), transparent 65%),
    radial-gradient(circle at center, transparent, #02040a 75%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  width: 100%;
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 4, 10, 0.82);
  border-bottom: 1px solid rgba(255, 216, 107, 0.24);
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  box-shadow: 0 0 35px rgba(255, 216, 107, 0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,216,107,0.9) 32%, rgba(181,0,22,0.9) 100%);
  color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow:
    0 0 20px rgba(255, 216, 107, 0.65),
    inset 0 0 16px rgba(255,255,255,0.35);
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 107, 0.35);
}

.logo-wrap strong {
  display: block;
  color: #ffd86b;
  font-size: 19px;
  letter-spacing: 0.3px;
}

.logo-wrap span {
  display: block;
  color: #9aa7bd;
  font-size: 13px;
}

.navbar nav {
  display: flex;
  gap: 12px;
  padding: 7px;
  border: 1px solid rgba(255, 216, 107, 0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
}

.navbar nav a {
  color: #dce6f8;
  font-size: 14px;
  padding: 8px 13px;
  border-radius: 999px;
}

.navbar nav a:hover {
  color: #111;
  background: #ffd86b;
}

.hero {
  min-height: 100vh;
  padding: 155px 8% 85px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(4, 8, 20, 0.95), rgba(45, 2, 7, 0.86) 45%, rgba(3, 6, 14, 0.98));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 107, 0.18);
  box-shadow:
    0 0 0 60px rgba(255, 216, 107, 0.025),
    0 0 0 120px rgba(0, 180, 255, 0.025),
    0 0 120px rgba(255, 216, 107, 0.12);
}

.hero::after {
  content: "CDC";
  position: absolute;
  right: 7%;
  top: 36%;
  font-size: 160px;
  font-weight: 900;
  letter-spacing: 10px;
  color: rgba(255, 216, 107, 0.035);
  text-shadow: 0 0 45px rgba(255, 216, 107, 0.08);
}

.hero-inner {
  max-width: 790px;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 216, 107, 0.7);
  border-radius: 50px;
  color: #ffd86b;
  margin-bottom: 24px;
  background: rgba(255, 216, 107, 0.07);
  box-shadow: 0 0 28px rgba(255, 216, 107, 0.09);
}

.badge::before {
  content: "";
  width: 9px;
  height: 9px;
  background: #00e0ff;
  border-radius: 50%;
  box-shadow: 0 0 14px #00e0ff;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  color: #ffd86b;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  text-shadow: 0 0 32px rgba(255, 216, 107, 0.18);
}

.hero h2 {
  font-size: clamp(23px, 3vw, 34px);
  color: #ffffff;
  margin-bottom: 22px;
}

.hero p {
  color: #d7dfef;
  font-size: 18px;
  max-width: 700px;
}

.buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 31px;
  border-radius: 13px;
  font-weight: 800;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  color: #071018;
  background: linear-gradient(135deg, #fff08a, #ffd23f 45%, #b87900);
  box-shadow: 0 12px 35px rgba(255, 216, 107, 0.24);
}

.btn.secondary {
  color: #ffd86b;
  border: 1px solid rgba(255, 216, 107, 0.65);
  background: rgba(255, 255, 255, 0.035);
}

.contract-wrap {
  margin-top: 34px;
  max-width: 860px;
  padding: 20px;
  border: 1px solid rgba(255, 216, 107, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
}

.contract-title {
  display: block;
  color: #ffd86b;
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contract-item {
  padding: 18px;
  border: 1px solid rgba(255, 216, 107, 0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.contract-item h4 {
  color: #ffd86b;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contract-item p {
  color: #e8eefb;
  font-size: 15px;
  word-break: break-word;
}

.section {
  padding: 95px 8%;
  background: rgba(4, 7, 15, 0.95);
  position: relative;
}

.section.dark {
  background: rgba(8, 10, 16, 0.97);
}

.section h2 {
  color: #ffd86b;
  text-align: center;
  font-size: 42px;
  margin-bottom: 24px;
  text-shadow: 0 0 24px rgba(255, 216, 107, 0.14);
}

.section-desc {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 42px;
  color: #cbd6e9;
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border: 1px solid rgba(255, 216, 107, 0.18);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.24);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 3px;
  top: 0;
  left: 30px;
  background: linear-gradient(90deg, #ffd86b, transparent);
}

.card h3 {
  color: #ffd86b;
  margin-bottom: 13px;
  font-size: 22px;
}

.card p {
  color: #cbd6e9;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.token-grid div {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(0,224,255,0.06), rgba(255,216,107,0.045));
  border: 1px solid rgba(255, 216, 107, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.token-grid span {
  display: block;
  color: #8fa0bb;
  font-size: 13px;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.token-grid strong {
  color: #ffd86b;
  font-size: 19px;
}

.timeline {
  max-width: 930px;
  margin: auto;
  display: grid;
  gap: 20px;
}

.timeline div {
  padding: 27px;
  background: linear-gradient(90deg, rgba(255,216,107,0.075), rgba(255,255,255,0.025));
  border-left: 4px solid #ffd86b;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.timeline h3 {
  color: #ffd86b;
  margin-bottom: 8px;
}

.timeline p {
  color: #cbd6e9;
}

.notice-box {
  max-width: 920px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 216, 107, 0.06);
  border: 1px solid rgba(255, 216, 107, 0.18);
  box-shadow: 0 0 45px rgba(255,216,107,0.06);
}

.notice-box p {
  color: #d7dfef;
  margin-bottom: 14px;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

footer {
  padding: 64px 8%;
  text-align: center;
  background: #02040a;
  border-top: 1px solid rgba(255, 216, 107, 0.25);
}

.footer-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff08a, #d6a300, #800000);
  color: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(255,216,107,0.35);
}

footer h3 {
  color: #ffd86b;
  margin-bottom: 8px;
}

footer p {
  color: #aebbd2;
  margin-bottom: 18px;
}

footer small {
  color: #6f7e96;
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 5%;
  }

  .navbar nav {
    display: none;
  }

  .hero {
    padding: 130px 5% 65px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero h2 {
    font-size: 23px;
  }

  .cards,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 5%;
  }
}

.contract-wrap {
  margin-top: 34px;
  max-width: 900px;
  padding: 20px;
  border: 1px solid rgba(255, 216, 107, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 30px rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
}

.contract-title {
  display: block;
  color: #ffd86b;
  font-size: 13px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contract-item {
  padding: 16px;
  border: 1px solid rgba(255, 216, 107, 0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.contract-item h4 {
  color: #ffd86b;
  font-size: 15px;
  margin-bottom: 9px;
  letter-spacing: 1px;
}

.contract-item p {
  color: #e8eefb;
  font-size: 13px;
  word-break: break-all;
}

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

@media (max-width: 768px) {
  .contract-grid {
    grid-template-columns: 1fr;
  }
}

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(255, 216, 107, 0.65));
}

.buy-hero {
  min-height: 100vh;
  align-items: flex-start;
}

.buy-options {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
}

.buy-card {
  padding: 28px;
  border: 1px solid rgba(255, 216, 107, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: 0 18px 45px rgba(0,0,0,0.26);
}

.buy-card.highlight {
  border-color: rgba(255, 216, 107, 0.45);
  box-shadow: 0 0 45px rgba(255,216,107,0.08);
}

.buy-tag {
  display: inline-block;
  color: #ffd86b;
  border: 1px solid rgba(255,216,107,0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.buy-card h3 {
  color: #ffd86b;
  font-size: 26px;
  margin-bottom: 12px;
}

.buy-card p {
  color: #d7dfef;
  font-size: 16px;
  margin-bottom: 18px;
}

.buy-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.buy-card li {
  color: #cbd6e9;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  word-break: break-word;
}

.disabled-link {
  opacity: 0.65;
  pointer-events: none;
}

.buy-note {
  max-width: 980px;
}

.buy-note p {
  color: #d7dfef;
}

@media (max-width: 768px) {
  .buy-options {
    grid-template-columns: 1fr;
  }
}

.footer-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 22px rgba(255, 216, 107, 0.55));
}
