/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --indigo: #1B2838;
  --indigo-light: #2A3B4D;
  --gold: #B8965A;
  --gold-light: #D4B896;
  --gold-pale: #E8D5B7;
  --bg-warm: #F5F2ED;
  --bg-cream: #FAF8F5;
  --bg-dark: #0D1117;
  --text-primary: #1B2838;
  --text-secondary: #5A6472;
  --text-light: #8A9AAC;
  --white: #FFFFFF;
  --border: #E5E0D8;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Typography ===== */
.serif { font-family: 'Noto Serif JP', serif; }

h1, h2, h3 { font-family: 'Noto Serif JP', serif; line-height: 1.4; }

/* ===== Layout ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 242, 237, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
  transition: box-shadow 0.3s ease;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(27, 40, 56, 0.08); }

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

.nav-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--indigo);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--indigo-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--indigo);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('images/hero.webp') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.72);
  pointer-events: none;
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(184, 150, 90, 0.2);
  border: 1px solid rgba(184, 150, 90, 0.4);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.hero-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 2;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--indigo);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(27, 40, 56, 0.2);
}

.btn-primary:hover {
  background: var(--indigo-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 40, 56, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== RSVP Demo ===== */
.rsvp-demo {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(27, 40, 56, 0.08), 0 1px 3px rgba(27, 40, 56, 0.04);
  overflow: hidden;
  border: 1px solid rgba(184, 150, 90, 0.15);
}

.demo-titlebar {
  padding: 14px 20px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-titlebar-dots {
  display: flex;
  gap: 6px;
}

.demo-titlebar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.demo-titlebar-text {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.demo-screen {
  padding: 48px 24px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.demo-word {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--indigo);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.08s ease;
}

.demo-progress {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 32px;
  overflow: hidden;
}

.demo-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.demo-controls {
  padding: 16px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.demo-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text-secondary);
  font-size: 1rem;
}

.demo-btn:hover { border-color: var(--gold); color: var(--gold); }

.demo-btn-play {
  width: 56px;
  height: 56px;
  background: var(--indigo);
  border: none;
  color: var(--white);
  font-size: 1.125rem;
}

.demo-btn-play:hover { background: var(--indigo-light); }

.demo-speed-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-speed-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
  line-height: 1;
}

.demo-speed-btn:hover { border-color: var(--gold); color: var(--gold); }

.demo-speed {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
  min-width: 64px;
  text-align: center;
}

.demo-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 0 24px 16px;
}

/* ===== Section Headers ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.9;
}

/* ===== Problem Section ===== */
.problem { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}

.problem-list { display: flex; flex-direction: column; gap: 24px; }

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(184, 150, 90, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--gold);
}

.problem-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--indigo);
}

.problem-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem-visual {
  background: var(--bg-warm);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
}

.problem-stat {
  margin-bottom: 32px;
}

.problem-stat:last-child { margin-bottom: 0; }

.problem-stat-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.2;
}

.problem-stat-number span { color: var(--gold); }

.problem-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== Reading Time Examples ===== */
.reading-times {
  background: var(--bg-cream);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reading-times-header {
  text-align: center;
  margin-bottom: 48px;
}

.reading-times-header p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.reading-times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.reading-time-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.reading-time-card:hover {
  border-color: rgba(184, 150, 90, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 40, 56, 0.06);
}

.reading-time-duration {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 16px;
}

.reading-time-duration span {
  font-size: 1rem;
  font-weight: 500;
}

.reading-time-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 4px;
}

.reading-time-author {
  font-size: 0.8125rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .reading-times { padding: 60px 0; }
  .reading-times-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ===== How It Works ===== */
.how-it-works { background: var(--bg-warm); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 40, 56, 0.08);
  border-color: rgba(184, 150, 90, 0.3);
}

.step-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184, 150, 90, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== App Screenshots ===== */
.screenshots {
  background: var(--indigo);
  overflow: hidden;
  position: relative;
}

.screenshots .section-label { color: var(--gold-light); }
.screenshots .section-label::before { background: var(--gold-light); }
.screenshots .section-title { color: var(--white); }
.screenshots .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.screenshots-display {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin-top: 64px;
  perspective: 1200px;
}

.screenshot-item {
  position: relative;
  flex-shrink: 0;
}

.screenshot-phone {
  width: 280px;
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-item:hover .screenshot-phone {
  transform: translateY(-8px);
}

.screenshot-label {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.screenshot-label strong {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .screenshots-display {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .screenshot-phone {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .screenshot-phone {
    width: 200px;
  }
}

/* ===== Features ===== */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  padding: 36px;
  border-radius: 16px;
  background: var(--bg-warm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(184, 150, 90, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 40, 56, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(27, 40, 56, 0.04);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== Formats ===== */
.formats { background: var(--bg-warm); }

.formats-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.format-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.format-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 40, 56, 0.06);
}

.format-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.format-dot.txt { background: #2C3E50; }
.format-dot.epub { background: #2D5F3F; }
.format-dot.pdf { background: #7A3B4E; }
.format-dot.aozora { background: #4A3B6B; }
.format-dot.web { background: #2B6CB0; }
.format-dot.clipboard { background: var(--gold); }

.format-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--indigo);
}

.format-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ===== Testimonial / Social Proof ===== */
.social-proof {
  background: var(--indigo);
  color: var(--white);
  text-align: center;
}

.social-proof .section-label { color: var(--gold-light); }
.social-proof .section-label::before { background: var(--gold-light); }
.social-proof .section-title { color: var(--white); }

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.proof-stat-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.proof-stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  line-height: 1.6;
}

.proof-quote {
  max-width: 640px;
  margin: 64px auto 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  position: relative;
  padding: 0 32px;
}

.proof-quote::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: 0;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

/* ===== FAQ ===== */
.faq { background: var(--bg-warm); }

.faq-list {
  max-width: 720px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--indigo);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
  color: var(--text-secondary);
}

.faq-item.open .faq-toggle svg { transform: rotate(180deg); }
.faq-item.open .faq-toggle { background: var(--indigo); }
.faq-item.open .faq-toggle svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--bg-cream);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

/* ===== Footer ===== */
footer {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}

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

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-warm);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(27, 40, 56, 0.08);
  }

  .hero { padding: 120px 0 80px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; justify-content: center; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-visual { order: -1; }

  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; gap: 32px; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .demo-word { font-size: 2rem; }
  .formats-grid { gap: 12px; }
  .format-tag { padding: 12px 20px; }
}
