:root {
  --bg: #140811;
  --bg-deep: #0d040b;
  --bg-soft: #24101f;
  --surface: rgba(49, 20, 37, 0.62);
  --surface-strong: rgba(65, 27, 48, 0.78);
  --surface-soft: rgba(255, 231, 240, 0.05);
  --border: rgba(255, 214, 228, 0.12);
  --border-strong: rgba(255, 197, 217, 0.28);
  --text: #f7edf3;
  --muted: #d9bccb;
  --muted-strong: #c996ac;
  --accent: #f0a6bf;
  --accent-strong: #e58aa9;
  --accent-soft: rgba(240, 166, 191, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --glow: 0 0 42px rgba(240, 166, 191, 0.16);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 174, 199, 0.11), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(224, 132, 173, 0.1), transparent 28%),
    radial-gradient(circle at bottom center, rgba(102, 33, 69, 0.35), transparent 36%),
    linear-gradient(180deg, #180914 0%, #130611 40%, #0d040b 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(240, 166, 191, 0.25);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

::selection {
  background: rgba(240, 166, 191, 0.22);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 5, 12, 0.95);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(240, 166, 191, 0.95), rgba(189, 105, 140, 0.95));
  border-radius: 999px;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.site-bg::before {
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(245, 183, 206, 0.22) 0%, rgba(245, 183, 206, 0.08) 48%, transparent 72%);
}

.site-bg::after {
  width: 34vw;
  height: 34vw;
  min-width: 240px;
  min-height: 240px;
  right: -10vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(213, 116, 155, 0.2) 0%, rgba(213, 116, 155, 0.06) 46%, transparent 72%);
}

.petal-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.petal {
  position: absolute;
  top: -14%;
  left: var(--x);
  width: var(--size);
  height: calc(var(--size) * 0.8);
  border-radius: 65% 35% 58% 42% / 62% 42% 58% 38%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 251, 253, 0.95) 0%, rgba(255, 220, 232, 0.9) 34%, rgba(239, 165, 190, 0.92) 74%, rgba(212, 113, 150, 0.88) 100%);
  box-shadow:
    inset -3px -4px 8px rgba(189, 87, 124, 0.22),
    0 0 14px rgba(243, 188, 211, 0.18);
  opacity: 0.78;
  transform: translate3d(0, -15vh, 0) rotate(0deg) scale(var(--scale));
  animation: petalFall var(--duration) linear infinite;
  animation-delay: var(--delay);
}

.petal::after {
  content: "";
  position: absolute;
  width: 24%;
  height: 24%;
  top: 18%;
  left: 44%;
  border-radius: 50%;
  background: rgba(255, 244, 248, 0.7);
  filter: blur(1px);
}

@keyframes petalFall {
  0% {
    transform: translate3d(0, -15vh, 0) rotate(0deg) scale(var(--scale));
    opacity: 0;
  }

  10% {
    opacity: 0.82;
  }

  30% {
    transform: translate3d(calc(var(--drift) * 0.35), 28vh, 0) rotate(108deg) scale(calc(var(--scale) * 0.98));
  }

  60% {
    transform: translate3d(calc(var(--drift) * 0.7), 64vh, 0) rotate(225deg) scale(calc(var(--scale) * 1.03));
    opacity: 0.72;
  }

  100% {
    transform: translate3d(var(--drift), 115vh, 0) rotate(360deg) scale(calc(var(--scale) * 0.95));
    opacity: 0;
  }
}

.page-wrap {
  position: relative;
  z-index: 2;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), var(--max-width));
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 214, 228, 0.14);
  background: rgba(24, 9, 20, 0.56);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  z-index: 30;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.navbar.scrolled {
  background: rgba(20, 7, 16, 0.84);
  border-color: rgba(255, 204, 221, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(244, 178, 201, 0.22));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.navbar-logo:hover img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 22px rgba(244, 178, 201, 0.32));
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.nav-btn:hover,
.nav-btn.is-active {
  color: var(--text);
  background: rgba(255, 228, 237, 0.08);
  border-color: rgba(255, 214, 228, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 236, 243, 0.05), var(--glow);
}

.nav-btn:hover {
  transform: translateY(-1px);
}

main {
  padding: 126px 0 56px;
}

.section-shell {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 0 auto;
  padding: 32px 0;
}

.section-shell + .section-shell {
  margin-top: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.centered,
.page-intro {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 238, 244, 0.06);
  border: 1px solid rgba(255, 214, 228, 0.12);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd9e5, #ed9fbc);
  box-shadow: 0 0 10px rgba(240, 166, 191, 0.4);
}

.divider {
  width: 96px;
  height: 1px;
  margin: 22px auto 0;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 228, 0.8), transparent);
}

.page-title,
.section-title,
.hero-title,
.lead-card h2,
.team-card h3,
.game-info h3,
.event-card h3,
.application-panel h1,
.support-card h3,
.cta-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.page-title,
.section-title {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-subtitle,
.section-subtitle,
.hero-subtitle,
.section-note,
.application-note,
.game-info p,
.event-card p,
.support-card p,
.footer-copy,
.footer-credit {
  color: var(--muted);
}

.page-subtitle,
.section-subtitle,
.hero-subtitle {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1.03rem;
}

.section-note,
.application-note {
  margin: 18px auto 0;
  max-width: 700px;
  font-size: 0.96rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.primary-btn {
  color: #260913;
  background: linear-gradient(135deg, #ffdbe6 0%, #f2aac3 52%, #e789a9 100%);
  box-shadow: 0 18px 36px rgba(229, 138, 169, 0.24);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(229, 138, 169, 0.28);
}

.secondary-btn {
  color: var(--text);
  background: rgba(255, 238, 244, 0.05);
  border-color: rgba(255, 214, 228, 0.16);
}

.secondary-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 238, 244, 0.08);
  border-color: rgba(255, 214, 228, 0.26);
  box-shadow: var(--glow);
}

.soft-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.soft-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 238, 244, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.artist-chip {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(244, 181, 205, 0.24), rgba(204, 101, 141, 0.24));
  border-color: rgba(255, 214, 228, 0.2);
  box-shadow: 0 14px 26px rgba(175, 74, 117, 0.16);
}

.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  margin: 0;
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-meta,
.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 520px);
}

.hero-detail-card {
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 245, 249, 0.08), rgba(255, 245, 249, 0.02)),
    rgba(51, 18, 35, 0.8);
  border: 1px solid rgba(255, 214, 228, 0.14);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 244, 248, 0.04);
}

.hero-detail-card span {
  display: block;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-detail-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-stats {
  width: 100%;
  margin-top: 4px;
}

.artist-spotlight {
  width: min(100%, 430px);
  padding: 18px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 245, 249, 0.08), rgba(255, 245, 249, 0.02)),
    rgba(58, 20, 39, 0.82);
  border: 1px solid rgba(255, 214, 228, 0.16);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 244, 248, 0.05);
}

.artist-spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-spotlight-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe6ee, #eda1bf);
  box-shadow: 0 0 12px rgba(240, 166, 191, 0.45);
}

.artist-spotlight strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.artist-spotlight p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.stat-card {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 234, 241, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.stat-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 238, 244, 0.08), rgba(255, 238, 244, 0.02)),
    linear-gradient(145deg, rgba(73, 27, 52, 0.9), rgba(25, 9, 20, 0.96));
  border: 1px solid rgba(255, 214, 228, 0.14);
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(240, 166, 191, 0.08);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-card::before {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 211, 226, 0.16) 0%, transparent 70%);
}

.hero-card::after {
  width: 320px;
  height: 320px;
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(226, 126, 164, 0.18) 0%, transparent 72%);
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 239, 245, 0.08);
  border: 1px solid rgba(255, 214, 228, 0.12);
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(100%, 600px);
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 28px rgba(242, 170, 195, 0.12));
  animation: logoFloat 6.8s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-card-note {
  width: min(320px, 100%);
  margin: 22px auto 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 238, 244, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

.event-grid,
.support-grid,
.team-grid {
  display: grid;
  gap: 20px;
}

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

.event-card,
.support-card,
.team-card,
.lead-card,
.application-panel,
.cta-banner,
.game-card {
  background:
    linear-gradient(180deg, rgba(255, 243, 247, 0.06), rgba(255, 243, 247, 0.02)),
    rgba(44, 17, 33, 0.82);
  border: 1px solid rgba(255, 214, 228, 0.12);
  box-shadow: var(--shadow);
}

.event-card,
.support-card,
.team-card {
  padding: 24px;
  border-radius: var(--radius-md);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.event-card:hover,
.support-card:hover,
.team-card:hover,
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 221, 0.22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38), var(--glow);
}

.event-card h3,
.support-card h3,
.team-card h3,
.game-info h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.event-card p,
.support-card p {
  margin: 0;
  font-size: 0.96rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.activity-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 238, 244, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.12);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.activity-tag:hover {
  transform: translateY(-3px);
  background: rgba(255, 238, 244, 0.09);
  border-color: rgba(255, 204, 221, 0.24);
  box-shadow: var(--glow);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
}

.cta-banner p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
}

.section-center {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-panel {
  width: min(100%, 760px);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.application-panel h1 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
}

.application-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.page-intro {
  margin-bottom: 18px;
}

.lead-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 24px;
}

.lead-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}

.member-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.member-list--lead {
  gap: 14px;
}

.member-list li {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.member-list--lead li {
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
}

.member-list strong {
  color: var(--accent);
  font-weight: 800;
}


.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card h3 {
  font-size: 1.22rem;
}

.team-credit {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 238, 244, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.1);
  color: rgba(222, 199, 209, 0.86);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.team-credit strong {
  color: rgba(255, 220, 232, 0.92);
}

.games-container {
  display: grid;
  gap: 20px;
}

.game-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  scroll-margin-top: 130px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.game-card.highlight {
  animation: gameHighlight 2.2s ease;
}

@keyframes gameHighlight {
  0% {
    border-color: rgba(255, 224, 234, 0.52);
    box-shadow: 0 0 0 1px rgba(255, 224, 234, 0.2), 0 24px 74px rgba(238, 146, 178, 0.34);
  }

  100% {
    border-color: rgba(255, 214, 228, 0.12);
    box-shadow: var(--shadow);
  }
}

.game-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.game-img {
  flex: 1 1 120px;
  min-height: 188px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 234, 241, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.1);
}

.game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 188px;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  padding: 16px;
  background:
    radial-gradient(circle at top, rgba(255, 227, 237, 0.08), transparent 52%),
    rgba(255, 234, 241, 0.04);
  color: var(--muted-strong);
}

.img-placeholder svg {
  width: 38px;
  height: 38px;
  fill: rgba(241, 177, 202, 0.65);
}

.game-info h3 {
  font-size: 1.5rem;
}

.game-info p {
  margin: 0;
  font-size: 0.98rem;
}

footer {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 24px auto 34px;
  padding-top: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 214, 228, 0.1);
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

.footer-credit {
  margin: 4px 0 0;
  font-size: 0.82rem;
}

.footer-credit strong {
  color: rgba(255, 228, 237, 0.92);
  font-weight: 600;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 238, 244, 0.05);
  border: 1px solid rgba(255, 214, 228, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  background: rgba(255, 238, 244, 0.08);
  border-color: rgba(255, 204, 221, 0.26);
  box-shadow: var(--glow);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: #f8dbe6;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-details {
    width: min(100%, 560px);
  }

  .artist-spotlight {
    text-align: center;
  }

  .event-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .game-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .navbar {
    top: 12px;
    width: calc(100% - 16px);
    padding: 12px 12px;
    gap: 10px;
  }

  .navbar-logo img {
    height: 42px;
  }

  .navbar-links {
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .navbar-links::-webkit-scrollbar {
    display: none;
  }

  .nav-btn {
    padding: 8px 12px;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  main {
    padding-top: 106px;
  }

  .section-shell {
    width: calc(100% - 16px);
    padding: 24px 0;
  }

  .hero-card {
    min-height: 420px;
    padding: 24px;
  }

  .artist-spotlight {
    padding: 16px 18px;
  }

  .application-panel,
  .lead-card,
  .cta-banner,
  .game-card {
    padding: 22px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .activities-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .soft-chip-row,
  .hero-meta,
  .hero-details,
  .hero-actions,
  .hero-stats,
  .application-actions {
    justify-content: center;
  }

  .hero-details {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 1100px) {
  .activities-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .activities-grid .activity-tag:nth-last-child(3) {
    grid-column: 3;
  }

  .activities-grid .activity-tag:nth-last-child(2) {
    grid-column: 4;
  }

  .activities-grid .activity-tag:nth-last-child(1) {
    grid-column: 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .petal-layer {
    display: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
