/* ==========================================================================
   BitPlay Studio - TRPG Character Sheet & Hand-Drawn Pitch Deck Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@400;700&family=Nanum+Pen+Script&family=Noto+Serif+KR:wght@400;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Color Palette - Clean Paper, Ink & Pencil Lines */
  --bg-paper: #fcfbf8;
  --bg-card: #ffffff;
  --bg-sheet: #f8f6f0;
  --border-pencil: #3a3a3a;
  --border-light: #d1d1d1;
  --text-main: #222222;
  --text-muted: #555555;
  --ink-blue: #1b365d;
  --ink-red: #9e1c1c;
  --ink-green: #2d6a4f;
  --pencil-lead: #4a4a4a;
  --accent-gold: #c68a27;

  /* Fonts */
  --font-hand: 'Gaegu', 'Nanum Pen Script', cursive;
  --font-pen-script: 'Nanum Pen Script', cursive;
  --font-serif: 'Noto Serif KR', serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Hand-drawn shadows & borders */
  --sketch-shadow: 3px 4px 0px rgba(0, 0, 0, 0.85);
  --sketch-shadow-sm: 2px 2px 0px rgba(0, 0, 0, 0.85);
  --sketch-shadow-hover: 5px 6px 0px rgba(0, 0, 0, 0.9);
  --sketch-border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-paper);
  /* Subtle clean drafted grid line texture, strictly clean without dirty aging */
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--text-main);
  font-family: var(--font-serif);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* Base Handwritten Helper Classes */
.font-hand {
  font-family: var(--font-hand);
}

.font-script {
  font-family: var(--font-pen-script);
  font-size: 1.25em;
}

.font-mono {
  font-family: var(--font-mono);
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hand-drawn Border Utility Box */
.sketch-box {
  background-color: var(--bg-card);
  border: 2px solid var(--border-pencil);
  border-radius: var(--sketch-border-radius);
  box-shadow: var(--sketch-shadow);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sketch-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--sketch-shadow-hover);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 251, 248, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed var(--border-pencil);
  padding: 0.85rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 0px rgba(0,0,0,0.8));
}

.brand-title {
  font-family: var(--font-hand);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.bts-accent {
  color: inherit;
  font-weight: 900;
  display: inline-block;
  transform: scale(1.08);
}

.brand-tagline {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--ink-blue);
  border-left: 2px solid var(--border-pencil);
  padding-left: 0.5rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-main);
  position: relative;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--ink-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--ink-red);
  transition: all 0.2s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

.audio-toggle-btn {
  background: none;
  border: 2px solid var(--border-pencil);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--sketch-shadow-sm);
  background-color: #fff;
  transition: all 0.2s;
}

.audio-toggle-btn:hover {
  background-color: #f0ede6;
  transform: scale(1.03);
}

/* Hero & Character Sheet Section */
.hero-section {
  padding: 3rem 0 2.5rem 0;
}

.character-sheet {
  background: var(--bg-sheet);
  border: 3px solid var(--border-pencil);
  border-radius: 8px;
  box-shadow: var(--sketch-shadow);
  padding: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.sheet-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 2px dashed var(--border-pencil);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .sheet-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.sheet-logo {
  width: 90px;
  height: 90px;
  border: 2px solid var(--border-pencil);
  border-radius: 50%;
  padding: 4px;
  background: #fff;
  box-shadow: var(--sketch-shadow-sm);
  margin: 0 auto;
}

.sheet-identity h1 {
  font-family: var(--font-hand);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ink-blue);
  margin-bottom: 0.3rem;
}

.sheet-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
}

.meta-item {
  font-size: 0.95rem;
  display: flex;
  gap: 0.4rem;
}

.meta-label {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.meta-val {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-pencil);
  padding-bottom: 1px;
}

.hero-dice-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.roll-btn {
  background: #fff;
  border: 2.5px solid var(--border-pencil);
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-red);
  cursor: pointer;
  box-shadow: var(--sketch-shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.roll-btn:hover {
  background: var(--ink-red);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--sketch-shadow-hover);
}

.dice-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

/* Stats Block Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box {
  background: #fff;
  border: 2px solid var(--border-pencil);
  border-radius: 6px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  box-shadow: var(--sketch-shadow-sm);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--ink-blue);
}

.stat-name {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-blue);
  line-height: 1.1;
}

.stat-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-hand);
}

.stat-score {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.3rem 0;
}

.stat-mod {
  display: inline-block;
  border: 1.5px solid var(--border-pencil);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 29px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--bg-sheet);
  color: var(--ink-red);
}

/* Studio Identity & Core Manifesto */
.manifesto-box {
  border-top: 2px dashed var(--border-pencil);
  padding-top: 1.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--border-pencil);
  color: #fff;
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.manifesto-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.manifesto-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.d20-bullet {
  color: var(--ink-red);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* Section Title Stylings */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title-sketch {
  font-family: var(--font-hand);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  display: inline-block;
  position: relative;
}

.section-title-sketch::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--border-pencil), transparent);
  margin-top: -6px;
}

.section-subtitle {
  font-family: var(--font-pen-script);
  font-size: 1.45rem;
  color: var(--ink-blue);
  margin-top: 0.25rem;
}

/* Timeline (Dev Story) Section */
.dev-story-section {
  padding: 3rem 0;
}

.timeline-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border-pencil),
    var(--border-pencil) 10px,
    transparent 10px,
    transparent 18px
  );
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 24px;
  }
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 3rem;
  position: relative;
  margin-bottom: 2.5rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 3rem;
  margin-left: 50%;
}

@media (max-width: 768px) {
  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 4rem;
    padding-right: 0;
    justify-content: flex-start;
  }
}

.timeline-badge {
  position: absolute;
  top: 15px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-pencil);
  box-shadow: var(--sketch-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-red);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-badge {
  right: auto;
  left: -20px;
}

@media (max-width: 768px) {
  .timeline-badge, .timeline-item:nth-child(even) .timeline-badge {
    left: 4px;
    right: auto;
  }
}

.timeline-content {
  background: #fff;
  border: 2px solid var(--border-pencil);
  border-radius: var(--sketch-border-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--sketch-shadow);
  width: 100%;
}

.timeline-era {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-blue);
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.2rem 0 0.5rem 0;
}

/* Projects Section */
.projects-section {
  padding: 3rem 0;
}

.active-project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border: 3px solid var(--border-pencil);
  border-radius: 12px;
  box-shadow: var(--sketch-shadow);
  padding: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 880px) {
  .active-project-card {
    grid-template-columns: 1fr;
  }
}

.project-img-frame {
  border: 2px solid var(--border-pencil);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sketch-shadow-sm);
  background: #f8f6f0;
  position: relative;
  min-height: 365px;
}

.project-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-badge-active {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink-red);
  color: #fff;
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  border: 1.5px solid var(--border-pencil);
  box-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.project-details h3 {
  font-family: var(--font-hand);
  font-size: 2.2rem;
  color: var(--ink-blue);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.project-spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem 0;
}

.spec-tag {
  background: var(--bg-sheet);
  border: 1.5px solid var(--border-pencil);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}

/* GM Dialogue Simulator Box */
.gm-simulator-box {
  border: 2px dashed var(--border-pencil);
  background: #fcfbf8;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.gm-selector-title {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.gm-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gm-tab-btn {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border-pencil);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.gm-tab-btn.active, .gm-tab-btn:hover {
  background: var(--ink-blue);
  color: #fff;
  border-color: var(--ink-blue);
}

.dialogue-display {
  background: #fff;
  border: 2.5px solid var(--border-pencil);
  border-radius: 8px;
  padding: 1rem;
  min-height: 120px;
  box-shadow: var(--sketch-shadow-sm);
  margin-bottom: 0.85rem;
  font-family: var(--font-serif);
  position: relative;
}

.dialogue-speaker {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-red);
  margin-bottom: 0.3rem;
}

.dialogue-text {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.5;
}

.dialogue-action-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.action-chip {
  background: #fff;
  border: 1.5px solid var(--border-pencil);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.action-chip:hover {
  background: var(--ink-red);
  color: #fff;
}

/* Planned Projects Grid */
.planned-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .planned-projects-grid {
    grid-template-columns: 1fr;
  }
}

.planned-card {
  background: #fff;
  border: 2px solid var(--border-pencil);
  border-radius: 10px;
  box-shadow: var(--sketch-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.planned-img {
  height: 330px;
  overflow: hidden;
  border-bottom: 2px solid var(--border-pencil);
  position: relative;
}

.planned-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.planned-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.planned-title {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--ink-blue);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.interest-btn {
  margin-top: auto;
  align-self: flex-start;
  background: var(--bg-sheet);
  border: 1.5px solid var(--border-pencil);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--sketch-shadow-sm);
  transition: all 0.2s;
}

.interest-btn:hover {
  background: var(--accent-gold);
  color: #fff;
}

/* Investor Pitch IR Section */
.investor-section {
  padding: 3.5rem 0;
  background: var(--bg-sheet);
  border-top: 2px dashed var(--border-pencil);
  border-bottom: 2px dashed var(--border-pencil);
  margin: 3rem 0;
}

.pitch-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-card {
  background: #fff;
  border: 2px solid var(--border-pencil);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--sketch-shadow-sm);
}

.highlight-icon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-red);
  margin-bottom: 0.5rem;
}

.highlight-title {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink-blue);
  margin-bottom: 0.35rem;
}

/* Form / Contract Section */
.contract-form-container {
  background: #fff;
  border: 3px solid var(--border-pencil);
  border-radius: 12px;
  box-shadow: var(--sketch-shadow);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.contract-header {
  text-align: center;
  border-bottom: 2px solid var(--border-pencil);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.contract-header h3 {
  font-family: var(--font-hand);
  font-size: 2.2rem;
  color: var(--ink-blue);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-paper);
  border: 2px solid var(--border-pencil);
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ink-blue);
  background: #fff;
}

.submit-contract-btn {
  width: 100%;
  background: var(--ink-blue);
  color: #fff;
  border: 2px solid var(--border-pencil);
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--sketch-shadow);
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.submit-contract-btn:hover {
  background: var(--ink-red);
  transform: translateY(-2px);
  box-shadow: var(--sketch-shadow-hover);
}

/* Stamp Seal Overlay */
.stamp-seal {
  position: absolute;
  bottom: 30px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 4px double var(--ink-red);
  border-radius: 50%;
  color: var(--ink-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hand);
  font-weight: 700;
  transform: rotate(-15deg) scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
}

.stamp-seal.active {
  transform: rotate(-15deg) scale(1);
}

/* Modal Overlay for D20 Result */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  border: 3px solid var(--border-pencil);
  border-radius: var(--sketch-border-radius);
  box-shadow: 8px 10px 0px rgba(0, 0, 0, 0.9);
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-d20-val {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ink-red);
  line-height: 1;
  margin: 0.5rem 0;
}

.modal-close-btn {
  margin-top: 1.25rem;
  background: #fff;
  border: 2px solid var(--border-pencil);
  border-radius: 20px;
  padding: 0.4rem 1.25rem;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

/* Footer */
.site-footer {
  border-top: 2px dashed var(--border-pencil);
  padding: 2.5rem 0;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--text-muted);
}
