@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --disney-navy: #001e4d;
  --disney-blue: #0057b8;
  --disney-gold: #c8a951;
  --disney-gold-light: #f0d080;
  --disney-white: #ffffff;
  --disney-dark: #000a1e;
  --disney-purple: #4a1c6b;
  --disney-pink: #e91e8c;
  --gradient-magic: linear-gradient(135deg, #001e4d 0%, #0a2e6e 50%, #001e4d 100%);
  --gradient-gold: linear-gradient(135deg, #c8a951 0%, #f0d080 50%, #c8a951 100%);
  --activity-card-width: 225px;
  --activity-card-height: 360px;
  --activity-carousel-gap: 20px;
}

@media (max-width: 360px) {
  :root {
    --activity-card-width: 210px;
    --activity-card-height: 336px;
  }
}

@media (min-width: 768px) {
  :root {
    --activity-card-width: 240px;
    --activity-card-height: 384px;
  }
}

@media (min-width: 1024px) {
  :root {
    --activity-card-width: 285px;
    --activity-card-height: 448px;
  }
}

@media (min-width: 1440px) {
  :root {
    --activity-card-width: 315px;
    --activity-card-height: 496px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--disney-dark);
  color: var(--disney-white);
  overflow-x: hidden;
}

/* ===== STARS BACKGROUND ===== */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 10, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 81, 0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: var(--disney-gold);
  letter-spacing: 2px;
  -webkit-text-fill-color: var(--disney-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--disney-gold-light);
  background: rgba(200, 169, 81, 0.15);
}

.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--disney-navy) !important;
  font-weight: 700 !important;
  -webkit-text-fill-color: var(--disney-navy) !important;
}

.nav-cta:hover {
  background: var(--disney-gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--disney-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, #0d2d6b 0%, #001e4d 40%, #000a1e 100%);
}


.hero-fireworks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 110px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid var(--disney-gold);
  color: var(--disney-gold-light);
  font-size: 12px;
  letter-spacing: 3px;
  padding: 8px 24px;
  border-radius: 24px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--disney-gold-light) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 24px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, var(--disney-gold-light) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: shimmer 4s ease-in-out infinite;
  background-size: 200% 100%;
}

.hero-description {
  font-size: clamp(13px, 1.6vw, 15px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 48px;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.hero-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* ===== Smooth-scroll anchor offsets ===== */
#about,
#features,
#schedule,
#activities,
#howtojoin {
  scroll-margin-top: 100px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--disney-navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 81, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--disney-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  border-color: var(--disney-gold);
  color: var(--disney-gold-light);
  background: rgba(200, 169, 81, 0.1);
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.countdown-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 169, 81, 0.25);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 169, 81, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.countdown-event-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 4vw, 32px);
  margin-bottom: 40px;
  color: white;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.countdown-unit {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 8px;
}

.countdown-separator {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  color: var(--disney-gold);
  line-height: 72px;
  opacity: 0.5;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, var(--disney-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== EVENT CARDS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card:hover {
  border-color: rgba(200, 169, 81, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 169, 81, 0.2);
}

.event-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  position: relative;
}

.event-card-image-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: var(--bg-gradient, linear-gradient(135deg, #1a0d3b, #2d1b6b));
}

.event-card-body {
  padding: 24px;
}

.event-card-season {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-card-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.event-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.event-card-date svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.event-card-tag {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tag-upcoming { background: rgba(200, 169, 81, 0.2); color: var(--disney-gold-light); }
.tag-ongoing { background: rgba(46, 196, 100, 0.2); color: #5ee89a; }
.tag-ended { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

/* ===== SWEETS SECTION ===== */
.sweets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.sweet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sweet-card:hover {
  border-color: rgba(233, 30, 140, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.15);
}

.sweet-card-emoji {
  font-size: 64px;
  padding: 32px 16px 16px;
  display: block;
  background: linear-gradient(135deg, rgba(74, 28, 107, 0.5), rgba(233, 30, 140, 0.2));
}

.sweet-card-body {
  padding: 16px;
}

.sweet-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sweet-card-price {
  font-size: 13px;
  color: var(--disney-gold);
  margin-bottom: 8px;
}

.sweet-card-event {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* ===== CALENDAR ===== */
.calendar-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: 24px;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: rgba(200, 169, 81, 0.08);
  border-bottom: 1px solid rgba(200, 169, 81, 0.2);
}

.calendar-nav {
  background: transparent;
  border: 1px solid rgba(200, 169, 81, 0.4);
  color: var(--disney-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calendar-nav:hover {
  background: rgba(200, 169, 81, 0.2);
}

.calendar-month-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: white;
}

.calendar-grid {
  padding: 24px 32px 32px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekday {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px;
  gap: 2px;
}

.calendar-day:hover {
  background: rgba(255,255,255,0.08);
}

.calendar-day.has-event {
  background: rgba(200, 169, 81, 0.12);
  border: 1px solid rgba(200, 169, 81, 0.3);
}

.calendar-day.has-event:hover {
  background: rgba(200, 169, 81, 0.2);
}

.calendar-day.today {
  background: var(--disney-blue);
  font-weight: 700;
}

.calendar-day.empty {
  opacity: 0.2;
  cursor: default;
}

.calendar-day-num {
  font-size: 13px;
  line-height: 1;
}

.calendar-day-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--disney-gold);
  flex-shrink: 0;
}

.calendar-legend {
  padding: 16px 32px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #071530;
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-hero {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: var(--bg-gradient, linear-gradient(135deg, #1a0d3b, #2d1b6b));
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.modal-body {
  padding: 32px;
}

.modal-season {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.modal-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 15px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.modal-info-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}

.modal-info-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--disney-gold-light);
}

.modal-highlights {
  margin-bottom: 28px;
}

.modal-highlights h4 {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.modal-highlight-list li::before {
  content: '✦';
  color: var(--disney-gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: #000a1e;
  border-top: 1px solid rgba(200, 169, 81, 0.15);
  padding: 60px 24px 32px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 420px;
}

.footer-col-title {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--disney-gold-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  max-width: 500px;
  text-align: right;
}

/* ===== SPARKLE ANIMATION ===== */
@keyframes sparkle-float {
  0% { transform: translate(0,0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx,30px), var(--ty,-80px)) rotate(360deg) scale(0); opacity: 0; }
}

.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkle-float 1.5s ease-out forwards;
  font-size: 16px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== ABOUT ===== */
.about-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 2;
  margin-bottom: 24px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.about-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(200,169,81,0.5);
  color: var(--disney-gold-light);
  font-size: 13px;
  letter-spacing: 0.5px;
  background: rgba(200,169,81,0.08);
}

/* ===== BASIC INFO ===== */
.info-list {
  max-width: 560px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(200,169,81,0.18);
}

.info-item:last-child {
  border-bottom: 1px solid rgba(200,169,81,0.18);
}

.info-label {
  flex: 0 0 160px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--disney-gold);
  text-transform: none;
}

.info-value {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.info-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== MEMBERS ===== */
.members-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.member-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 20px;
  padding: 36px 32px;
}

.member-panel-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.member-count {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.member-count-unit {
  font-size: 22px;
  font-weight: 400;
  margin-left: 4px;
  color: rgba(255,255,255,0.7);
}

.gender-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
}

.gender-label-m { color: #7cb9e8; }
.gender-label-f { color: #f4a7b9; }

.gender-bar {
  display: flex;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
}

.gender-bar-m {
  background: #4a90d9;
}

.gender-bar-f {
  background: #e87aaa;
}

.incircle-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--disney-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.univ-bar-group {
  margin-bottom: 20px;
}

.univ-bar-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.univ-bar-cat {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.univ-bar-sub {
  color: rgba(255,255,255,0.5);
  flex: 1;
}

.univ-bar-pct {
  color: var(--disney-gold-light);
  font-weight: 600;
}

.univ-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.univ-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 4px;
}

.univ-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  text-align: center;
}

.member-panel--universities {
  display: flex;
  flex-direction: column;
}

.univ-list {
  list-style: none;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.univ-item {
  padding: 16px 20px;
  border: 1px solid rgba(200,169,81,0.32);
  border-radius: 14px;
  background: rgba(200,169,81,0.07);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}


/* ===== TIMELINE ===== */
.timeline {
  max-width: 640px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 24px 1fr;
  align-items: start;
  gap: 0 16px;
  min-height: 52px;
  border-radius: 10px;
  padding: 4px 8px 4px 4px;
  cursor: default;
  transition: transform 0.25s ease, background 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  background: rgba(200,169,81,0.06);
}

.timeline-item:active {
  transform: translateY(-1px) scale(0.99);
  background: rgba(200,169,81,0.1);
}

.timeline-month {
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--disney-gold);
  letter-spacing: 1px;
  padding-top: 4px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.timeline-item:hover .timeline-month {
  color: var(--disney-gold-light);
  text-shadow: 0 0 10px rgba(200,169,81,0.5);
}

.timeline-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--disney-gold);
  flex-shrink: 0;
  margin-top: 4px;
  transition: box-shadow 0.25s ease;
}

.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 4px rgba(200,169,81,0.3), 0 0 14px rgba(200,169,81,0.65);
}

.timeline-line {
  flex: 1;
  width: 2px;
  background: rgba(200,169,81,0.2);
  margin-top: 4px;
  min-height: 32px;
}

.timeline-content {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 2px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.timeline-item:hover .timeline-content {
  color: #fff;
  text-shadow: 0 0 12px rgba(200,169,81,0.35);
  padding-bottom: 20px;
}

.timeline-footer {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.timeline-footer-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--disney-gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
.section--gallery {
  overflow: hidden;
  padding-bottom: 0;
}

.gallery-overflow {
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 20px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: gallery-scroll 28s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-card {
  position: relative;
  width: 300px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,81,0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,8,24,0.88) 0%, rgba(0,8,24,0.25) 55%, rgba(0,8,24,0.08) 100%);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gallery-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--disney-gold);
  text-transform: uppercase;
}

.gallery-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.gallery-notice {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  padding: 0 24px 40px;
}

/* ===== JOIN ===== */
.join-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.join-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.18);
  border-radius: 20px;
  padding: 32px 28px;
}

.join-card-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--disney-gold);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

.join-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
}

.join-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.join-steps {
  grid-template-columns: repeat(4, 1fr);
}

.join-cta {
  text-align: center;
  margin-bottom: 32px;
}

.join-cta-btn {
  min-width: 200px;
  justify-content: center;
}

.join-sns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.join-sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.join-sns-link:hover {
  color: var(--disney-gold-light);
  border-color: var(--disney-gold);
  background: rgba(200,169,81,0.08);
}

.join-sns-link.sns-highlight {
  color: var(--disney-gold-light);
  border-color: var(--disney-gold);
  background: rgba(200,169,81,0.10);
  box-shadow: 0 0 0 1px rgba(200,169,81,0.45), 0 0 18px rgba(200,169,81,0.25);
  animation: sns-highlight-pulse 1.6s ease-out;
}

@keyframes sns-highlight-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,169,81,0.55), 0 0 0 0 rgba(200,169,81,0.0); }
  40%  { box-shadow: 0 0 0 2px rgba(200,169,81,0.55), 0 0 22px rgba(200,169,81,0.35); }
  100% { box-shadow: 0 0 0 1px rgba(200,169,81,0.30), 0 0 12px rgba(200,169,81,0.15); }
}

@media (prefers-reduced-motion: reduce) {
  .join-sns-link.sns-highlight {
    animation: none;
  }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 10, 30, 0.98);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(200, 169, 81, 0.2);
    gap: 36px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .hamburger {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .join-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-bottom: 72px;
  }

  .hero-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    height: 100%;
    padding: 12px 8px;
    font-size: 12.5px;
    gap: 4px;
    justify-content: center;
    white-space: nowrap;
  }

  .hero-buttons .btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }

  /* Hero badge: keep on one line and compact on small screens */
  .hero-badge {
    font-size: 9px;
    letter-spacing: 1.5px;
    padding: 7px 14px;
    white-space: nowrap;
    max-width: 100%;
  }

  #about,
  #features,
  #schedule,
  #activities,
  #howtojoin {
    scroll-margin-top: 80px;
  }

  /* Members */
  .members-panels {
    grid-template-columns: 1fr;
  }

  .member-panel {
    padding: 28px 20px;
  }

  /* Join cards */
  .join-cards {
    grid-template-columns: 1fr;
  }

  /* Info list */
  .info-item {
    flex-direction: column;
    gap: 6px;
  }

  .info-label {
    flex: none;
  }

  /* Gallery */
  .gallery-card {
    width: 240px;
    height: 170px;
  }

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

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

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    gap: 12px;
  }

  .countdown-separator {
    display: none;
  }
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 169, 81, 0.1) 0%, transparent 70%);
}

.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, #fff, var(--disney-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--disney-gold);
  color: var(--disney-gold-light);
  background: rgba(200, 169, 81, 0.1);
}

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 81, 0.3), transparent);
}

.divider-icon {
  color: var(--disney-gold);
  font-size: 20px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--disney-navy);
  font-size: 20px;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 81, 0.6);
}

/* ===== HERO SLIDESHOW — full viewport ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.slideshow-track {
  position: absolute;
  inset: 0;
  background: #000a1e;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* subtle rounded inner shadow to give depth */
  border-radius: 0;
  filter: drop-shadow(0 0 0 transparent);
}

/* Gradient overlay: dark at bottom for text readability */
.slideshow-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 10, 30, 0.25) 0%,
      rgba(0, 10, 30, 0.05) 30%,
      rgba(0, 10, 30, 0.45) 65%,
      rgba(0, 10, 30, 0.88) 100%
    );
  pointer-events: none;
}

/* Gold shimmer vignette around the edges */
.hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  box-shadow: inset 0 0 80px rgba(200, 169, 81, 0.08);
  pointer-events: none;
}

/* Dot indicators — inside hero-content, above badge */
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.dot.active {
  background: var(--disney-gold);
  border-color: var(--disney-gold);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(200, 169, 81, 0.7);
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255,255,255,0.7);
}


/* Hero content above everything */
.hero-content {
  position: relative;
  z-index: 4;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-item,
  .timeline-item:hover,
  .timeline-item:active {
    transform: none;
    transition: none;
  }
  .timeline-dot {
    transition: none;
  }
}

/* ===== LINE QR MODAL ===== */
.line-qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

#line-qr-modal:target {
  display: flex;
}

.line-qr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.line-qr-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 300px;
  width: 90%;
  text-align: center;
}

.line-qr-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.line-qr-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background: var(--disney-navy);
  border: 2px solid var(--disney-gold);
  border-radius: 50%;
  color: var(--disney-gold);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.line-qr-caption {
  margin-top: 14px;
  font-size: 13px;
  color: #001e4d;
  font-weight: 600;
}

/* ===== ACTIVITY CAROUSEL ===== */
.section--activity {
  overflow: visible;
  padding-bottom: 0;
}

.activity-carousel-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  padding: 16px 0 36px;
}

.activity-carousel-wrap:active {
  cursor: grabbing;
}

.activity-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--activity-carousel-gap);
  will-change: transform;
  padding-left: 32px;
}

.activity-card {
  width: var(--activity-card-width);
  height: var(--activity-card-height);
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(200, 169, 81, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #071530;
  cursor: pointer;
  outline: none;
}

.activity-card:focus-visible {
  box-shadow: 0 0 0 3px var(--disney-gold), 0 8px 40px rgba(0, 0, 0, 0.45);
}

.activity-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 169, 81, 0.3);
}

.activity-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.activity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 8, 24, 0.88) 0%,
    rgba(0, 8, 24, 0.28) 45%,
    rgba(0, 8, 24, 0.04) 100%
  );
  pointer-events: none;
}

.activity-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.activity-card-en {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--disney-gold);
  text-transform: uppercase;
  font-weight: 500;
}

.activity-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.activity-notice {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 24px 48px;
}

/* ===== ACTIVITY DIALOG ===== */
.activity-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 580px;
  width: calc(100% - 48px);
  max-height: min(85vh, 720px);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 24px;
  background: #071530;
  color: #fff;
  padding: 0;
  overflow: hidden;
  z-index: 4000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.activity-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.activity-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s;
  font-weight: 300;
}

.activity-dialog-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.activity-dialog-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.activity-dialog-body {
  padding: 24px 28px 32px;
  overflow-y: auto;
}

.activity-dialog-en {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--disney-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.activity-dialog-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.3;
}

.activity-dialog-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 600px) {
  .activity-dialog-img {
    height: 200px;
  }
  .activity-dialog-title {
    font-size: 18px;
  }
  .activity-dialog-body {
    padding: 20px 20px 28px;
  }
}

/* ===== HERO TOP BLOCK — dots first, message below ===== */
.hero-top-block {
  position: absolute;
  top: 151px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 1100px);
  z-index: 5;
  text-align: center;
}

.hero-top-block .slideshow-dots {
  margin-bottom: 18px;
}

.hero-title-block {
  position: static;
  width: 100%;
  pointer-events: none;
}

.hero-title-block .hero-badge {
  margin: 0 0 18px 0;
}

.hero-title-block .hero-title {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-top-block {
    top: 128px;
    width: min(94vw, 760px);
  }

  .hero-top-block .slideshow-dots {
    margin-bottom: 14px;
  }

  .hero-title-block .hero-badge {
    margin-bottom: 14px;
  }
}

@media (max-width: 600px) {
  .hero-top-block {
    top: 112px;
    width: min(94vw, 420px);
  }

  .hero-top-block .slideshow-dots {
    margin-bottom: 12px;
  }

  .hero-title-block .hero-badge {
    margin-bottom: 12px;
  }
}
