@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800;900&family=Luckiest+Guy&display=swap');

:root {
  --primary: #ff4d94;
  --primary-dark: #e60073;
  --secondary: #fbe4ee;
  --accent: #fff;
  --text-dark: #000;
  --text-light: #fff;
  --shadow: 5px 5px 0 #000;
  --border: 3px solid #000;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-full: 999px;
  --glass: rgba(255, 255, 255, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

h1, h2, h3, .section-title, .hero-title, .pfp-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 2px #000;
  text-shadow: none !important;
  letter-spacing: 1px;
}

body {
  background: var(--secondary);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  z-index: 1000;
  padding: 10px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

.btn-buy-now {
  background: var(--accent);
  color: var(--text-dark);
  text-decoration: none;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy-now:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
}

.btn-buy-now:active {
  transform: translate(1px, 1px);
  box-shadow: 0 0 0 #000;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: url('img/bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-floating-hearts span {
  position: absolute;
  font-size: 30px;
  bottom: -50px;
  opacity: 0;
  animation: heroFloat 6s infinite linear;
}

.hero-floating-hearts span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-floating-hearts span:nth-child(2) { left: 30%; animation-delay: 2s; }
.hero-floating-hearts span:nth-child(3) { left: 50%; animation-delay: 4s; }
.hero-floating-hearts span:nth-child(4) { left: 70%; animation-delay: 1s; }
.hero-floating-hearts span:nth-child(5) { left: 90%; animation-delay: 3s; }
.hero-floating-hearts span:nth-child(6) { left: 20%; animation-delay: 5s; }

@keyframes heroFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

#character {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: clamp(60px, 12vw, 140px);
  line-height: 0.85;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 2px 2px 0 #000;
  margin-top: -5px;
  letter-spacing: 1px;
}

.info-box {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.ca-container {
  margin-top: 10px;
}

.ca-box {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow);
  position: relative;
}

.ca-label {
  font-weight: 800;
  color: var(--accent);
}

#ca-text {
  font-family: monospace;
  font-weight: 700;
  font-size: 16px;
  flex-grow: 1;
}

#copy-ca {
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

#copy-ca:hover {
  transform: scale(1.05);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
}

.btn-buy-main {
  background: var(--accent);
  color: #000;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  padding: 15px 40px;
  border-radius: var(--radius-full);
  border: var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #000;
}

.btn-buy-main:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  box-shadow: 2px 2px 0 #000;
}

.social-icon:hover {
  transform: translateY(-3px) rotate(5deg);
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-title {
    font-size: 80px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .header .nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 60px;
  }

  .ca-box {
    flex-direction: column;
    padding: 20px;
  }

  #ca-text {
    word-break: break-all;
    font-size: 14px;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 60px;
  margin-bottom: 50px;
}


/* Mission Section Redesign */
.section-mission {
  background: var(--accent);
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}

.mission-new-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-new-title {
  font-size: 64px;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -1px;
}

.mission-new-title + .mission-new-title {
  margin-top: -10px;
  margin-bottom: 30px;
}

.mission-new-text {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
}

.mission-stats-mini {
  display: flex;
  gap: 40px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-val {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
}

.mini-lab {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #999;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.mission-heart-card {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ff4d94, #ff80b3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  box-shadow: 0 30px 60px rgba(255, 77, 148, 0.3);
  clip-path: url(#heartClip);
  animation: heartBeat 1.5s ease-in-out infinite;
  transition: transform 0.3s;
  z-index: 2;
}

@keyframes heartBeat {
  0% { transform: scale(1) rotate(-5deg); }
  15% { transform: scale(1.1) rotate(-5deg); }
  30% { transform: scale(1) rotate(-5deg); }
  45% { transform: scale(1.15) rotate(-5deg); }
  100% { transform: scale(1) rotate(-5deg); }
}

.mission-heart-card:hover {
  animation-play-state: paused;
  transform: rotate(0deg) scale(1.05);
}

.heart-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  clip-path: inherit;
  z-index: -1;
  animation: heartPulseMove 2s infinite;
}

@keyframes heartPulseMove {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.mission-heart-content {
  text-align: center;
  z-index: 2;
}

.heart-big {
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.heart-sub {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Hearts Animation */
.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-hearts span {
  position: absolute;
  font-size: 24px;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  animation: floatUp 3s infinite ease-in;
}

.floating-hearts span:nth-child(1) { left: 40%; animation-delay: 0s; }
.floating-hearts span:nth-child(2) { left: 60%; animation-delay: 0.5s; }
.floating-hearts span:nth-child(3) { left: 30%; animation-delay: 1.2s; }
.floating-hearts span:nth-child(4) { left: 70%; animation-delay: 1.8s; }
.floating-hearts span:nth-child(5) { left: 50%; animation-delay: 2.5s; }

@keyframes floatUp {
  0% { transform: translate(-50%, 0) scale(0.5); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(-50%, -200px) scale(1.5) rotate(20deg); opacity: 0; }
}

/* Neo-Buttons */
.neo-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-neo {
  padding: 15px 30px;
  border-radius: var(--radius-full);
  border: var(--border);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.1s, box-shadow 0.1s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.btn-neo.blue { background: #2f6df6; color: #fff; }
.btn-neo.white { background: #fff; }
.btn-neo.pink { background: #ff4d94; color: #fff; }

.btn-neo:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

/* Meme Gallery Section */
.section-memes {
  background: var(--secondary);
  padding: 100px 20px;
  text-align: center;
}

.meme-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-top: -40px;
  margin-bottom: 60px;
  color: #888;
}

.meme-board {
  background: #e6cbb4; /* Light brown/corkboard */
  padding: 120px 40px 60px;
  border-radius: 4px;
  border: 15px solid #d4b49a;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  min-height: 400px;
}

.board-banner {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  background: #ff4d94;
  color: #fff;
  padding: 12px 60px;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 20;
  white-space: nowrap;
  border-radius: 4px;
}

.photo {
  background: #fff;
  padding: 10px 10px 30px 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  width: 220px;
  transition: transform 0.3s, z-index 0.3s;
  position: relative;
  flex-shrink: 0;
}

.photo:nth-child(odd) { transform: rotate(-3deg); }
.photo:nth-child(even) { transform: rotate(3deg); }
.photo:nth-child(3n) { transform: rotate(2deg) translateY(10px); }
.photo:nth-child(4n) { transform: rotate(-2deg) translateY(-5px); }

.photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #eee;
}

.photo::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #ff4d94; /* Pink Pin */
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.photo:hover {
  transform: scale(1.1) rotate(0deg) !important;
  z-index: 100 !important;
}

/* Dynamic layout handles positioning */

/* Consolidated Responsive Styles at bottom */

/* How to Join Section */
.section-join {
  background: var(--secondary);
  padding: 120px 20px;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.join-card {
  background: #fff;
  padding: 60px 20px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(255, 77, 148, 0.15);
  transition: transform 0.3s;
}

.join-card:hover {
  transform: translateY(-10px);
}

.join-num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 77, 148, 0.2);
}

.join-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #2d3436;
}

.join-card p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #636e72;
}



/* =====================
   SECTION PFP
===================== */
.section-pfp {
  background: var(--secondary);
  padding: 100px 20px;
}

/* Moved hero-title to top */

.pfp-title {
  text-align: center;
  font-size: 60px;
  margin-bottom: 50px;
}

.pfp-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.pfp-canvas {
  width: 400px;
  height: 400px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 #000;
}

.pfp-canvas img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pfp-controls {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.control-item label {
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.control-item select {
  width: 100%;
  padding: 12px;
  border: var(--border);
  border-radius: 12px;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
}

.pfp-actions {
  grid-column: span 2;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.pfp-actions button {
  flex: 1;
  padding: 15px;
  border: var(--border);
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.1s, box-shadow 0.1s;
}

#randomize { background: var(--accent); }
#savePfp { background: var(--primary); }

.pfp-actions button:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #000;
}

.footer {
  background: var(--primary);
  padding: 40px 20px;
  text-align: center;
  border-top: var(--border);
}

.footer p {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Transparency Section
   ========================================================================== */
.section-transparency {
  background: #FFF5F8; /* Soft pink background */
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Nunito', sans-serif;
}

.transparency-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.blur-blob {
  position: absolute;
  background: radial-gradient(circle, rgba(255,107,158,0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.blob-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.blob-2 { width: 500px; height: 500px; bottom: -150px; right: -150px; }

.section-transparency .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.transparency-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFE4ED;
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85em;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title-transparency {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #1A0B14;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title-transparency span {
  color: var(--primary);
}

.transparency-subtitle {
  color: #665A61;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.t-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(255, 77, 148, 0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 148, 0.1);
}

.transparency-grid-1 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Partner Card */
.partner-card {
  display: flex;
  flex-direction: column;
}

.card-bg-icon {
  position: absolute;
  right: -30px;
  bottom: -30px;
  opacity: 0.05;
  color: var(--primary);
  width: 200px;
  height: 200px;
}

.card-label {
  color: var(--primary);
  font-size: 0.8em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.partner-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.partner-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
}

.partner-title h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A0B14;
  line-height: 1.3;
}

.partner-card p {
  color: #665A61;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.t-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.t-link:hover {
  opacity: 0.8;
}

/* Features Card */
.features-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  text-align: center;
}

.f-icon {
  width: 60px;
  height: 60px;
  background: #FFE4ED;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.feature-item h4 {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: #665A61;
  font-size: 0.9rem;
  line-height: 1.5;
}

.features-footer {
  background: #FCF5F7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ff-pill {
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.ff-center {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

.ff-label {
  color: var(--primary);
}

.ff-text {
  font-size: 0.8rem;
  color: #887E84;
  line-height: 1.4;
  text-align: right;
}

/* Grid 2 */
.transparency-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Table Card */
.tc-content {
  display: flex;
  gap: 40px;
}

.tc-left {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
}

.tc-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.tc-title-wrap h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1A0B14;
}

.live-badge {
  background: #FFE4ED;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 148, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 77, 148, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 148, 0); }
}

.tc-left p {
  color: #665A61;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  align-self: flex-start;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.tc-right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tc-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}

.t-table {
  width: 100%;
  border-collapse: collapse;
}

.t-table th {
  text-align: left;
  color: #887E84;
  font-size: 0.75rem;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #EEE;
}

.t-table td {
  padding: 15px 0;
  border-bottom: 1px solid #EEE;
  color: #665A61;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.t-table tr:last-child td {
  border-bottom: none;
}

.t-amount {
  color: #1A0B14;
  font-weight: 800 !important;
}

.t-amount i {
  color: var(--primary);
  margin-right: 5px;
}

.t-table td a {
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tc-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #887E84;
  background: #FCF5F7;
  padding: 12px 20px;
  border-radius: 50px;
  align-self: flex-start;
}

.tcf-divider {
  width: 1px;
  height: 14px;
  background: #DDD;
}

.wallet-address {
  color: var(--primary);
  font-weight: 700;
  background: #FFE4ED;
  padding: 4px 10px;
  border-radius: 5px;
  margin-left: 5px;
}

/* About Card */
.about-card {
  display: flex;
  flex-direction: column;
}

.about-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1A0B14;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.about-logo i {
  color: var(--primary);
}

.about-card p {
  color: #665A61;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Bottom Pill */
.transparency-bottom-pill {
  background: #FFE4ED;
  border-radius: 50px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
}
.transparency-bottom-pill .divider {
  color: #FFA6C9;
}

@media (max-width: 1024px) {
  .transparency-grid-1, .transparency-grid-2 {
    grid-template-columns: 1fr;
  }
  .features-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .tc-content {
    flex-direction: column;
    gap: 30px;
  }
  .tc-left {
    flex: auto;
  }
  .tc-footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }
  .tcf-divider { display: none; }
}

@media (max-width: 768px) {
  .section-transparency {
    padding: 60px 15px;
  }
  .features-row {
    grid-template-columns: 1fr;
  }
  .transparency-bottom-pill {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
  }
  .transparency-bottom-pill .divider { display: none; }
}

/* ==========================================================================
   Consolidated Responsive Styles (Mobile-First Fixes)
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-container, .mission-new-grid, .pfp-wrapper {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  /* Gallery Switch */
  .meme-board { 
    height: auto; 
    min-height: 400px; 
    padding: 60px 20px; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px;
  }
  .photo { 
    position: static !important; 
    width: 140px; 
    margin: 5px; 
    transform: rotate(0deg) !important; 
  }
  .board-banner { 
    position: relative; 
    top: 0; 
    left: 0; 
    transform: none; 
    margin-bottom: 40px; 
    width: 100%; 
    white-space: normal;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero { padding-top: 100px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { order: -1; }
  .hero-char img { max-width: 300px; }
  .hero-content { text-align: center; }
  .ca-box { flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; }

  /* Mission */
  .mission-new-grid { grid-template-columns: 1fr; text-align: center; }
  .mission-stats-mini { justify-content: center; }
  .mission-visual { margin-bottom: 20px; }
  .mission-heart-card { width: 320px; height: 320px; margin: 0 auto; }

  /* PFP */
  .pfp-wrapper { flex-direction: column; gap: 40px; padding: 40px 20px 60px; }
  .pfp-canvas { width: 320px; height: 320px; }
  .pfp-controls { width: 100%; }

  .header .nav { display: none; }
  .section-title { font-size: 44px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 24px; }
  .btn-neo, .btn-buy-main { width: 100%; }
  .ca-box { width: 100%; }
  #ca-text { font-size: 13px; word-break: break-all; }
  
  .mission-heart-card { width: 280px; height: 280px; }
  .heart-big { font-size: 70px !important; }
  .mission-new-title { font-size: 40px; }
  
  .pfp-canvas { width: 260px; height: 260px; }
  .pfp-actions { grid-template-columns: 1fr; }
}
