/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: "Varela Round", sans-serif; color: #f0e6ed; background: #1a0f14; min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Background layers --- */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #3d1825 0%, #2a1220 35%, #1a0f14 70%);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* --- Topbar --- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(26, 15, 20, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 80, 100, 0.2);
}
.brand { display: flex; align-items: center; gap: 0.5rem; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e84d6a;
  box-shadow: 0 0 12px #e84d6a;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.6; transform: scale(1.1); } }
.brandText { font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.02em; }
.pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(232, 77, 106, 0.2);
  border: 1px solid rgba(232, 77, 106, 0.5);
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.pill:hover { background: rgba(232, 77, 106, 0.35); border-color: #e84d6a; }
.liveBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.55rem 0.9rem;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:700;
  letter-spacing:0.02em;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(30,30,35,0.55);
  text-decoration:none;
  transition:transform .15s, filter .2s, background .2s, border-color .2s;
}
.liveBadge:hover{ transform: translateY(-1px); filter: brightness(1.1); }

.liveBadge.offline{
  color: rgba(235,235,235,0.75);
  border-color: rgba(180,180,190,0.25);
  background: rgba(40,40,50,0.45);
}

.liveBadge.live{
  color: #fff;
  border-color: rgba(255,70,100,0.55);
  background: linear-gradient(135deg, rgba(255,70,100,0.95), rgba(255,120,140,0.75));
  box-shadow: 0 10px 30px rgba(255,70,100,0.18);
}

/* --- Container --- */
.container { max-width: 1000px; margin: 0 auto; padding: 1.5rem; }

/* --- Cards --- */
.card {
  background: rgba(45, 25, 35, 0.6);
  border: 1px solid rgba(220, 80, 100, 0.25);
  border-radius: 1.25rem;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

/* --- Hero --- */
.hero {
  padding: 2rem;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 1rem;
}

/* ✅ important: let grid children shrink on mobile */
.heroGrid > * { min-width: 0; }

.titleWrap {
  margin-bottom: 0.75rem;
}

.title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;

  background: linear-gradient(135deg, #ff8fa3, #e84d6a);
  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Banner */
.bannerFrame {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(220, 80, 100, 0.3);

  /* keeps the banner “box” stable on mobile */
  aspect-ratio: 16 / 6;

  /* stops blurry upscaling (your image is 680px wide) */
  max-width: 680px;
  margin: 0.75rem auto;
}

.banner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Tags */
.mini {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.chip {
  white-space: nowrap;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(232, 77, 106, 0.15);
  border: 1px solid rgba(232, 77, 106, 0.35);
}

/* --- Mascots --- */
.mascotRow { display: flex; align-items: flex-end; gap: 0.5rem; }
.mascot { height: 80px; width: auto; }
.mascot.small { height: 50px; opacity: 0.85; }

/* --- Grid 2 (About + Stickers) --- */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) { .grid2 { grid-template-columns: 1fr; } }
.h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0 0 0.75rem 0;
  color: #ff8fa3;
}
.about p { margin: 0 0 0.75rem 0; line-height: 1.5; }
.bullets { margin: 0 0 1rem 0; padding-left: 1.25rem; }
.bullets li { margin-bottom: 0.35rem; }
.soft { font-size: 0.95rem; opacity: 0.85; margin: 0; }

/* --- Sticker wall --- */
.stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sticker { width: 60px; height: 60px; object-fit: contain; }
.sticker.tilt1 { transform: rotate(-8deg); }
.sticker.tilt2 { transform: rotate(5deg); }
.sticker.tilt3 { transform: rotate(-3deg); }
.calloutLink {
  display: block;
  text-decoration: none;
  color: inherit;
}
.callout {
  background: rgba(232, 77, 106, 0.12);
  border: 1px solid rgba(232, 77, 106, 0.35);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition:
    transform 0.15s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.calloutLink:hover .callout {
  background: rgba(232, 77, 106, 0.16);
  border-color: rgba(232, 77, 106, 0.6);
  transform: translateY(-2px);
}
.badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e84d6a;
  margin-bottom: 0.35rem;
}
.calloutText { font-size: 0.95rem; }
.code { font-family: ui-monospace, monospace; background: rgba(0,0,0,0.3); padding: 0.15rem 0.4rem; border-radius: 4px; }
.calloutSub { font-size: 0.8rem; opacity: 0.75; margin-top: 0.25rem; }

/* --- Socials / link cards --- */
.links .h2 { margin-bottom: 1rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.linkCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(220, 80, 100, 0.2);
  background: rgba(35, 18, 28, 0.6);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.linkCard:hover { border-color: rgba(232, 77, 106, 0.6); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.lcTop { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.lcIcon { font-size: 1.5rem; }
.lcTitle { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.05rem; }
.lcHandle { font-size: 0.85rem; opacity: 0.85; }
.lcBtn {
  font-size: 0.85rem;
  color: #ff8fa3;
  margin-top: auto;
}
.linkCard.twitch:hover { border-color: #9146ff; }
.linkCard.tiktok:hover { border-color: #fe2c55; }
.linkCard.youtube:hover { border-color: #ff0000; }
.linkCard.insta:hover { border-color: #e4405f; }
.linkCard.discord:hover { border-color: #5865f2; }
.linkCard.vrchat:hover { border-color: #00b4b4; }

/* --- Footer --- */
.footer {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(220, 80, 100, 0.2);
}
.footerInner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footerMascot { width: 48px; height: 48px; object-fit: contain; }
.footerTitle { font-family: "Fredoka", sans-serif; font-weight: 600; font-size: 1.1rem; }
.footerSub { font-size: 0.9rem; opacity: 0.8; }
