:root {
  --ice-blue: #a8ddff;
  --sky-blue: #e6f7ff;
  --white: #ffffff;
  --deep-blue: #0b2b3c;
  --orange: #ff8c42;
}
* { box-sizing: border-box }
html, body { height: 100% }
body {
  margin: 0;
  font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--deep-blue);
  background: radial-gradient(1200px 800px at 50% -200px, #cfeeff, var(--sky-blue) 40%, var(--white) 80%);
}
.snowflakes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.snowflakes-back { z-index: 0; }
.snowflakes-front { z-index: 2; }
.snowflake {
  position: absolute;
  top: -2rem;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.8;
  animation: fall linear infinite;
}
.snowflakes-back .snowflake { font-size: 0.9rem; opacity: 0.6; }
.snowflakes-front .snowflake { font-size: 1.4rem; opacity: 0.95; }
@keyframes fall {
  0% { transform: translateY(-5vh) translateX(0) scale(1); opacity: 0 }
  20% { opacity: 0.9 }
  100% { transform: translateY(105vh) translateX(20vw) scale(1.2); opacity: 0 }
}
.snowflakes .snowflake:nth-child(1) { left: 5%; animation-duration: 9s; }
.snowflakes .snowflake:nth-child(2) { left: 15%; animation-duration: 7s; animation-delay: 1s; }
.snowflakes .snowflake:nth-child(3) { left: 25%; animation-duration: 11s; animation-delay: 0.5s; }
.snowflakes .snowflake:nth-child(4) { left: 35%; animation-duration: 8s; animation-delay: 2s; }
.snowflakes .snowflake:nth-child(5) { left: 45%; animation-duration: 12s; animation-delay: 1.5s; }
.snowflakes .snowflake:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 0.2s; }
.snowflakes .snowflake:nth-child(7) { left: 65%; animation-duration: 10s; animation-delay: 2.2s; }
.snowflakes .snowflake:nth-child(8) { left: 75%; animation-duration: 7.5s; animation-delay: 0.8s; }
.snowflakes .snowflake:nth-child(9) { left: 85%; animation-duration: 13s; animation-delay: 1.2s; }
.snowflakes .snowflake:nth-child(10) { left: 50%; animation-duration: 8.5s; animation-delay: 0.3s; }
.snowflakes .snowflake:nth-child(11) { left: 30%; animation-duration: 10.5s; animation-delay: 1.8s; }
.snowflakes .snowflake:nth-child(12) { left: 70%; animation-duration: 9.5s; animation-delay: 2.5s; }
.hero {
  position: relative;
  padding: 72px 24px 24px;
  text-align: center;
  overflow: hidden;
}
.hero-banner {
  display: block;
  width: min(960px, calc(100% - 48px));
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(10,64,96,0.18);
}
.aurora {
  position: absolute;
  inset: -20% -10% 0 -10%;
  z-index: 0;
  filter: blur(36px) saturate(120%);
  background: conic-gradient(from 180deg at 30% 20%, #bfe8ff, #e8f8ff, #b6e1ff, #eafaff, #bfe8ff);
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(10, 64, 96, 0.2);
}
.slogan {
  margin: 8px 0 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: "Snowburst One", Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff, #bfe8ff 60%, #7bc3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.6px rgba(10,64,96,0.15);
  text-shadow: 0 2px 10px rgba(168,221,255,0.35);
}
.sub {
  margin: 0;
  font-size: 16px;
  color: #18506e;
}
.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #bfe8ff, #ffffff);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(10,64,96,0.18), 0 0 0 6px rgba(168,221,255,0.18) inset;
  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,64,96,0.24), 0 0 0 8px rgba(168,221,255,0.26) inset;
}
.cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,64,96,0.25), 0 0 0 8px rgba(168,221,255,0.35) inset;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 2.4s linear infinite;
}
@keyframes shine {
  0% { transform: translateX(-100%) }
  60% { transform: translateX(100%) }
  100% { transform: translateX(100%) }
}
@media (prefers-reduced-motion: reduce) {
  .snowflake { animation: none }
  .cta::after { animation: none }
}
#roller {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 1200px;
  height: 240px;
  z-index: 0;
}
.ice-divider {
  position: relative;
  display: block;
  width: 100%;
}
.ice-divider svg {
  display: block;
  width: 100%;
  height: 64px;
}
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 16px 0 8px;
  position: relative;
  font-family: "Snowburst One", Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff, #bfe8ff 60%, #7bc3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.6px rgba(10,64,96,0.15);
  text-shadow: 0 2px 10px rgba(168,221,255,0.35);
}
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 6px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #bfe8ff, #ffffff);
}
.tokenomics {
  padding: 24px;
  max-width: 1080px;
  margin: 0 auto 40px;
}
.roller-ca {
  max-width: 1080px;
  margin: 18px auto 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(230,247,255,0.82));
  border: 1px solid rgba(168,221,255,0.7);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10,64,96,0.12);
}
.roller-ca .monster {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.roller-ca .ca-text {
  font-weight: 800;
  color: #18506e;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(230,247,255,0.82));
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(168,221,255,0.7);
  box-shadow: 0 8px 24px rgba(10,64,96,0.12), 0 0 0 8px rgba(168,221,255,0.15) inset;
  transform: translateY(0) scale(1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(10,64,96,0.18), 0 0 0 10px rgba(168,221,255,0.22) inset;
}
.icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(120px 80px at 40% 20%, rgba(230,247,255,0.9), rgba(168,221,255,0.6));
  border: 1px solid rgba(168,221,255,0.7);
  box-shadow: inset 0 0 0 8px rgba(168,221,255,0.18);
}
.icon {
  width: 64px;
  height: 64px;
}
.icon svg {
  width: 100%;
  height: 100%;
}
.card-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #0b2b3c, #3aa9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card-title {
  font-size: 18px;
  font-weight: 800;
  font-family: "Snowburst One", Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.card-desc {
  font-size: 14px;
  color: #18506e;
}
.footer {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(168,221,255,0.4), rgba(255,255,255,0.8));
}
.footer-top {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.chain {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--ice-blue);
  font-weight: 800;
}
.sep {
  color: var(--orange);
  font-weight: 800;
}
.social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255,140,66,0.35);
  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-btn.x { background: #000000; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.social-btn.tg { background: #26A5E4; box-shadow: 0 6px 20px rgba(38,165,228,0.35); }
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255,140,66,0.5);
}
.social-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,64,96,0.25), 0 10px 24px rgba(255,140,66,0.5);
}
.footer-bottom {
  max-width: 1080px;
  margin: 12px auto 0;
  color: #18506e;
  font-size: 14px;
  text-align: center;
}
.floating-tg {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #26A5E4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(38,165,228,0.5);
  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(38,165,228,0.7);
}
.floating-tg:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,64,96,0.25), 0 12px 32px rgba(38,165,228,0.7);
}
.about {
  max-width: 1080px;
  margin: 18px auto 28px;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(230,247,255,0.82));
  border: 1px solid rgba(168,221,255,0.7);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10,64,96,0.12);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
  margin-top: 10px;
}
.about-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(230,247,255,0.86));
  border: 1px solid rgba(168,221,255,0.6);
  border-radius: 12px;
  padding: 18px;
}
.about-sub {
  font-weight: 800;
  color: #18506e;
  margin-bottom: 6px;
  font-family: "Snowburst One", Nunito, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.5px;
}
.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.about-list li {
  position: relative;
  padding-left: 20px;
  color: #18506e;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3aa9ff;
  box-shadow: 0 0 0 3px rgba(168,221,255,0.5);
}
.about-quote {
  margin-top: 14px;
  text-align: center;
  font-weight: 800;
  color: #0b2b3c;
}
@media (max-width: 840px) {
  .cards { grid-template-columns: 1fr }
  #roller { width: 100%; }
  .logo { width: 132px; height: 132px; }
  .slogan { font-size: 24px }
  .about-grid { grid-template-columns: 1fr }
}
