:root {
  --bg: #f5f7fc;
  --bg-soft: #fbfcff;
  --white: #ffffff;
  --navy: #16255f;
  --navy-deep: #0d1946;
  --blue: #2d4fb1;
  --gold: #c89b2d;
  --gold-deep: #9c7415;
  --gold-soft: #f4ead0;
  --text: #1d2640;
  --text-soft: #6f7a96;
  --line: #dfe5f2;
  --danger: #b6253d;
  --danger-soft: #fff3f6;
  --success-soft: #eef8f1;
  --shadow-soft: 0 18px 44px rgba(18, 35, 86, 0.08);
  --shadow-card: 0 24px 60px rgba(18, 35, 86, 0.1);
  --shadow-gold: 0 18px 36px rgba(200, 155, 45, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang HK", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 155, 45, 0.06), transparent 22%),
    radial-gradient(circle at top right, rgba(45, 79, 177, 0.08), transparent 20%),
    var(--bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff6df, #f4e3b3);
  color: var(--gold-deep);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.section-head h1,
.section-head h2,
.card-head h2,
.hero-copy h1,
.event-card-body h2,
.event-hero-left h1 {
  margin: 14px 0 0;
  color: var(--navy);
  line-height: 1.18;
}

.section-head p,
.hero-copy p,
.event-card-body p,
.content-card p,
.side-card p,
.card-head p,
.info-card p,
.notice-slide p,
.value-box p {
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 37, 95, 0.08);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-logo-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #eef2fb);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(18, 35, 86, 0.1);
  flex-shrink: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  min-width: 0;
}

.brand-title {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-top: 4px;
}

.main-nav,
.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav a,
.site-nav a {
  color: var(--navy);
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active,
.site-nav a:hover,
.site-nav a.active {
  background: #eef2fb;
  color: var(--blue);
}

.nav-toggle,
.menu-toggle {
  display: none;
  border: none;
  background: #eef2fb;
  color: var(--navy);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

.featured-hero {
  position: relative;
  width: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.featured-hero-overlay {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(
    90deg,
    rgba(10, 23, 68, 0.35) 0%,
    rgba(10, 23, 68, 0.16) 45%,
    rgba(10, 23, 68, 0.08) 100%
  );
}

.featured-hero-content {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 250px 0 0;
}

@media (max-width: 768px) {
  .featured-hero,
  .featured-hero-overlay {
    min-height: 220px;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 18px 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero-copy p {
  font-size: 1.06rem;
  margin: 18px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-point {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(22, 37, 95, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-point strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.hero-point span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(140deg, rgba(13,25,70,0.96), rgba(34,58,134,0.96)),
    url("assets/images/site/home-hero.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 223, 139, 0.25), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(200, 155, 45, 0.22), transparent 30%);
  z-index: 0;
}

.hero-card-content {
  position: relative;
  z-index: 1;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff4cf;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  color: white;
  margin: 18px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.hero-card p {
  color: rgba(255,255,255,0.84);
  margin: 0;
  max-width: 420px;
}

.hero-price-box {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  width: fit-content;
}

.hero-price-box .old-price {
  color: rgba(255,255,255,0.66);
  text-decoration: line-through;
  font-weight: 700;
}

.hero-price-box .discount-price {
  color: #ffe9a8;
  font-size: 1.6rem;
  font-weight: 900;
}

.hero-price-box .discount-note {
  color: rgba(255,255,255,0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d8aa34, #bb8918);
  color: white;
  box-shadow: 0 18px 30px rgba(200, 155, 45, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(200, 155, 45, 0.34);
}

.btn-secondary {
  background: #eef2fb;
  color: var(--navy);
  border: 1px solid rgba(22, 37, 95, 0.08);
}

.btn-secondary:hover {
  background: #e5ebf8;
}

.btn-disabled {
  background: #cfd5e3 !important;
  color: #7a8399 !important;
  box-shadow: none !important;
  pointer-events: none;
  cursor: not-allowed;
}

.full-width {
  width: 100%;
}

.home-feature-grid,
.criteria-grid,
.download-grid,
.content-grid,
.event-catalog-grid,
.poem-groups,
.award-highlight-grid,
.selling-points,
.event-highlight-banner,
.feature-row,
.facts-row,
.simple-grid,
.value-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.home-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-box {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(22, 37, 95, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-box h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.feature-box p {
  margin: 0;
  color: var(--text-soft);
}

.catalog-hero {
  padding-top: 40px;
  padding-bottom: 14px;
}

.catalog-hero .section-head {
  margin-bottom: 0;
}

.event-catalog-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(22, 37, 95, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 35, 86, 0.1);
}

.featured-event-card {
  max-width: 1080px;
  margin: 0 auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-event-card::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200,155,45,0.22), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.featured-event-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 16px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,223,139,0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.featured-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 68px rgba(18, 35, 86, 0.14), 0 16px 34px rgba(200, 155, 45, 0.14);
  border-color: rgba(200, 155, 45, 0.22);
}

.event-card-image {
  position: relative;
  min-height: 350px;
}

.event-thumb-shell {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 223, 139, 0.34), transparent 24%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(145deg, #101d53 0%, #16255f 46%, #304ca5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
}

.event-thumb-shell::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 217, 117, 0.34), transparent 66%);
  z-index: 0;
  animation: glowPulse 4.5s ease-in-out infinite;
}

.event-thumb-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.12), transparent 12%),
    radial-gradient(circle at 28% 76%, rgba(255,255,255,0.08), transparent 10%);
  z-index: 0;
}

.event-thumb-badge {
  position: relative;
  z-index: 1;
  width: min(100%, 190px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.22));
  animation: floatSoft 4s ease-in-out infinite;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.featured-event-card:hover .event-thumb-badge {
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.24));
}

.event-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 28px 24px;
  display: grid;
  gap: 16px;
  align-content: center;
}

.event-card-top {
  display: grid;
  gap: 12px;
}

.event-card-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fff4d4, #f1dfab);
  color: var(--gold-deep);
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.92rem;
}

.event-badge.muted {
  background: #edf0f7;
  color: #6c7590;
}

.badge-closed {
  background: rgba(196, 41, 64, 0.12);
  color: var(--danger);
}

.deadline-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.deadline-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 800;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.count-segment {
  min-width: 50px;
  padding: 8px 8px;
  border-radius: 12px;
  background: rgba(22, 37, 95, 0.05);
  border: 1px solid rgba(22, 37, 95, 0.08);
  text-align: center;
}

.count-segment strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.1;
}

.count-segment span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.large-countdown .count-segment {
  flex: 1;
  min-width: 64px;
}

.closed-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(196, 41, 64, 0.12);
  color: var(--danger);
  font-weight: 900;
}

.large-closed {
  width: 100%;
}

.event-card-body h2 {
  font-size: 1.9rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.event-card-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.feature-row {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200, 155, 45, 0.08), rgba(200, 155, 45, 0.04));
  border: 1px solid rgba(200, 155, 45, 0.14);
}

.feature-pill strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.feature-pill span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.facts-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fact-box {
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: #f7f9ff;
  border: 1px solid rgba(22, 37, 95, 0.07);
}

.fact-box .label {
  display: block;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.fact-box strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.3;
}

.price-compact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.old-price {
  color: #8c93a8;
  text-decoration: line-through;
  font-weight: 700;
}

.discount-price {
  color: var(--gold-deep);
  font-size: 1.18rem;
  font-weight: 900;
}

.discount-note {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.notice-strip {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(196, 41, 64, 0.05);
  border: 1px solid rgba(196, 41, 64, 0.12);
}

.notice-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #962239;
  font-size: 0.96rem;
}

.notice-strip span {
  color: #7a3850;
  font-size: 0.92rem;
  line-height: 1.55;
}

.event-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-card-coming .event-card-image,
.placeholder-card-bg {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(140deg, #23377d, #324a9f);
  min-height: 220px;
}

.selling-points {
  grid-template-columns: repeat(2, 1fr);
}

.selling-point {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 155, 45, 0.08), rgba(200, 155, 45, 0.04));
  border: 1px solid rgba(200, 155, 45, 0.14);
}

.selling-point h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.02rem;
}

.selling-point p {
  margin: 0;
  color: var(--text-soft);
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.meta-item {
  padding: 20px;
  border-radius: 20px;
  background: #f7f9ff;
  border: 1px solid rgba(22, 37, 95, 0.07);
}

.meta-label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.meta-item strong {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.35;
}

.price-card .price-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-rule-box {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(196, 41, 64, 0.05);
  border: 1px solid rgba(196, 41, 64, 0.12);
}

.mini-rule-box h3 {
  margin: 0 0 8px;
  color: #962239;
  font-size: 1rem;
}

.mini-rule-box p {
  margin: 0;
  color: #7a3850;
}

.event-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.event-hero-left,
.summary-card,
.content-card,
.side-card,
.info-card,
.notice-slider {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(22, 37, 95, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.event-hero-left {
  padding: 34px;
}

.event-hero-right {
  position: sticky;
  top: 110px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.event-subtitle {
  font-size: 1.08rem;
  margin-top: 14px;
}

.event-highlight-banner {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.highlight-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(200, 155, 45, 0.08);
  border: 1px solid rgba(200, 155, 45, 0.14);
}

.highlight-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.highlight-item p {
  margin: 0;
  color: var(--text-soft);
}

.event-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.summary-card {
  padding: 28px;
}

.summary-top-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 20px;
}

.summary-top-image img {
  width: min(100%, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
  animation: floatSoft 4s ease-in-out infinite;
}

.summary-card h3,
.side-card h3,
.content-card h2,
.info-card h2,
.info-card h3,
.notice-slide h3,
.value-box h3 {
  margin-top: 0;
  color: var(--navy);
}

.summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(22, 37, 95, 0.12);
}

.summary-list li span {
  color: var(--text-soft);
}

.summary-list li strong {
  text-align: right;
  color: var(--navy);
}

.summary-old-price {
  text-decoration: line-through;
  color: #8c93a8;
  font-size: 0.95rem;
  font-weight: 700;
}

.summary-discount-price {
  color: var(--gold-deep);
  font-size: 1.1rem;
  font-weight: 900;
}

.countdown-panel {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(22, 37, 95, 0.04);
  border: 1px solid rgba(22, 37, 95, 0.08);
}

.content-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
  align-items: start;
}

.main-content {
  display: grid;
  gap: 20px;
}

.side-content {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.content-card {
  padding: 30px;
}

.card-head {
  margin-bottom: 18px;
}

.emphasis-card {
  border: 1px solid rgba(200, 155, 45, 0.24);
  box-shadow: 0 22px 46px rgba(200, 155, 45, 0.12);
}

.award-highlight-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.award-box {
  padding: 22px;
  border-radius: 20px;
  background: rgba(22, 37, 95, 0.04);
  border: 1px solid rgba(22, 37, 95, 0.08);
}

.primary-award-box {
  background: linear-gradient(135deg, rgba(200, 155, 45, 0.12), rgba(200, 155, 45, 0.05));
  border-color: rgba(200, 155, 45, 0.2);
}

.award-box h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.award-box p {
  margin: 0;
}

.award-list,
.side-award-list,
.poem-group ul,
.rule-note-list ul,
.side-contact-list {
  margin: 0;
  padding-left: 20px;
}

.important-note-card {
  border: 1px solid rgba(196, 41, 64, 0.14);
  background: linear-gradient(180deg, rgba(255, 246, 248, 0.95), rgba(255, 255, 255, 0.95));
}

.important-note-text {
  font-size: 1.08rem;
  font-weight: 800;
  color: #8e2740 !important;
}

.fee-box {
  display: grid;
  gap: 14px;
}

.fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(22, 37, 95, 0.04);
  border: 1px solid rgba(22, 37, 95, 0.06);
}

.featured-fee-row {
  background: rgba(200, 155, 45, 0.1);
  border-color: rgba(200, 155, 45, 0.16);
}

.poem-groups {
  grid-template-columns: repeat(3, 1fr);
}

.poem-group {
  padding: 20px;
  border-radius: 18px;
  background: rgba(22, 37, 95, 0.04);
  border: 1px solid rgba(22, 37, 95, 0.06);
}

.poem-group h3,
.rule-note-list h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.rule-note-list {
  display: grid;
  gap: 14px;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(22, 37, 95, 0.03);
  border: 1px solid rgba(22, 37, 95, 0.06);
}

.step-no {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #d8aa34, #bb8918);
  box-shadow: var(--shadow-gold);
}

.step-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.step-item p {
  margin: 0;
}

.download-grid {
  grid-template-columns: repeat(3, 1fr);
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(22, 37, 95, 0.04);
  border: 1px solid rgba(22, 37, 95, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(22, 37, 95, 0.14);
}

.download-card strong {
  color: var(--navy);
}

.download-card span {
  color: var(--blue);
  font-weight: 800;
}

.side-card {
  padding: 24px;
}

.poster-card {
  padding: 18px;
}

.poster-card-inner {
  min-height: 260px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 223, 139, 0.28), transparent 26%),
    linear-gradient(140deg, #0f1c4f 0%, #16255f 45%, #2947a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.poster-card-inner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 217, 117, 0.22), transparent 60%);
  animation: glowPulse 4.5s ease-in-out infinite;
}

.poster-card-inner img {
  position: relative;
  z-index: 1;
  width: min(100%, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
  animation: floatSoft 4s ease-in-out infinite;
}

.note-side-card {
  background: rgba(255, 246, 248, 0.96);
  border: 1px solid rgba(196, 41, 64, 0.12);
}

.side-contact-list li {
  margin-bottom: 12px;
}

.side-contact-list span {
  display: block;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.simple-page-hero {
  padding-top: 36px;
  padding-bottom: 18px;
}

.simple-grid {
  grid-template-columns: repeat(2, 1fr);
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-box {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(22, 37, 95, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.value-box h3 {
  margin: 0 0 8px;
}

.value-box p {
  margin: 0;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.info-card {
  padding: 28px;
}

.notice-slider {
  position: relative;
  overflow: hidden;
}

.notice-slide {
  display: none;
  padding: 34px;
}

.notice-slide.active {
  display: block;
}

.notice-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px 24px;
}

.notice-arrows {
  display: flex;
  gap: 10px;
}

.notice-arrow {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #eef2fb;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.notice-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.notice-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfd7ea;
  border: none;
  cursor: pointer;
}

.notice-dots .dot.active {
  background: var(--gold);
}

.inline-link {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  background: #ffffff;
  color: #1f3c88;
  border-top: 1px solid #e5e7eb;
  margin-top: 0;
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .brand-title {
  color: #1f3c88;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-desc {
  color: #6b7aa5;
  line-height: 1.8;
  margin: 0.4rem 0;
}

.footer-contact h3,
.footer-nav h3 {
  color: #1f3c88;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #1f3c88;
  text-decoration: none;
  line-height: 1.7;
  word-break: break-word;
}

.footer-contact-item:hover {
  text-decoration: underline;
}

.footer-icon {
  flex-shrink: 0;
  width: 1.4rem;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  color: #1f3c88;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  padding: 1.25rem 0;
}

.footer-bottom p {
  margin: 0;
  color: #1f3c88;
  font-size: 0.95rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-footer {
    padding-top: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 0 1.25rem;
  }

  .footer-bottom p {
    line-height: 1.6;
    font-size: 0.9rem;
  }
}