/* ============================================
   INTAN BIRTHDAY — STYLES
   "Ruang Istirahat Digital"
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-deep:      #0a0f1a;
  --bg-dark:      #0d1b2a;
  --bg-card:      #131f30;
  --navy:         #1b2838;
  --slate:        #2a3a4e;
  --accent-gold:  #f0c040;
  --accent-amber: #e89b2d;
  --accent-rose:  #e85d75;
  --accent-teal:  #2dd4bf;
  --text-primary: #e8ecf1;
  --text-muted:   #8899aa;
  --text-dim:     #556677;
  --terminal-green: #4af626;
  --terminal-bg:  #0b0e14;
  --glass:        rgba(13, 27, 42, 0.7);
  --glass-border: rgba(255,255,255,0.06);

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;
  --font-serif: 'Playfair Display', Georgia, serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

.hidden { opacity: 0; pointer-events: none; display: none; }
.hidden-svg { display: none; }

/* ============================================
   START SCREEN
   ============================================ */
#start-screen {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
}

#start-screen.fade-out {
  animation: fadeOutScreen 0.8s ease forwards;
}

@keyframes fadeOutScreen {
  to { opacity: 0; }
}

.start-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.start-emoji {
  font-size: 4rem;
  animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.start-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.start-button {
  padding: 14px 48px;
  border-radius: 14px;
  border: 1px solid var(--accent-gold);
  background: rgba(240,192,64,0.1);
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  letter-spacing: 1px;
}

.start-button:hover {
  background: rgba(240,192,64,0.25);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(240,192,64,0.2);
}

.start-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ============================================
   SCENE 1: TERMINAL
   ============================================ */
#terminal-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terminal-bg);
  transition: opacity 0.8s ease;
}

.terminal-window {
  width: min(700px, 90vw);
  max-height: 80vh;
  background: #111722;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 25px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(74,246,38,0.05);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #0d1117;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-dots { display: flex; gap: 8px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: auto;
}

#terminal-body {
  padding: 24px;
  min-height: 280px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.8;
}

.term-line {
  opacity: 0;
  animation: typeIn 0.3s var(--ease-out-expo) forwards;
}

.term-line .prompt  { color: var(--accent-teal); }
.term-line .command { color: var(--text-primary); }
.term-line .done    { color: var(--terminal-green); font-weight: 700; }
.term-line .warning { color: var(--accent-amber); }
.term-line .error   { color: var(--accent-rose); font-weight: 700; }

@keyframes typeIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

#cursor {
  color: var(--terminal-green);
  font-size: 1rem;
}
.blink { animation: blink 1s step-end infinite; }
@keyframes blink {
  50% { opacity: 0; }
}

/* ---- Glitch Overlay ---- */
#glitch-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
}

#glitch-overlay.active {
  animation: glitchFlash 1.5s ease-out forwards;
}

@keyframes glitchFlash {
  0%   { opacity: 1; background: var(--terminal-green); }
  5%   { opacity: 0; }
  8%   { opacity: 1; background: var(--accent-rose); }
  12%  { opacity: 0; }
  15%  { opacity: 0.8; background: white; }
  20%  { opacity: 0; }
  25%  { opacity: 0.4; background: var(--terminal-green); }
  30%  { opacity: 0; }
  50%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================
   AUDIO BUTTON
   ============================================ */
.audio-btn {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInBtn 1s 2s ease forwards;
}

.audio-btn:hover {
  background: rgba(240,192,64,0.15);
  border-color: var(--accent-gold);
  transform: scale(1.1);
}

@keyframes fadeInBtn {
  to { opacity: 1; }
}

/* ============================================
   SCENE 2: LANDING
   ============================================ */
#scene-landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(45,212,191,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(240,192,64,0.04) 0%, transparent 50%),
    var(--bg-deep);
}

#rain-canvas-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#rain-canvas {
  width: 100%;
  height: 100%;
}

.landing-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto 24px;
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

.tagline em {
  color: var(--accent-gold);
  font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.chevron-down {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

/* ============================================
   SCENE 3: DATA
   ============================================ */
#scene-data {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(240,192,64,0.05) 0%, transparent 50%),
    var(--bg-deep);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -32px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.chart-container {
  width: min(700px, 90vw);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.chart-caption {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
}

.chart-caption strong {
  color: var(--accent-rose);
}

/* ============================================
   SCENE 5: TRIBUTE
   ============================================ */
#scene-tribute {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(240,192,64,0.04) 0%, transparent 60%),
    var(--bg-deep);
}

.tribute-content {
  max-width: 650px;
  text-align: center;
}

.tribute-icon {
  font-size: 3rem;
  margin-bottom: 32px;
  animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.tribute-text {
  border: none;
  padding: 0;
  margin: 0;
}

.tribute-text p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.tribute-highlight {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 1.6rem) !important;
}

.tribute-text strong {
  color: var(--accent-teal);
}

.tribute-gold {
  color: var(--accent-gold) !important;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================
   DIGITAL PAINKILLER
   ============================================ */
#scene-painkiller {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg-deep);
}

.painkiller-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.pill-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.35s var(--ease-out-expo);
  min-width: 150px;
}

.pill-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.pill-btn:hover .pill-icon {
  transform: scale(1.2) rotate(-5deg);
}

.pill-joke:hover {
  border-color: var(--accent-gold);
  background: rgba(240,192,64,0.1);
  box-shadow: 0 8px 30px rgba(240,192,64,0.15);
}

.pill-silence:hover {
  border-color: var(--accent-teal);
  background: rgba(45,212,191,0.1);
  box-shadow: 0 8px 30px rgba(45,212,191,0.15);
}

.pill-puisi:hover {
  border-color: var(--accent-gold);
  background: rgba(240,192,64,0.1);
  box-shadow: 0 8px 30px rgba(240,192,64,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-deep);
}

.footer-line {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-line a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.footer-line a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-line code {
  font-family: var(--font-mono);
  color: var(--accent-teal);
  background: rgba(45,212,191,0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.heart {
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15%      { transform: scale(1.25); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.15); }
}

.footer-credit {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   JOKE MODAL
   ============================================ */
.overlay-hidden {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.overlay-hidden.active {
  opacity: 1;
  pointer-events: all;
}

#joke-modal {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

.joke-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 450px;
  width: 90vw;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

#joke-modal.active .joke-card {
  transform: scale(1) translateY(0);
}

.joke-emoji {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#joke-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 28px;
  min-height: 50px;
}

.close-btn {
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-primary);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.close-btn:hover {
  background: rgba(232,93,117,0.15);
  border-color: var(--accent-rose);
}

.another-btn {
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
  background: rgba(240,192,64,0.1);
  color: var(--accent-gold);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.another-btn:hover {
  background: rgba(240,192,64,0.25);
}

/* ============================================
   SILENCE OVERLAY
   ============================================ */
#silence-overlay {
  background: #000;
  flex-direction: column;
}

.silence-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: scale(0.95);
  transition: transform 0.6s var(--ease-out-expo);
}

#silence-overlay.active .silence-content {
  transform: scale(1);
}

.breath-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.3), transparent);
  border: 2px solid rgba(45,212,191,0.4);
  transition: all 4s ease-in-out;
}

.breath-circle.inhale {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45,212,191,0.5), transparent);
  border-color: rgba(45,212,191,0.7);
}

.breath-circle.hold {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240,192,64,0.4), transparent);
  border-color: rgba(240,192,64,0.6);
}

.breath-circle.exhale {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(45,212,191,0.2), transparent);
  border-color: rgba(45,212,191,0.3);
}

.breath-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  transition: opacity 0.5s ease;
}

.breath-timer {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.25);
}

.exit-silence-btn {
  margin-top: 20px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.exit-silence-btn:hover {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================
   PUISI OVERLAY
   ============================================ */
#puisi-overlay {
  background: rgba(10, 15, 25, 0.95);
  backdrop-filter: blur(10px);
}

.puisi-content {
  max-width: 600px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.6s var(--ease-out-expo);
  text-align: center;
}

#puisi-overlay.active .puisi-content {
  transform: translateY(0) scale(1);
}

#puisi-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-align: left;
}

#puisi-text p {
  margin-bottom: 24px;
}

#puisi-text p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: var(--accent-gold);
}

.puisi-actions {
  display: flex;
  justify-content: center;
}

/* ============================================
   SKIP TERMINAL BUTTON
   ============================================ */
.skip-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 10px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1002;
  letter-spacing: 1px;
}

.skip-btn:hover {
  color: var(--text-muted);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}

.skip-btn:active {
  transform: scale(0.95);
}

/* ============================================
   AGE COUNTER
   ============================================ */
.age-counter {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 20px;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

/* ============================================
   SURAT DARI RIZKI
   ============================================ */
#scene-surat {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(240,192,64,0.04) 0%, transparent 50%),
    var(--bg-deep);
}

.surat-content {
  max-width: 600px;
  text-align: center;
}

.surat-body {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.surat-body p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.surat-body em {
  color: var(--accent-gold);
  font-style: italic;
}

.surat-sign {
  text-align: right;
  color: var(--accent-gold) !important;
  font-weight: 600;
  margin-top: 24px !important;
  font-size: 1.2rem !important;
}

/* ============================================
   TRIBUTE CLOSING
   ============================================ */
.tribute-closing {
  color: var(--accent-teal) !important;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(240, 192, 64, 0.2);
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) translateX(40px);
    opacity: 0;
  }
}

/* ============================================
   MOBILE ACTIVE STATES
   ============================================ */
.start-button:active {
  transform: scale(0.97);
  opacity: 0.8;
}

.pill-btn:active {
  transform: scale(0.95);
  opacity: 0.85;
}

.audio-btn:active {
  transform: scale(0.9);
}

.close-btn:active,
.another-btn:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {

  .painkiller-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pill-btn {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    padding: 20px 28px;
  }

  .pill-icon {
    font-size: 2rem;
  }

  .chart-container {
    padding: 20px;
  }

  .terminal-window {
    border-radius: 8px;
  }

  #terminal-body {
    padding: 16px;
    font-size: 0.78rem;
  }

  .joke-card {
    padding: 32px 24px;
  }
}

@media (max-width: 400px) {
  .main-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}
