/* ========================================
   CSS VARIABLES & RESET
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #f0538c;
  --pink-dark:   #c8245e;
  --pink-light:  #ffe0ee;
  --dark:        #0d0d1a;
  --dark2:       #222222;
  --purple:      #7b5ea7;
  --purple-light: #f5f0ff;
  --gray-dark:   #444444;
  --gray:        #888888;
  --gray-light:  #f0f0f0;
  --gray-mid:    #e4e4e4;
  --white:       #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #777777;
  --en: 'Bebas Neue', 'Oswald', sans-serif;
  --jp: 'Noto Sans JP', sans-serif;
  --sidebar-w: 230px;
  --r: 12px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--jp);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ========================================
   PC SIDEBAR
======================================== */
.sidebar { display: none; }

@media (min-width: 768px) {
  .sidebar {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: var(--sidebar-w);
    background: var(--white);
    z-index: 200;
    padding: 28px 16px 24px;
    box-shadow: 2px 0 20px rgba(0,0,0,0.08);
    overflow-y: auto;
  }

  .sidebar__logo {
    padding: 0 8px 20px;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 16px;
  }

  .sidebar__logo img { width: 140px; }

  .sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
  }

  .sidebar__link {
    display: block;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    transition: background 0.18s, transform 0.15s;
  }

  .sidebar__link:hover {
    background: var(--pink);
    transform: translateX(4px);
  }

  .sidebar__entry {
    display: block;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white);
    font-family: var(--en);
    font-size: 15px;
    letter-spacing: 0.14em;
    text-align: center;
    padding: 14px 12px;
    border-radius: 50px;
    margin-top: 14px;
    box-shadow: 0 4px 16px rgba(240,83,140,0.4);
    transition: opacity 0.2s, transform 0.15s;
  }

  .sidebar__entry:hover { opacity: 0.9; transform: translateY(-2px); }
}

/* ========================================
   PAGE CONTENT
======================================== */
.page-content {
  max-width: 430px;
  margin: 0 auto;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  body {
    background: url('images/back_MV_251016.jpg') center / cover fixed;
  }
  .page-content {
    margin-left: var(--sidebar-w);
    max-width: none;
    width: calc(100% - var(--sidebar-w));
    padding-bottom: 0;
  }
}

/* ========================================
   STICKY BAR (SP)
======================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  z-index: 999;
}

@media (min-width: 768px) { .sticky-bar { display: none; } }

.sticky-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  padding: 10px 20px;
  gap: 2px;
}

.sticky-bar__en {
  font-family: var(--en);
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.12em;
}

.sticky-bar__ja {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/back_MV_251016.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.hero__bg2 {
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 160px;
  background-repeat: repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(5,0,20,0.60) 0%, rgba(30,0,15,0.90) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 28px 40px;
  justify-content: center;
  gap: 0;
}

.hero__top { margin-bottom: 20px; }

.hero__logo { width: 130px; margin: 0 auto 8px; }

.hero__produced {
  font-family: var(--en);
  color: var(--pink);
  font-size: 11px;
  letter-spacing: 0.24em;
}

.hero__copy { margin-bottom: 24px; }

.hero__copy-sub {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.hero__copy-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  line-height: 0.9;
  margin-bottom: 4px;
}

.hero__next {
  font-family: var(--en);
  color: var(--white);
  font-size: 58px;
  letter-spacing: 0.04em;
}

.hero__kids {
  font-family: var(--en);
  color: var(--pink);
  font-size: 80px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 48px rgba(240,83,140,0.55);
}

.hero__copy-audition {
  font-family: var(--en);
  color: var(--white);
  font-size: 36px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  border-left: 4px solid var(--pink);
  border-right: 4px solid var(--pink);
  padding: 4px 20px;
  display: inline-block;
}

.hero__meta { margin-bottom: 32px; }

.hero__date-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.hero__date {
  font-family: var(--en);
  color: var(--white);
  font-size: 32px;
  letter-spacing: 0.06em;
}

.hero__wed {
  font-family: var(--en);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.hero__venue {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero__tags {
  font-family: var(--en);
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hero__entry-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  font-family: var(--en);
  font-size: 24px;
  letter-spacing: 0.18em;
  padding: 16px 52px;
  border-radius: 50px;
  margin-bottom: 14px;
  box-shadow: 0 6px 24px rgba(240,83,140,0.5);
  transition: transform 0.2s;
}

.hero__entry-btn:active { transform: scale(0.97); }

.hero__entry-period {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

.hero__entry-period strong { color: var(--white); font-size: 12px; }

/* Ticker */
.ticker {
  position: relative; z-index: 1;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  overflow: hidden;
  padding: 9px 0;
}

.ticker__track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--en);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ========================================
   SECTION BANDS
======================================== */
.band {
  background: var(--dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/mensegg_back.png');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}

.band--pink {
  background: linear-gradient(90deg, var(--pink-dark) 0%, var(--pink) 100%);
}

.band--pink::before {
  background-image: url('images/mens-egg-bg-original-pink.png') !important;
  background-size: 140px !important;
  opacity: 0.20 !important;
  mix-blend-mode: overlay;
}

.band--purple {
  background: linear-gradient(90deg, #5a3d8a 0%, #7b5ea7 100%);
}

.band--purple::before {
  background-image: url('images/mens-egg-bg-original-pink.png') !important;
  background-size: 140px !important;
  opacity: 0.15 !important;
  mix-blend-mode: overlay;
}

.band__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
}

@media (min-width: 768px) {
  .band__inner { padding: 22px 48px; }
}

.band__num {
  font-family: var(--en);
  font-size: 48px;
  color: var(--pink);
  line-height: 1;
  min-width: 52px;
}

.band__num--light { color: rgba(255,255,255,0.35); }

.band__name {
  font-family: var(--en);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.18em;
}

.band__name--light { color: var(--white); }

.band__ja {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  margin-left: auto;
}

.band__ja--light { color: rgba(255,255,255,0.55); }

/* ========================================
   SECTION BODY
======================================== */
.body {
  background: var(--white);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.body::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 220px;
  background-repeat: repeat;
  opacity: 0.035;
  pointer-events: none;
}

.body--gray {
  background: var(--gray-light);
}

.body--gray::before {
  opacity: 0.05;
}

.body__inner {
  padding: 0 24px;
}

@media (min-width: 768px) {
  .body { padding: 56px 0; }
  .body__inner { max-width: 680px; margin: 0 auto; padding: 0 48px; }
}

/* ========================================
   COMMON TYPOGRAPHY
======================================== */
.lead {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.body__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ========================================
   01 ABOUT — PILLARS
======================================== */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-light);
  border-radius: var(--r);
  padding: 18px 20px;
  border-left: 4px solid var(--pink);
}

.pillar:nth-child(2) { border-left-color: #7b2fff; }
.pillar:nth-child(3) { border-left-color: #ff8c00; }

.pillar__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar__icon i {
  font-size: 22px;
  color: var(--pink);
}

.pillar__name {
  font-family: var(--en);
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.pillar__text { font-size: 12px; color: var(--text-muted); }

/* ========================================
   02 WHY APPLY
======================================== */
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  border-top: 3px solid var(--pink);
}

.why-card__num {
  font-family: var(--en);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-card__icon i {
  font-size: 22px;
  color: var(--white);
}

.why-card__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.why-card__text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-muted);
}

.extra-benefits {
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 20px;
  border: 2px dashed var(--gray-mid);
}

.extra-benefits__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.extra-benefits__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.extra-benefits__tags span {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ========================================
   03 CRITERIA
======================================== */
.criteria-list {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}

.criterion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-light);
  gap: 12px;
}

.criterion:last-child { border-bottom: none; }

.criterion__left { flex: 1; }

.criterion__name {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}

.criterion__detail {
  font-size: 11px;
  color: var(--text-muted);
}

.criterion__pct {
  font-family: var(--en);
  font-size: 44px;
  color: var(--pink);
  line-height: 1;
  min-width: 70px;
  text-align: right;
}

.criterion__pct small { font-size: 20px; }

/* ========================================
   04 ELIGIBILITY
======================================== */
.elig-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.elig-stat {
  flex: 1;
  text-align: center;
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 12px;
  border: 2px solid var(--pink);
  box-shadow: 0 4px 14px rgba(240,83,140,0.12);
}

.elig-stat__val {
  font-family: var(--en);
  font-size: 44px;
  color: var(--pink);
  line-height: 1;
}

.elig-stat__val span { font-size: 22px; }

.elig-stat__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 4px;
}

.elig-stat__label {
  font-size: 10px;
  color: var(--text-muted);
}

.req-section__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink);
}

.req-section__header span:first-child {
  font-family: var(--en);
  font-size: 16px;
  color: var(--pink);
  letter-spacing: 0.1em;
}

.req-section__header span:last-child {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.req-item__num {
  font-family: var(--en);
  font-size: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(240,83,140,0.35);
}

.req-item__title {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
}

.req-item__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.req-item__text small {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

/* ========================================
   05 FOR PARENTS
======================================== */
.parents-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.parents-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--purple);
}

.parents-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b5ea7, #5a3d8a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.parents-card__icon i {
  color: var(--white);
  font-size: 16px;
}

.parents-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.parents-card__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .parents-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

/* ========================================
   06 SCHEDULE
======================================== */
.sched-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.sched-step {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  position: relative;
}

.sched-step__num {
  font-family: var(--en);
  font-size: 32px;
  line-height: 1;
  width: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.9);
  padding: 20px 0;
}

.sched-step__body {
  flex: 1;
  padding: 18px 14px;
  min-width: 0;
}
.sched-step__en {
  font-family: var(--en);
  font-size: 21px;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.sched-step__ja {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.sched-step__desc {
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
}

.sched-step__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 14px;
  background: rgba(0,0,0,0.15);
  min-width: 76px;
}
.sched-step__date span {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.sched-step__arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.4) !important;
}

.sched-step--pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
}
.sched-step--pink::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 130px;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: 14px;
}
.sched-step--dark {
  background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3a 100%);
}
.sched-step--gray {
  background: linear-gradient(135deg, #2e2e2e 0%, #3a3a3a 100%);
}
.sched-step--purple {
  background: linear-gradient(135deg, #5a3d8a 0%, #7b5ea7 100%);
}
.sched-step--purple::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 130px;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: 14px;
}
.sched-step--pink-dark {
  background: linear-gradient(135deg, #9b1d4a 0%, #c8245e 100%);
}
.sched-step--pink-dark::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 130px;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: 14px;
}

.sched-conn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  color: var(--pink);
  font-size: 16px;
}
.sched-conn--year {
  flex-direction: column;
  height: 52px;
  gap: 4px;
}
.sched-conn__year-badge {
  font-family: var(--en);
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  background: var(--pink-dark);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.sched-stage {
  background: linear-gradient(135deg, #0d0818 0%, #1e0828 100%);
  border: 2px solid var(--pink);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 28px rgba(240,83,140,0.45);
  position: relative;
  overflow: hidden;
}
.sched-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 160px;
  opacity: 0.05;
}
.sched-stage__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
}
.sched-stage__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sched-stage__icon i { font-size: 22px; color: var(--white); }
.sched-stage__step {
  font-family: var(--en);
  font-size: 9px;
  color: var(--pink);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.sched-stage__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  min-width: 0;
}
.sched-stage__label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--pink);
  opacity: 0.85;
}
.sched-stage__name {
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
}
.sched-stage__date {
  font-family: var(--en);
  font-size: 20px;
  color: var(--pink);
  letter-spacing: 0.05em;
  line-height: 1;
}
.sched-stage__venue {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.sched-stage__venue i { margin-right: 4px; color: var(--pink); opacity: 0.7; }

.schedule-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 16px;
}

/* ========================================
   07 PRIZES
======================================== */
.prize-all {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  padding: 16px 20px;
  border-radius: var(--r);
  margin-bottom: 20px;
  border: 1px solid rgba(240,83,140,0.3);
}

.prize-all__tag {
  font-family: var(--en);
  font-size: 9px;
  color: var(--pink);
  letter-spacing: 0.2em;
  white-space: nowrap;
  background: rgba(240,83,140,0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

.prize-all__text {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.prize-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.prize-card {
  border-radius: var(--r);
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.prize-card--grand {
  background: var(--dark);
  border: 1px solid var(--pink);
}
.prize-card--jury {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.15);
}
.prize-card--vote,
.prize-card--mixch {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
}

.prize-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.prize-card__emoji {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.prize-card__emoji i {
  font-size: 18px;
  color: var(--white);
}
.prize-card--grand .prize-card__emoji,
.prize-card--jury .prize-card__emoji {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.prize-card__size-badge {
  font-size: 10px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: auto;
}

.prize-card__size-badge--sm { background: var(--gray); }

.prize-card__rank {
  font-family: var(--en);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.prize-card--vote .prize-card__rank,
.prize-card--mixch .prize-card__rank { color: var(--text-muted); }

.prize-card__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.prize-card--vote .prize-card__name,
.prize-card--mixch .prize-card__name { color: var(--text); }

.prize-card__list { display: flex; flex-direction: column; gap: 6px; }

.prize-card__list li {
  font-size: 12px;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  color: rgba(255,255,255,0.75);
}

.prize-card--vote .prize-card__list li,
.prize-card--mixch .prize-card__list li { color: var(--text); }

.prize-card__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 10px;
  top: 2px;
}

.prizes-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ========================================
   08 EVENT INFO
======================================== */
.event-table {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  margin-bottom: 20px;
}

.event-row {
  display: flex;
  align-items: flex-start;
  padding: 16px 22px;
  border-bottom: 1px solid var(--gray-light);
  gap: 16px;
}

.event-row:last-child { border-bottom: none; }

.event-row__key {
  font-family: var(--en);
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.16em;
  min-width: 68px;
  padding-top: 3px;
}

.event-row__val {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 500;
}

.event-row__val--big {
  font-family: var(--en);
  font-size: 30px !important;
  font-weight: normal !important;
  color: var(--text) !important;
  line-height: 1 !important;
}

.event-row__val--big small {
  font-size: 16px;
  margin-left: 4px;
  opacity: 0.6;
}

.ticket-box {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.ticket-box__title {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--text);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--gray-light);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
}

.ticket-row:last-of-type { border-bottom: none; }

.ticket-row__type { font-size: 13px; color: var(--text-muted); }

.ticket-row__price {
  font-family: var(--en);
  font-size: 26px;
  color: var(--text);
}

.ticket-row__price small { font-size: 14px; }

.ticket-box__note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.85;
}

.event-org {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ========================================
   09 NOTICES
======================================== */
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.notice-list li {
  font-size: 12px;
  line-height: 1.85;
  padding: 14px 18px;
  background: var(--gray-light);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--r) var(--r) 0;
}

.contact-box {
  background: var(--dark);
  padding: 28px 24px;
  text-align: center;
  border-radius: var(--r);
}

.contact-box__title {
  font-family: var(--en);
  font-size: 24px;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 10px;
}

.contact-box__org {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 14px;
}

.contact-box__email {
  display: inline-block;
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 2px;
}

/* ========================================
   FINAL CTA
======================================== */
.cta-section {
  position: relative;
  background: var(--dark);
  padding: 72px 0 80px;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute; inset: 0;
  background-image: url('images/mens-egg-bg-original-pink.png');
  background-size: 200px;
  opacity: 0.22;
}

.cta-section__bg2 {
  position: absolute; inset: 0;
  background-image: url('images/mensegg_back.png');
  background-size: 320px;
  background-repeat: repeat;
  opacity: 0.08;
  mix-blend-mode: screen;
}

.cta-section__inner {
  position: relative; z-index: 1;
  padding: 0 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section__inner { padding: 0 48px; max-width: 680px; margin: 0 auto; }
}

.cta-section__logo {
  width: 110px;
  margin: 0 auto 24px;
}

.cta-section__lead {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.cta-section__period-wrap { margin-bottom: 8px; }

.cta-section__period-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.cta-section__period {
  display: block;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.cta-section__note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}

.cta-section__btn {
  display: block;
  max-width: 360px;
  margin: 0 auto 48px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  font-family: var(--en);
  font-size: 24px;
  letter-spacing: 0.16em;
  padding: 20px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(240,83,140,0.45);
  transition: transform 0.2s;
}

.cta-section__btn:active { transform: scale(0.97); }

.links-section__title {
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.links-grid__item {
  display: block;
  padding: 13px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-align: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.links-grid__item--wide { grid-column: 1 / -1; }
.links-grid__item:active { background: rgba(255,255,255,0.12); }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #000;
  padding: 36px 24px 80px;
  text-align: center;
}

@media (min-width: 768px) { .footer { padding-bottom: 40px; } }

.footer__logo {
  width: 80px;
  margin: 0 auto 12px;
  opacity: 0.3;
}

.footer__copy {
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  line-height: 1.9;
}

/* ========================================
   PC GRID TWEAKS
======================================== */
@media (min-width: 768px) {
  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }

  .prize-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .elig-stats { max-width: 360px; }

  .criteria-list { max-width: 560px; }

  .hero__kids { font-size: 100px; }
  .hero__next { font-size: 72px; }
  .hero__copy-audition { font-size: 44px; }
}
