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

:root {
  --bg: #050008;
  --bg-alt: #0b020f;
  --bg-elevated: rgba(20, 3, 36, 0.9);
  --accent: #ff4fa3;
  --accent-soft: rgba(255, 79, 163, 0.2);
  --accent-strong: #ff7ac7;
  --text: #fdf3ff;
  --muted: #b98fcb;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --blur-glass: 24px;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #2a0434, #050008 55%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Animated star background */

.stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25) 0, transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255, 139, 222, 0.35) 0, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(255, 79, 163, 0.25) 0, transparent 55%);
  overflow: hidden;
  pointer-events: none;
}

.stars::before,
.stars::after {
  content: "";
  position: absolute;
  inset: -50%;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.8) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 30% 80%, rgba(255, 175, 230, 0.9) 0, transparent 60%),
    radial-gradient(2px 2px at 70% 30%, rgba(255, 255, 255, 0.85) 0, transparent 60%),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 110, 194, 0.9) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(255, 255, 255, 0.7) 0, transparent 60%);
  opacity: 0.8;
  animation: star-drift 60s linear infinite;
}

.stars::after {
  animation-direction: reverse;
  opacity: 0.4;
}

@keyframes star-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-10%, -10%, 0) rotate(360deg);
  }
}

/* Layout */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section.alt {
  background: radial-gradient(circle at top, rgba(255, 79, 163, 0.06), transparent 55%);
}

.section-inner {
  position: relative;
  z-index: 1;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 0, 8, 0.95),
    rgba(5, 0, 8, 0.7),
    transparent
  );
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, #ffeaf7, #ff4fa3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #230214;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 79, 163, 0.55);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff4fa3, #ff7ac7);
  color: #230214;
  box-shadow: 0 16px 35px rgba(255, 79, 163, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 79, 163, 0.9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(255, 79, 163, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 79, 163, 0.12);
}

.btn-copy {
  width: 100%;
  margin-top: 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */

.hero {
  padding: 5.5rem 0 4.5rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at top left, rgba(255, 79, 163, 0.18), transparent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.4vw + 1rem, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0.9rem;
}

.accent {
  color: var(--accent-strong);
}

.hero-text {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.pill {
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.mono {
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}

/* Hero art */

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-orbit {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  background: radial-gradient(circle at 10% 0%, rgba(255, 79, 163, 0.5), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(135, 64, 255, 0.6), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(5, 0, 8, 0.9), #050008);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.75));
  transform-origin: center bottom;
  animation: float-y 4.5s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(4px) scale(1.02);
  }
  50% {
    transform: translateY(-8px) scale(1.04);
  }
}

.floating-pill {
  position: absolute;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(5, 0, 8, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.floating-pill--top {
  top: 9%;
  right: 7%;
  animation: bob 5.4s ease-in-out infinite;
}

.floating-pill--bottom {
  bottom: 8%;
  left: 6%;
  animation: bob 6.1s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Cards & sections */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.glass {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(var(--blur-glass));
}

.checklist {
  list-style: none;
  margin-top: 1.1rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
}

.quote {
  font-size: 0.98rem;
  margin-top: 0.5rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

/* Tokenomics */

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.token-card {
  text-align: left;
}

.big-number {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* Steps */

.steps {
  list-style: decimal;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  margin: 1.3rem 0 1.4rem;
}

.steps li {
  margin-bottom: 0.6rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Roadmap */

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.roadmap-item {
  position: relative;
  padding-top: 1.1rem;
}

.roadmap-badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 79, 163, 0.16);
  color: var(--accent-strong);
}

.roadmap-item h3 {
  margin-bottom: 0.8rem;
}

.roadmap-item ul {
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.helper {
  color: var(--muted);
  margin-top: 0.7rem;
}

.small {
  font-size: 0.8rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  margin-bottom: 0.75rem;
}

/* Community */

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 79, 163, 0.14), transparent);
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 163, 0.7);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.7);
}

.social-label {
  color: var(--muted);
  font-size: 0.75rem;
}

.social-handle {
  font-weight: 500;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.8rem 0 2.2rem;
  background: radial-gradient(circle at bottom, rgba(255, 79, 163, 0.16), #050008);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-tagline {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--muted);
}

.back-to-top {
  text-decoration: none;
  color: var(--accent-strong);
  font-size: 0.78rem;
}

.back-to-top:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-art {
    order: -1;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .token-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .token-grid,
  .roadmap,
  .gallery-grid,
  .social-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .card {
    padding: 1.35rem 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Smooth transitions & square gallery images */

.hero-image {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-orbit:hover .hero-image {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.85));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06);
}


/* Animated gradient text creeping across section transitions */

.section-header h2,
.section-copy h2 {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(110deg, #ffffff, var(--accent-strong), #f4c3ff);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: kuromi-text-flow 9s ease-in-out infinite alternate;
}

@keyframes kuromi-text-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Softer, extra subtle star field */

.stars {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0, transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 139, 222, 0.25) 0, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(255, 79, 163, 0.17) 0, transparent 55%);
}

.stars::before,
.stars::after {
  opacity: 0.45;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.6) 0, transparent 60%),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 175, 230, 0.5) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255, 255, 255, 0.55) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 60%, rgba(255, 110, 194, 0.55) 0, transparent 60%),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.45) 0, transparent 60%);
  animation: star-drift-soft 70s linear infinite;
}

.stars::after {
  opacity: 0.25;
  animation-direction: reverse;
}

@keyframes star-drift-soft {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-6%, -6%, 0) rotate(360deg);
  }
}

/* Override: solid section headings so text does not cross visual transitions */

.section-header h2,
.section-copy h2 {
  background-image: none !important;
  background-size: auto !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  color: var(--text) !important;
  animation: none !important;
}

/* Gallery: center photos perfectly inside frames, no captions */

.gallery-only {
  padding-top: 0.5rem;
}

.gallery-item {
  padding: 0;
}

/* Section backgrounds: smooth global background only, text not crossing hard borders */

.section {
  position: relative;
  z-index: 1;
}

.section.alt {
  background: transparent;
}

/* Add extra vertical padding so text never sits exactly on color transitions */

.section-header,
.section-copy {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Smooth hover effect on glass cards (including gallery frames) */
.card.glass {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card.glass:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 163, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

/* Text gradient inside letters only (smooth color transition within bounds) */
.section-header h2,
.section-copy h2 {
  background-image: linear-gradient(90deg, #ffffff, #ffd4f3);
  background-size: 100% 100%;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  animation: none !important;
}

/* Soft pink gradient blocks for paragraphs and list items */
.section p,
.section li {
  background: radial-gradient(circle at top left, rgba(255, 79, 163, 0.1), rgba(255, 79, 163, 0.03) 70%);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: inset 0 0 6px rgba(255, 79, 163, 0.05), 0 2px 6px rgba(0, 0, 0, 0.3);
}

.section p:hover,
.section li:hover {
  background: radial-gradient(circle at top right, rgba(255, 79, 163, 0.18), rgba(255, 79, 163, 0.05) 80%);
  box-shadow: inset 0 0 10px rgba(255, 79, 163, 0.15), 0 4px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Ensure text stays readable within soft pink backgrounds */
.section p,
.section li {
  color: var(--text);
  line-height: 1.65;
}

/* Thicker transparent square frames for gallery photos */
.gallery-item {
  position: relative;
  border: 3px solid rgba(255, 79, 163, 0.35);
  border-radius: 0; /* make them square */
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(255, 140, 200, 0.65);
  box-shadow: 0 0 25px rgba(255, 79, 163, 0.25);
}

/* Make sure gallery images stay centered inside the new frame */
.gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* Softer gradient at the bottom of the site */
.site-footer {
  background: linear-gradient(to top, rgba(15, 2, 20, 1), rgba(40, 0, 40, 0.6) 50%, rgba(255, 79, 163, 0.05) 100%);
  border-top: 1px solid rgba(255, 79, 163, 0.15);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.6);
}

/* Unified square rounded transparent frame for all photos */
.hero-image,
.gallery-item img {
  position: relative;
  display: block;
  border-radius: 16px;
  border: 3px solid rgba(255, 79, 163, 0.35);
  box-shadow:
    0 0 20px rgba(255, 79, 163, 0.1),
    0 0 60px rgba(255, 79, 163, 0.05);
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  object-fit: cover;
}

/* Subtle glow that feels like the photo color fades into background */
.hero-image::after,
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at center,
              rgba(255, 79, 163, 0.15),
              rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0;
}

/* On hover – a bit more glow and lift */
.hero-image:hover,
.gallery-item:hover img {
  transform: scale(1.03);
  border-color: rgba(255, 120, 190, 0.6);
  box-shadow:
    0 0 30px rgba(255, 79, 163, 0.25),
    0 0 80px rgba(255, 79, 163, 0.15);
}

.hero-image:hover::after,
.gallery-item:hover::before {
  opacity: 1;
}

/* Ensure image glow layer stays behind the image content */
.gallery-item {
  position: relative;
  overflow: visible;
}

/* Harmonize hero frame with gallery */
.hero-orbit {
  border: 3px solid rgba(255, 79, 163, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 79, 163, 0.1);
}

/* Remove frames and glow from all images, keep smooth rounded style */
.hero-image,
.gallery-item img {
  border: none !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  backdrop-filter: none !important;
  transform: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover,
.gallery-item:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Remove extra overlay glow layers */
.hero-image::after,
.gallery-item::before {
  display: none !important;
}

.hero-orbit {
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Remove all borders, shadows and hover effects from gallery images */
.gallery-item,
.gallery-item img {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  transition: none !important;
  transform: none !important;
}

.gallery-item:hover img {
  transform: none !important;
  box-shadow: none !important;
}

/* Remove background cards from gallery items */
.gallery-item.card.glass {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Fade-in on scroll for bottom gallery photos */
#gallery img.fade-in {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

#gallery img.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* Reset paragraphs & list items: plain text, no separate background blocks */
.section p,
.section li {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 0.7rem !important;
}

/* Make headings solid color again (no gradient inside letters) */
.section-header h2,
.section-copy h2 {
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  color: var(--text) !important;
}

/* Extra vertical spacing so no text sits on top of any background seams */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Unified soft gradient background across the whole site */
body {
  background: linear-gradient(180deg, #1a001f 0%, #2b0032 40%, #3a0047 70%, #4d0059 100%);
  background-attachment: fixed;
  background-size: 100% 200%;
  animation: gradient-flow 25s ease-in-out infinite alternate;
  color: var(--text);
}

/* Remove separate section backgrounds and keep one smooth layer */
.section,
.section.alt {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Gentle moving gradient animation */
@keyframes gradient-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

/* Dark pink gradient background with subtle stars */
body {
  background: linear-gradient(180deg, #2a001c 0%, #3b0030 40%, #4a0042 70%, #5b0058 100%);
  background-attachment: fixed;
  background-size: 100% 200%;
  animation: gradient-flow 30s ease-in-out infinite alternate;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

/* Soft starfield with just a few subtle stars */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 200, 250, 0.6) 0, transparent 60%),
    radial-gradient(2px 2px at 80% 20%, rgba(255, 180, 240, 0.7) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 75%, rgba(255, 190, 255, 0.5) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 50%, rgba(255, 220, 250, 0.4) 0, transparent 60%);
  background-repeat: no-repeat;
  z-index: -1;
  animation: twinkle 6s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Gentle twinkling animation */
@keyframes twinkle {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

/* Soft gray-pink gradient background */
body {
  background: linear-gradient(180deg, #2c2a2d 0%, #4d3b49 40%, #6a4d63 70%, #b27ba3 100%);
  background-attachment: fixed;
  background-size: 100% 200%;
  animation: gradient-flow 40s ease-in-out infinite alternate;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

/* Keep soft twinkling stars for subtle atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 25% 35%, rgba(255, 200, 250, 0.5) 0, transparent 60%),
    radial-gradient(2px 2px at 75% 20%, rgba(255, 180, 240, 0.5) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 80%, rgba(255, 190, 255, 0.4) 0, transparent 60%);
  background-repeat: no-repeat;
  z-index: -1;
  animation: twinkle 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes twinkle {
  0% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
  100% { opacity: 0.5; transform: scale(1); }
}

/* --- Dark Kuromi Gothic Background --- */
body {
  background: radial-gradient(circle at top, #0a000a 0%, #1a0018 25%, #2a0028 60%, #3b0035 100%);
  background-attachment: fixed;
  background-size: 120% 200%;
  animation: kuromi-glow 35s ease-in-out infinite alternate;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

/* Kuromi-style faint stars & gothic hearts */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1.8px 1.8px at 25% 35%, rgba(255, 160, 240, 0.5) 0, transparent 60%),
    radial-gradient(2px 2px at 75% 20%, rgba(255, 130, 220, 0.6) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(255, 100, 220, 0.4) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(255, 180, 250, 0.4) 0, transparent 60%);
  background-repeat: no-repeat;
  z-index: -1;
  animation: kuromi-stars 8s ease-in-out infinite alternate;
  pointer-events: none;
  opacity: 0.8;
}

/* Gentle moving gradient animation for dark Kuromi mood */
@keyframes kuromi-glow {
  0% {
    background-position: 0% 0%;
    filter: brightness(1);
  }
  50% {
    background-position: 0% 50%;
    filter: brightness(1.05);
  }
  100% {
    background-position: 0% 100%;
    filter: brightness(1);
  }
}

/* Subtle twinkling of background accents */
@keyframes kuromi-stars {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
  100% { opacity: 0.6; transform: scale(1); }
}

/* Soft Kuromi-style glow for all text */
body,
.site-header,
.site-footer,
.section {
  text-shadow:
    0 0 4px rgba(255, 140, 230, 0.18),
    0 0 10px rgba(180, 80, 200, 0.12);
}

/* Global Kuromi glow for all text elements */
*, h1, h2, h3, h4, h5, h6, p, a, span, li, button {
  text-shadow:
    0 0 6px rgba(255, 120, 220, 0.4),
    0 0 12px rgba(255, 80, 180, 0.3),
    0 0 18px rgba(255, 60, 150, 0.25);
  animation: kuromi-text-pulse 6s ease-in-out infinite alternate;
}

/* Slight pulsing glow effect for Kuromi aesthetic */
@keyframes kuromi-text-pulse {
  0% {
    text-shadow:
      0 0 4px rgba(255, 100, 200, 0.25),
      0 0 8px rgba(255, 80, 180, 0.2),
      0 0 14px rgba(255, 60, 150, 0.15);
  }
  100% {
    text-shadow:
      0 0 8px rgba(255, 130, 230, 0.5),
      0 0 16px rgba(255, 100, 200, 0.4),
      0 0 25px rgba(255, 80, 160, 0.3);
  }
}

/* Move "$KUROMI in one line" block lower */
#one-line {
  display: inline-block;
  margin-top: 10px;
}

/* Trim extra spacing for the "$KUROMI in one line" glass card */
.section-media.card.glass {
  padding-top: 0.1rem !important;
  padding-bottom: 0.1rem !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}
