/* ============================================================
   怪物黑市 (Monster Black Market) — Black Market Underworld Theme
   Smuggler-crate browns, contraband purples, underground-trade motifs
   Light warehouse-wood background with stamped-crate textures
   ============================================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Light warehouse backgrounds */
  --bg: #faf7f2;
  --bg-warm: #f2ede3;
  --bg-card: #ffffff;
  --bg-alt: #ede6d8;
  --bg-crate: #e8dfce;

  /* Dark underworld header */
  --header-bg: #1a1210;
  --header-bg-end: #2d1b15;

  /* Smuggler-crate browns */
  --brown-dark: #4a3520;
  --brown: #6b4226;
  --brown-mid: #8b6914;
  --brown-light: #a68b5b;
  --brown-warm: #c4a87c;
  --brown-glow: rgba(107, 66, 38, 0.12);

  /* Contraband purples */
  --purple-deep: #3d1a5c;
  --purple: #6b2fa0;
  --purple-mid: #8b4fc4;
  --purple-light: #b38fd8;
  --purple-glow: rgba(107, 47, 160, 0.1);

  /* Brass/gold contraband markings */
  --brass: #b8860b;
  --brass-light: #d4a842;
  --brass-dark: #8a6508;

  /* Text */
  --text: #2c2520;
  --text-light: #5a5048;
  --text-muted: #8a8078;
  --text-on-dark: #e0d6c8;

  /* Borders & shadows */
  --border: #d8cfbf;
  --border-crate: rgba(107, 66, 38, 0.25);
  --border-purple: rgba(107, 47, 160, 0.2);
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 32px rgba(0, 0, 0, 0.1);
  --shadow-crate: 0 2px 12px rgba(74, 53, 32, 0.12);

  /* Fonts */
  --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(139, 79, 196, 0.03) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 5%, rgba(107, 66, 38, 0.04) 0%, transparent 55%);
}

/* Crate-stamped body pattern (subtle) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, var(--brown) 48px, var(--brown) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, var(--brown) 48px, var(--brown) 49px);
}

/* ---------- UTILITY CLASSES ---------- */
.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;
}

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-warm);
}

.table-scroll {
  overflow-x: auto;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-bg-end) 100%);
  border-bottom: 3px solid var(--purple);
  height: var(--header-height);
  box-shadow: 0 2px 16px rgba(61, 26, 92, 0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 0.05em;
}

.logo:hover .logo-text {
  color: var(--brass-light);
}

/* Navigation */
nav {
  display: flex;
  gap: 4px;
}

nav a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-on-dark);
  font-size: 0.925rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  background: rgba(139, 79, 196, 0.2);
  color: var(--purple-light);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.925rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(107, 47, 160, 0.35);
  flex-shrink: 0;
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  box-shadow: 0 4px 16px rgba(107, 47, 160, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-home {
  min-height: 520px;
}

.hero-sub {
  min-height: 280px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home .hero-bg {
  background:
    linear-gradient(180deg, rgba(26, 18, 16, 0.85) 0%, rgba(26, 18, 16, 0.55) 50%, rgba(26, 18, 16, 0.85) 100%),
    url('../img/header.jpg') center/cover no-repeat;
}

.hero-sub .hero-bg {
  background:
    linear-gradient(180deg, rgba(26, 18, 16, 0.88) 0%, rgba(26, 18, 16, 0.6) 50%, rgba(26, 18, 16, 0.88) 100%),
    url('../img/header.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 60px 24px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--brown-warm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(107, 47, 160, 0.5);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 24px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -- Decorative crate-stamp divider under hero -- */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--brown) 0px,
    var(--brown) 16px,
    transparent 16px,
    transparent 20px
  );
  z-index: 2;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(107, 47, 160, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple));
  box-shadow: 0 6px 24px rgba(107, 47, 160, 0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--brown-light);
  color: var(--brown-light);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
  background: rgba(166, 139, 91, 0.2);
  border-color: var(--brass-light);
  color: var(--brass-light);
}

/* ---------- MAIN ---------- */
main {
  position: relative;
  z-index: 1;
}

/* ---------- SECTION ---------- */
.section {
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--purple);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.underground-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.underground-divider::before,
.underground-divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown-mid));
}

.underground-divider::after {
  background: linear-gradient(90deg, var(--brown-mid), transparent);
}

.underground-divider span {
  color: var(--brown);
  font-size: 0.85rem;
}

/* ---------- GAME INFO GRID ---------- */
.game-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brown);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-crate);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.game-info-card:nth-child(odd) {
  border-left-color: var(--purple);
}

.game-info-card:hover {
  border-left-color: var(--brass);
  box-shadow: var(--shadow-lg);
}

.game-info-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.game-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.game-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------- FEATURE GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-crate);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.feature-card:hover {
  border-left-color: var(--brass);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-card:nth-child(even) {
  border-left-color: var(--brown);
}

.feature-card:nth-child(even):hover {
  border-left-color: var(--purple-mid);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-crate);
  transition: border-color 0.25s, box-shadow 0.25s;
  aspect-ratio: 16 / 10;
}

.gallery-item:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 4px 20px rgba(107, 47, 160, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-crate);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--purple-glow);
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  font-size: 1.1rem;
  color: var(--brass);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-author {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--header-bg), var(--purple-deep));
  border-radius: var(--radius-lg);
  padding: 52px 32px;
  border: 2px solid rgba(139, 79, 196, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(184, 134, 11, 0.04) 28px, rgba(184, 134, 11, 0.04) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(184, 134, 11, 0.04) 28px, rgba(184, 134, 11, 0.04) 29px);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  position: relative;
}

.cta-banner .btn-primary {
  position: relative;
}

/* ---------- CONTENT SECTIONS (story, guide, etc.) ---------- */
.content-section {
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-crate);
}

.content-section h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 28px 0 10px;
}

.content-section p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
  text-indent: 2em;
}

.content-section p.no-indent {
  text-indent: 0;
}

.chapter-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
  margin: 22px 0 8px;
}

.route-heading {
  font-family: var(--font-serif);
  color: var(--purple-deep);
  margin: 24px 0 10px;
}

.guide-intro {
  color: var(--text-light);
  margin-bottom: 16px;
  text-indent: 0;
}

.route-desc {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ---------- TIP BOXES ---------- */
.tip-box {
  background: rgba(139, 79, 196, 0.06);
  border: 1px solid var(--border-purple);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
}

.tip-box strong {
  color: var(--purple-deep);
}

.tip-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  text-indent: 0;
}

.tip-box-warn {
  background: rgba(184, 134, 11, 0.06);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-left: 4px solid var(--brass);
}

.tip-box-warn strong {
  color: var(--brown);
}

/* ---------- CHARACTER CARDS ---------- */
.character-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.character-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-crate);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.character-card:nth-child(even) {
  border-left-color: var(--brown);
}

.character-card:hover {
  border-left-color: var(--brass);
  box-shadow: var(--shadow-lg);
}

.character-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.character-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.character-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.character-trait {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--purple-glow);
  color: var(--purple-deep);
  font-weight: 500;
}

.character-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.character-relation {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.character-relation strong {
  color: var(--brown);
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-crate);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: var(--border-crate);
}

.faq-question {
  width: 100%;
  padding: 18px 48px 18px 20px;
  border: none;
  background: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--purple);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: translateY(-50%) rotate(180deg);
}

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

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

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---------- SYS REQ TABLE ---------- */
.sys-req-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.sys-req-table th,
.sys-req-table td {
  padding: 10px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.sys-req-table th {
  background: var(--bg-crate);
  font-weight: 700;
  color: var(--brown-dark);
  font-family: var(--font-serif);
}

.sys-req-table td {
  color: var(--text-light);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 18, 16, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(139, 79, 196, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.25s;
}

.lightbox-close:hover {
  color: var(--purple-light);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 8px 16px;
    border-bottom: 2px solid var(--purple);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 12px 16px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-cta {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

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

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

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

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

  .cta-banner {
    padding: 36px 20px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .game-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-sub {
    min-height: 200px;
  }

  .section {
    padding: 40px 16px;
  }
}
