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

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: linear-gradient(135deg, #E8491E 0%, #F07040 100%);
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

/* ===== Header ===== */
.site-header {
  padding: 32px 48px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-logo {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.header-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header-nav a {
  padding: 8px 20px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.header-nav a:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.header-nav .header-cta {
  background: #fff;
  color: #E8491E;
  border-color: #fff;
  font-weight: 700;
}
.header-nav .header-cta:hover {
  background: rgba(255,255,255,0.9);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.breadcrumb a:hover { color: #fff; }

/* ===== Hero ===== */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px 40px;
}
.hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span { color: #FFD5C0; }
.hero .subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero .cta-btn {
  display: inline-block;
  background: #fff;
  color: #E8491E;
  padding: 16px 48px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.article-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 16px 0 0;
}

/* ===== Sections ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 48px;
}
.section-dark {
  background: #D13A10;
  padding: 64px 48px;
}
.section-dark .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #fff;
}
.section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: -32px;
  margin-bottom: 40px;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.feature-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* ===== Screenshots ===== */
.screenshots {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-snap-type: x mandatory;
}
.screenshot-item {
  min-width: 220px;
  height: 400px;
  flex-shrink: 0;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
}
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}
.faq-item {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
}
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.faq-item summary::after { content: '+'; font-size: 22px; color: rgba(255,255,255,0.7); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  padding-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: rgba(0,0,0,0.15);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.cta-banner h2 { font-size: 26px; font-weight: 900; margin-bottom: 12px; color: #fff; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-banner .cta-btn {
  display: inline-block;
  background: #fff;
  color: #E8491E;
  padding: 14px 40px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== Footer ===== */
.site-footer {
  padding: 40px 48px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-links .sep { color: rgba(255,255,255,0.4); }
.footer-copy {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== Blog Cards ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}
.blog-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.blog-card .thumb {
  height: 200px;
  overflow: hidden;
}
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card .blog-body { padding: 24px; }
.blog-card .tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #FFD5C0;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.5; }
.blog-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===== Article ===== */
.article-content {
  max-width: 760px;
}
.article-content h2 {
  font-size: 22px;
  font-weight: 900;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid rgba(255,255,255,0.5);
  color: #fff;
}
.article-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; color: #fff; }
.article-content p { font-size: 15px; line-height: 1.9; margin-bottom: 18px; color: rgba(255,255,255,0.9); }
.article-content ul { padding-left: 24px; margin-bottom: 18px; }
.article-content li { font-size: 14px; line-height: 1.8; margin-bottom: 8px; color: rgba(255,255,255,0.85); }
.article-content strong { color: #fff; }
.article-content figure img { max-width: 100%; border-radius: 12px; }
.article-content figcaption { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ===== Character Cards ===== */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.character-card {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  text-align: center;
}
.character-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.char-img {
  height: 320px;
  overflow: hidden;
}
.char-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.char-info { padding: 20px; }
.char-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.char-desc { font-size: 14px; color: rgba(255,255,255,0.8); }
.char-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255,255,255,0.2);
  color: #FFD5C0;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .site-header { padding: 24px 24px 0; }
  .breadcrumb { padding: 12px 24px 0; }
  .hero { padding: 40px 24px 32px; }
  .hero h1 { font-size: 28px; }
  .section { padding: 32px 24px; }
  .section-dark { padding: 48px 24px; }
  .site-footer { padding: 32px 24px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .character-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .header-nav .header-cta { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero .subtitle { font-size: 15px; }
  .section-title { font-size: 22px; }
  .cta-banner { padding: 40px 24px; }
  .character-grid { grid-template-columns: 1fr; }
}
