/* ===== GLOBAL ===== */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  text-align: center;
}

/* ===== HERO ===== */

.hero {
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeHero 0.8s ease-out forwards;
}

header {
  padding: 20px 20px;
}

.hero img {
  width: 180px;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero p {
  color: #dbeafe;
}

.hero .subtitle {
  color: #f5d48a;
  font-style: italic;
  margin-top: 12px;
}

p {
  max-width: 600px;
  margin: 20px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* ===== BUTTONS ===== */

.buttons {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 22px;
  background-color: #f0b90b;
  color: #0b1220;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button.secondary {
  background-color: #1e293b;
  color: #cbd5f5;
  border: 1px solid #334155;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ===== TOKEN INFO ===== */

.token-info {
  margin-top: 40px;
  padding: 40px;
  background-color: #0f1e2e;
  border-radius: 12px;
}

.token-info h2 {
  margin-top: 0;
  color: #7dd3fc;
}

.token-info ul {
  list-style: none;
  padding: 0;
}

.token-info li {
  margin: 10px 0;
  color: #cbd5e1;
}

/* contrat spacing propre */
.contract-address {
  margin-top: 6px;
}

.token-info code {
  font-size: 0.9rem;
  background: #020617;
  padding: 6px 8px;
  border-radius: 6px;
  display: inline-block;
  word-break: break-all;
}

.token-info a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
}

.token-info a:hover {
  text-decoration: underline;
}

/* ===== TRUST ===== */

.trust-section {
  max-width: 700px;
  margin: 30px auto 0 auto;
  padding: 25px 30px;
  background: #0b1628;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.trust-section h2 {
  margin-top: 0;
  color: #7dd3fc;
  font-size: 1.6rem;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.trust-list li {
  margin: 10px 0;
  color: #cbd5f5;
}

.trust-list span {
  color: #f0b90b;
  font-weight: bold;
}

.distribution-section {
  max-width: 700px;
  margin: 25px auto 0 auto;
  padding: 25px 30px;
  background: #0a1526;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.distribution-section h2 {
  margin-top: 0;
  color: #7dd3fc;
}

.distribution-section p {
  margin-top: 15px;
  color: #cbd5f5;
  line-height: 1.7;
}

/* ===== LIQUIDITY ===== */

.liquidity-section {
  max-width: 700px;
  margin: 25px auto 0 auto;
  padding: 25px 30px;
  background: #091423;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.liquidity-section h2 {
  margin-top: 0;
  color: #7dd3fc;
  font-size: 1.6rem;
}

.liquidity-item {
  margin: 12px 0;
  color: #cbd5f5;
}

.liquidity-label {
  color: #f0b90b;
  font-weight: bold;
}

.liquidity-link {
  color: #38bdf8;
  text-decoration: none;
}

.liquidity-link:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */

footer {
  margin-top: 60px;
  padding: 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ===== ANIMATION ===== */

@keyframes fadeHero {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CUSHCAT LOGO INTERACTIVE ===== */

.cushcat-logo {
  position: relative;
  width: 180px;
  margin: 0 auto 20px auto;
  cursor: pointer;
  touch-action: manipulation;
}

.cushcat-logo img {
  width: 100%;
  display: block;
  border-radius: 50%;
  image-rendering: pixelated;
  margin-bottom: 0;
}

.logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}

@media (hover: hover) {
  .cushcat-logo:hover .logo-hover {
  opacity: 1;
  }
  
}

.cushcat-logo.is-active .logo-hover {
  opacity: 1;
}

/* ===== RESPONSIVE MOBILE PREMIUM ===== */

@media (max-width: 768px) {

  /* HERO */

  .hero {
    padding: 50px 15px 20px;
  }

  img {
    width: 130px;
  }

  h1 {
    font-size: 1.9rem;
  }

  p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  /* BUTTONS */

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .button {
    width: 85%;
    max-width: 280px;
  }

  /* SECTIONS */

  .token-info,
  .trust-section,
  .liquidity-section {
    margin: 25px 12px 0 12px;
    padding: 22px 16px;
  }

  /* CONTRACT ADDRESS */

  .contract-address {
    font-size: 0.85rem;
  }

  /* FOOTER */

  footer {
    font-size: 0.8rem;
    padding: 18px;
  }
/* ===== TRUST BADGES ===== */

.badges {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: #0b1628;
  border: 1px solid #1e293b;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #cbd5f5;
  }
/* ===== STORY SECTION ===== */

.story-section {
  max-width: 700px;
  margin: 25px auto 0 auto;
  padding: 25px 30px;
  background: #0a1526;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.story-section h2 {
  margin-top: 0;
  color: #7dd3fc;
  font-size: 1.6rem;
}

.story-section p {
  margin-top: 15px;
  color: #cbd5f5;
  line-height: 1.7;
}

  /* ===== TOKEMONICS ===== */
  
.tokenomics-section {
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 30px;
  background: #0b1628;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.tokenomics-section h2 {
  margin-top: 0;
  color: #7dd3fc;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.tokenomics-card {
  background: #091423;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #1e293b;
}

.tokenomics-label {
  display: block;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.tokenomics-value {
  color: #f0b90b;
  font-weight: bold;
}

}

/* ===== COMMUNITY ===== */
  
.community-section {
  max-width: 700px;
  margin: 25px auto 0 auto;
  padding: 25px 30px;
  background: #0b1628;
  border: 1px solid #1e293b;
  border-radius: 12px;
}

.community-section h2 {
  margin-top: 0;
  color: #7dd3fc;
}

.community-section p {
  margin-top: 15px;
  color: #cbd5f5;
  line-height: 1.7;
}

.community-placeholder {
  margin-top: 15px;
  font-style: italic;
  color: #94a3b8;
}

.creative-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 35px;
  background: #0b1628;
  border: 1px solid #1e293b;
  border-radius: 12px;
  text-align: center;
}

.creative-section h2 {
  margin-top: 0;
  color: #7dd3fc;
  font-size: 1.6rem;
}

.creative-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  gap: 40px;
  justify-content: center;
}

.creative-gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #1e293b;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.creative-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* ===== WARM NARRATIVE BACKGROUND ===== */

.story-section,
.distribution-section,
.community-section {
  background: linear-gradient(
    180deg,
    #0b1628 0%,
    #0a1526 100%
  );
}

/* ===== SOFT WARM LIGHT ===== */

.story-section,
.trust-section,
.creative-section {
  box-shadow: 0 10px 30px rgba(245, 212, 138, 0.05);
}

/* ===== SECTION SPACING REFINEMENT ===== */

.story-section,
.trust-section,
.distribution-section,
.liquidity-section,
.community-section {
  margin: 40px auto;
}

/* ===== SCROLL FADE-IN ANIMATION ===== */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PREMIUM SCROLL REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(.16,.84,.44,1),
    transform 0.9s cubic-bezier(.16,.84,.44,1),
    filter 0.9s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

 
