/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Site Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-nav-logo {
  width: 18px;
  height: 18px;
  display: block;
}

.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.15rem;
  align-items: center;
}

.site-nav-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav-links a:hover {
  color: #1e293b;
  background: rgba(102, 126, 234, 0.1);
}

.site-nav-links a.is-active {
  position: relative;
  color: #3730a3;
  background: rgba(102, 126, 234, 0.2);
}

/* Underline indicator so the current page reads at a glance */
.site-nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 3px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #667eea, #a855f7);
}

/* Subpage layouts */
.page-sub .page-main {
  padding-bottom: 2rem;
}

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.25rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(120deg, #1e1b4b 0%, #4c2889 30%, #312e81 55%, #5b21b6 80%, #1e1b4b 100%);
  background-size: 300% 300%;
  animation: page-hero-gradient-flow 16s ease-in-out infinite;
  border-bottom: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 12px 40px rgba(15, 10, 60, 0.45);
}

/* Subtle pixel-art dot layer for game-brand identity (low opacity to keep text readable) */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48"><rect x="4" y="6" width="3" height="3" fill="white"/><rect x="30" y="14" width="2" height="2" fill="white"/><rect x="16" y="28" width="3" height="3" fill="white"/><rect x="40" y="36" width="2" height="2" fill="white"/><rect x="8" y="42" width="2" height="2" fill="white"/></svg>');
  opacity: 0.12;
  animation: page-hero-stars-drift 60s linear infinite;
}

/* Soft blue/purple glow halo behind the title */
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(640px, 90vw);
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(129, 140, 248, 0.4) 0%, rgba(168, 85, 247, 0.22) 45%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  animation: page-hero-glow-pulse 5s ease-in-out infinite;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0e7ff;
  margin-bottom: 1.1rem;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  margin-bottom: 0.9rem;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(129, 140, 248, 0.65),
    0 0 56px rgba(168, 85, 247, 0.35);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.page-lead {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.65;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes page-hero-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes page-hero-stars-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 480px 240px;
  }
}

@keyframes page-hero-glow-pulse {
  0%,
  100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

.page-cta-band {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.08);
}

.page-cta-inner {
  text-align: center;
  color: #fff;
}

.page-cta-inner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-cta-inner h2::after {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.page-cta-inner > p {
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.page-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-price .boss-list,
.page-qna .faq {
  padding-top: 1rem;
}

.review-list-section {
  padding: 3rem 0 5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(129, 140, 248, 0.12), transparent 28%),
    #f8fafc;
}

.review-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dbe3ef;
}

.review-list-eyebrow {
  color: #6366f1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.review-list-summary {
  color: #334155;
  font-size: 1.05rem;
  font-weight: 600;
}

.review-count {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-shrink: 0;
  color: #64748b;
  font-size: 0.85rem;
}

.review-count strong {
  color: #4f46e5;
  font-size: 1.5rem;
  line-height: 1;
}

.review-list-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.review-write-button,
.review-submit-button {
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(120deg, #4f46e5, #7c3aed);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.review-write-button {
  padding: 0.75rem 1.1rem;
  font-size: 0.88rem;
}

.review-write-button:hover,
.review-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.3);
}

.review-write-button:focus-visible,
.review-submit-button:focus-visible,
.review-form-close:focus-visible,
.review-field input:focus-visible,
.review-field textarea:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.35);
  outline-offset: 2px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(199, 210, 254, 0.8);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(51, 65, 85, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.14);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-card-header time {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  color: #4338ca;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  font-size: 0.72rem;
  font-weight: 800;
}

.review-verified-badge::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #fff;
  background: #6366f1;
  font-size: 0.62rem;
}

.review-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.review-detail-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem;
}

.review-detail-row dt {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}

.review-detail-row dd {
  margin: 0;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 800;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.review-tags span {
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  color: #5b21b6;
  background: #f3e8ff;
  font-size: 0.75rem;
  font-weight: 700;
}

.review-text {
  position: relative;
  flex: 1;
  padding-top: 1.1rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.75;
  word-break: keep-all;
}

/* Skeleton placeholders shown while reviews are being fetched */
.skeleton {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8ecf5 25%, #f5f7fc 50%, #e8ecf5 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.review-card-skeleton {
  pointer-events: none;
}

.review-card-skeleton .review-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.skeleton-date {
  width: 84px;
  height: 14px;
}

.skeleton-badge {
  width: 72px;
  height: 24px;
  border-radius: 999px;
}

.skeleton-detail {
  width: 55%;
  height: 15px;
}

.skeleton-detail-wide {
  width: 75%;
}

.skeleton-line {
  height: 13px;
}

.skeleton-line + .skeleton-line {
  margin-top: 0.55rem;
}

.skeleton-line-short {
  width: 60%;
}

@keyframes skeleton-shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

/* Infinite-scroll sentinel: visible only while more pages remain */
.review-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-load-more[hidden] {
  display: none;
}

.review-load-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #c7d2fe;
  border-top-color: #4f46e5;
  animation: review-spinner-rotate 0.8s linear infinite;
}

@keyframes review-spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.review-empty-state {
  grid-column: 1 / -1;
  padding: 3rem 1.5rem;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  color: #64748b;
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.review-form-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.review-form-modal[hidden] {
  display: none;
}

.review-form-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
}

.review-form-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid rgba(199, 210, 254, 0.9);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 231, 255, 0.85), transparent 34%),
    #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.review-form-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #64748b;
  background: #f1f5f9;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.review-form-heading {
  padding-right: 2.5rem;
  margin-bottom: 1.75rem;
}

.review-form-eyebrow {
  color: #6366f1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.review-form-heading h2 {
  color: #1e293b;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.review-form-heading p:last-child {
  color: #64748b;
  font-size: 0.9rem;
}

.review-form {
  display: grid;
  gap: 1.15rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-field {
  display: grid;
  gap: 0.45rem;
}

.review-field > span {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
}

.review-field input,
.review-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  color: #1e293b;
  background: rgba(248, 250, 252, 0.9);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-field textarea {
  resize: vertical;
  min-height: 130px;
}

.review-field input:focus,
.review-field textarea:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.14);
}

.review-field small {
  color: #64748b;
  font-size: 0.76rem;
}

.review-form-status {
  min-height: 1.5rem;
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 700;
}

.review-form-status.is-success {
  color: #047857;
}

.review-submit-button {
  width: 100%;
  padding: 0.9rem 1.25rem;
}

.review-submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(129, 140, 248, 0.55), transparent 65%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(217, 70, 239, 0.3), transparent 60%),
    radial-gradient(ellipse 40% 35% at 70% 15%, rgba(255, 107, 107, 0.18), transparent 60%),
    linear-gradient(135deg, #4c569e 0%, #5a4d9e 45%, #6d3f96 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Floating background ornaments */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: hero-orb-drift 12s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.55), transparent 70%);
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.6), transparent 70%);
  animation-delay: -6s;
}

.hero-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  animation: hero-star-twinkle 3s ease-in-out infinite;
}

.hero-star-1 {
  top: 18%;
  left: 12%;
  font-size: 1.2rem;
}

.hero-star-2 {
  top: 30%;
  right: 16%;
  font-size: 0.9rem;
  animation-delay: 0.8s;
}

.hero-star-3 {
  bottom: 26%;
  left: 22%;
  font-size: 0.8rem;
  animation-delay: 1.6s;
}

.hero-star-4 {
  top: 12%;
  right: 34%;
  font-size: 1.1rem;
  animation-delay: 2.2s;
}

@keyframes hero-orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, 30px, 0) scale(1.15);
  }
}

@keyframes hero-star-twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Hero two-column layout: copy left, character art right */
.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 90px 0 110px;
}

.hero-content {
  color: white;
  text-align: left;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-title-accent {
  background: linear-gradient(100deg, #ffd166 10%, #ff9a8b 45%, #ff6bd9 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 107, 217, 0.35));
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  opacity: 0.92;
  line-height: 1.65;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tag {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Flex gap replaces the legacy margin between buttons */
.hero-actions .cta-button {
  margin-right: 0;
}

/* Character art card */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  animation: fadeInUp 1s ease-out 0.35s both;
}

.hero-visual-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.35) 0%, rgba(255, 107, 217, 0.25) 40%, transparent 70%);
  filter: blur(30px);
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

.hero-character {
  position: relative;
  display: block;
  width: min(420px, 38vw);
  height: auto;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.45),
    0 0 40px rgba(255, 107, 217, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: rotate(2.5deg);
  animation: hero-character-float 5s ease-in-out infinite;
}

@keyframes hero-character-float {
  0%,
  100% {
    transform: rotate(2.5deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(-14px);
  }
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.4s both;
  margin-right: 10px;
}

.cta-button:last-child {
  margin-right: 0;
}

.cta-button:not(.cta-button-secondary) {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
}

.cta-button:not(.cta-button-secondary):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.cta-button-secondary {
  background: #ffffff;
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
}

.cta-button-secondary:hover {
  background: #ffe6e6;
  color: #e65151;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Scroll Indicator Wrapper */
.scroll-indicator-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.scroll-indicator {
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out 0.6s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  margin: 0 auto 10px;
  animation: dynamic-bounce 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  will-change: transform, opacity;
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 500;
  animation: text-pulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

@keyframes dynamic-bounce {
  0% {
    transform: translateY(0) rotate(45deg) scale(1);
    opacity: 1;
  }
  10% {
    transform: translateY(-3px) rotate(45deg) scale(1.03);
    opacity: 0.98;
  }
  20% {
    transform: translateY(-7px) rotate(45deg) scale(1.07);
    opacity: 0.95;
  }
  30% {
    transform: translateY(-12px) rotate(45deg) scale(1.12);
    opacity: 0.9;
  }
  40% {
    transform: translateY(-15px) rotate(45deg) scale(1.14);
    opacity: 0.87;
  }
  50% {
    transform: translateY(-16px) rotate(45deg) scale(1.15);
    opacity: 0.85;
  }
  60% {
    transform: translateY(-14px) rotate(45deg) scale(1.13);
    opacity: 0.87;
  }
  70% {
    transform: translateY(-10px) rotate(45deg) scale(1.09);
    opacity: 0.91;
  }
  80% {
    transform: translateY(-5px) rotate(45deg) scale(1.04);
    opacity: 0.95;
  }
  90% {
    transform: translateY(-2px) rotate(45deg) scale(1.01);
    opacity: 0.98;
  }
  95% {
    transform: translateY(-0.5px) rotate(45deg) scale(1.005);
    opacity: 0.99;
  }
  100% {
    transform: translateY(0) rotate(45deg) scale(1);
    opacity: 1;
  }
}

@keyframes text-pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.boss-list h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #f7f7f7);
  border-radius: 2px;
}

/* Discount Banner */
.discount-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ff6b6b 100%);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  margin: 3rem auto 2rem;
  max-width: 800px;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: discount-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.discount-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: discount-shine 3s infinite;
}

.discount-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  animation: discount-icon-bounce 2s ease-in-out infinite;
  flex-shrink: 0;
}

.discount-content {
  flex: 1;
  text-align: left;
  color: #fff;
  position: relative;
  z-index: 1;
}

.discount-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.discount-text {
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.discount-text strong {
  font-weight: 700;
  font-size: 1.15em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes discount-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.5);
  }
}

@keyframes discount-shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes discount-icon-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
  }
}

/* Service Description */
.service-description {
  background: #f8f9fa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Boss List */
.boss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.boss-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 55%, rgba(255, 255, 255, 0.72) 100%);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10, 8, 40, 0.18);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(148, 163, 184, 0.28);
  position: relative;
}

/* Top inner highlight for a glassy finish */
.boss-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 90% 45% at 50% -10%, rgba(255, 255, 255, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 35%);
  pointer-events: none;
}

.boss-item > * {
  position: relative;
  z-index: 1;
}

.boss-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(10, 8, 40, 0.25);
}

/* Boss tier borders */
.boss-item.boss-tier-easy,
.boss-item.boss-tier-advanced,
.boss-item.boss-tier-expert {
  border-width: 3px;
  border-style: solid;
}

.boss-item.boss-tier-easy {
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 8px 24px rgba(10, 8, 40, 0.18), 0 0 16px rgba(52, 211, 153, 0.15);
}

.boss-item.boss-tier-easy:hover {
  border-color: rgba(110, 231, 183, 0.85);
  box-shadow: 0 12px 32px rgba(10, 8, 40, 0.25), 0 0 26px rgba(52, 211, 153, 0.35);
}

.boss-item.boss-tier-advanced {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 8px 24px rgba(10, 8, 40, 0.18), 0 0 16px rgba(251, 191, 36, 0.14);
}

.boss-item.boss-tier-advanced:hover {
  border-color: rgba(252, 211, 77, 0.85);
  box-shadow: 0 12px 32px rgba(10, 8, 40, 0.25), 0 0 26px rgba(251, 191, 36, 0.32);
}

.boss-item.boss-tier-expert {
  border-color: rgba(248, 113, 113, 0.5);
  box-shadow: 0 8px 24px rgba(10, 8, 40, 0.2), 0 0 18px rgba(220, 38, 38, 0.2);
}

.boss-item.boss-tier-expert:hover {
  border-color: rgba(252, 165, 165, 0.85);
  box-shadow: 0 12px 32px rgba(10, 8, 40, 0.28), 0 0 28px rgba(220, 38, 38, 0.38);
}

.boss-item:not(.boss-tier-easy):not(.boss-tier-advanced):not(.boss-tier-expert):not(.burning-boss):not(
    .special-boss
  ):hover {
  border-color: rgba(165, 180, 252, 0.75);
  box-shadow: 0 12px 32px rgba(10, 8, 40, 0.25), 0 0 24px rgba(129, 140, 248, 0.3);
}

/* Gradient variants provide their own finish; skip the glass highlight */
.boss-item.burning-boss::before,
.boss-item.special-boss::before {
  content: none;
}

/* Item burning boss card (카이) */
.boss-item.burning-boss {
  background: linear-gradient(145deg, #3d1400 0%, #b34700 40%, #ff7b00 75%, #ffc233 100%);
  border: 2px solid rgba(255, 200, 120, 0.65);
  box-shadow: 0 0 22px rgba(255, 123, 0, 0.45), 0 0 36px rgba(255, 69, 0, 0.25);
  overflow: visible;
}

.boss-item.burning-boss h3,
.boss-item.burning-boss .price,
.boss-item.burning-boss .price-mini,
.boss-item.burning-boss .price-notice {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 1px 8px rgba(61, 20, 0, 0.7);
}

.boss-item.burning-boss h3 {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.boss-item.burning-boss .badge-group .difficulty-badge {
  background: linear-gradient(135deg, #fff3c4, #ff9f1c);
  color: #5c2200;
  box-shadow: 0 0 12px rgba(255, 180, 60, 0.75);
  text-transform: none;
  letter-spacing: 0.5px;
}

.boss-item.burning-boss:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 220, 150, 0.9);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.6), 0 0 48px rgba(255, 69, 0, 0.35);
}

.boss-item.burning-boss.boss-tier-advanced {
  border-width: 3px;
  border-color: rgba(212, 168, 98, 0.95);
  box-shadow:
    0 0 22px rgba(255, 123, 0, 0.4),
    0 0 36px rgba(255, 69, 0, 0.2),
    inset 0 0 0 1px rgba(212, 168, 98, 0.25);
}

.boss-item.burning-boss.boss-tier-advanced:hover {
  border-color: rgba(232, 192, 120, 1);
  box-shadow:
    0 0 30px rgba(255, 140, 0, 0.55),
    0 0 48px rgba(255, 69, 0, 0.3),
    0 0 0 1px rgba(232, 192, 120, 0.4);
}

/* Destiny liberation boss card (해방 카링) */
.boss-item.special-boss {
  background: linear-gradient(145deg, #3b1f5f 0%, #6d2cff 40%, #ff6bd9 100%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 25px rgba(255, 107, 217, 0.5), 0 0 40px rgba(109, 44, 255, 0.4);
  overflow: visible;
}

.boss-item.special-boss h3,
.boss-item.special-boss .price,
.boss-item.special-boss .price-mini,
.boss-item.special-boss .price-notice {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.boss-item.special-boss h3 {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.boss-item.special-boss .badge-group .difficulty-badge {
  background: linear-gradient(135deg, #c4b5fd, #a78bfa, #ff6bd9);
  color: #2e1065;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.75);
  text-transform: none;
  letter-spacing: 0.5px;
}

.boss-item.special-boss .special-price {
  font-size: 1.6rem;
}

.boss-item.special-boss:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(255, 107, 217, 0.7), 0 0 50px rgba(109, 44, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.9);
}

.boss-item.special-boss.boss-tier-expert {
  border-width: 3px;
  border-color: rgba(127, 29, 29, 0.8);
  box-shadow:
    0 0 25px rgba(255, 107, 217, 0.45),
    0 0 40px rgba(109, 44, 255, 0.35),
    0 0 0 1px rgba(153, 27, 27, 0.2);
}

.boss-item.special-boss.boss-tier-expert:hover {
  border-color: rgba(153, 27, 27, 0.85);
  box-shadow:
    0 0 35px rgba(255, 107, 217, 0.65),
    0 0 50px rgba(109, 44, 255, 0.5),
    0 0 16px rgba(107, 44, 44, 0.3);
}

@keyframes special-boss-shimmer {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(50%, 50%, 0) rotate(360deg);
  }
}

/* Difficulty Badge */
.difficulty-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Support multiple badges side-by-side */
.boss-item .badge-group {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.boss-item .badge-group .difficulty-badge {
  position: static;
  transform: none;
}

.difficulty-badge.easy {
  background: linear-gradient(45deg, #81c784, #a5d6a7);
  color: white;
}

.difficulty-badge.normal {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  color: white;
}

.difficulty-badge.hard {
  background: linear-gradient(45deg, #f44336, #ef5350);
  color: white;
}

.difficulty-badge.chaos {
  background: linear-gradient(45deg, #f44336, #ef5350);
  color: white;
}

.difficulty-badge.etc {
  background: linear-gradient(45deg, #9c27b0, #ba68c8);
  color: white;
}

.difficulty-badge.extreme {
  background: linear-gradient(45deg, #0d0d0d, #2b2b2b);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.35);
  text-transform: none;
  letter-spacing: 0.5px;
}

.boss-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.spec {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.price {
  font-size: 1.55rem;
  font-weight: 800;
  color: #e0483e;
  text-shadow: 0 0 14px rgba(231, 76, 60, 0.25);
}

.price-mini {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e0483e;
}

.price-notice {
  position: relative;
  top: -10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5661d6;
}

.price-note {
  text-align: center;
  margin-top: 2rem;
  color: #ffffff;
  font-style: italic;
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Question bars echo the page-hero's dark indigo-violet gradient */
.faq-item h3 {
  background: linear-gradient(120deg, #1e1b4b 0%, #4c2889 40%, #312e81 70%, #5b21b6 100%);
  color: white;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(167, 139, 250, 0.35);
}

.faq-item p {
  padding: 1.5rem;
  margin: 0;
  color: #555;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-cta {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.disclaimer {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* Inquiry Modal */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.inquiry-modal-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.25s ease-out;
}

.inquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.inquiry-modal-close:hover {
  color: #333;
}

.inquiry-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.inquiry-modal-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.discord-nickname {
  color: #5865f2;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Promo Banner (쇼핑몰형 코너 팝업) */
.promo-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.promo-stack--dimmed {
  opacity: 0.4;
}

.promo-stack--dimmed:hover,
.promo-stack--dimmed:focus-within {
  opacity: 1;
}

.promo-modal {
  position: static;
  pointer-events: none;
}

.promo-modal[hidden] {
  display: none;
}

.promo-modal-content {
  position: relative;
  width: 280px;
  max-width: calc(100vw - 32px);
  pointer-events: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem 1.5rem 1.25rem;
  text-align: center;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: visible;
  animation: promoSlideIn 0.4s ease-out;
}

.promo-event-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.25);
  white-space: nowrap;
}

@keyframes promoSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.promo-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  font-size: 1.125rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.promo-modal-close:hover {
  background: rgba(15, 23, 42, 0.1);
  color: #475569;
}

.promo-modal-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1e293b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.75rem;
}

.promo-modal-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
  line-height: 1.1;
}

.promo-discount-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ff4d2e;
  letter-spacing: -0.02em;
}

.promo-discount-value-referral {
  color: #667eea;
}

.promo-discount-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.promo-modal-description {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.125rem;
}

.promo-modal-confirm {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #1e293b;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-modal-confirm:hover {
  background: #334155;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.2);
}

/* Trust Section */
.trust {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.trust h2 {
  color: white;
}

.trust h2::after {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.trust-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Job Experience Section */
.job-experience {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
}

.job-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.job-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-category {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border-top: 4px solid #667eea;
}

.job-category:hover {
  transform: translateY(-5px);
}

.category-title {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
}

.job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.job-item {
  background: linear-gradient(135deg, #a8b5ff, #c4a8ff);
  color: #2d3748;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(168, 181, 255, 0.2);
  transition: all 0.3s ease;
}

.job-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 181, 255, 0.3);
  background: linear-gradient(135deg, #9bb0ff, #b8a0ff);
}

.job-note {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.job-note p {
  margin: 0;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero: stack copy above character art on narrow screens */
@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    padding: 70px 0 120px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-tags,
  .hero-actions {
    justify-content: center;
  }

  .hero-character {
    width: min(320px, 78vw);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    gap: 0.35rem;
  }

  .site-nav-links {
    width: 100%;
  }

  .site-nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.65rem;
  }

  .site-nav-links a.is-active::after {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 2px;
  }

  .page-hero {
    padding: 3.25rem 0 2.5rem;
  }

  .page-hero::after {
    height: 200px;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2rem;
  }

  .service-grid,
  .boss-grid {
    grid-template-columns: 1fr;
  }

  .review-list-header {
    align-items: flex-start;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .discount-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    margin: 2rem auto 1.5rem;
  }

  .discount-icon {
    font-size: 2.5rem;
  }

  .discount-content {
    text-align: center;
  }

  .discount-title {
    font-size: 1.1rem;
  }

  .discount-text {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }

  .hero-orb {
    display: none;
  }

  .review-list-section {
    padding-top: 2.25rem;
  }

  .review-list-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .review-list-actions {
    width: 100%;
    justify-content: space-between;
  }

  .review-card {
    min-height: 0;
    padding: 1.3rem;
  }

  .review-form-panel {
    padding: 1.5rem;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .boss-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .faq-item p {
    padding: 1rem;
  }

  .promo-stack {
    right: 12px;
    bottom: 12px;
    gap: 20px;
  }

  .promo-modal-content {
    width: 252px;
    padding: 1.75rem 1.25rem 1.125rem;
  }

  .promo-discount-value {
    font-size: 1.5rem;
  }

  .promo-discount-text {
    font-size: 0.9375rem;
  }
}

/* Mobile Responsive for Trust Section */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 1.5rem;
  }
}

/* Mobile Responsive for Job Experience Section */
@media (max-width: 768px) {
  .job-categories {
    grid-template-columns: 1fr;
  }

  .job-category {
    padding: 1.5rem;
  }

  .job-list {
    gap: 0.6rem;
  }

  .job-item {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .job-note {
    padding: 1.2rem 1.5rem;
  }

  .job-note p {
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.cta-button:focus,
.footer-cta:focus,
.inquiry-modal-close:focus,
.inquiry-trigger:focus,
.promo-modal-close:focus,
.promo-modal-confirm:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
  }

  .cta-button {
    background: #fff;
    color: #000;
  }
}

.discord-proof {
  margin-top: 2.5rem;
  text-align: center;
}
.discord-proof img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.discord-caption {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.85;
}
