@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Human, Warm, Indie Light Palette */
  --bg-body: #faf9f6;
  /* Warm alabaster off-white */
  --bg-surface: #ffffff;
  --bg-muted: #f4f2eb;
  --bg-subtle: #f9f8f5;

  /* Text */
  --text-main: #18181b;
  /* Zinc 900 */
  --text-body: #3f3f46;
  /* Zinc 700 */
  --text-muted: #71717a;
  /* Zinc 500 */
  --text-light: #a1a1aa;
  /* Zinc 400 */

  /* Accent Colors (Friendly, Non-corporate) */
  --accent-blue: #3b82f6;
  --accent-indigo: #4f46e5;
  --accent-purple: #8b5cf6;
  --accent-coral: #f43f5e;
  --accent-amber: #f59e0b;
  --accent-emerald: #10b981;
  --accent-teal: #0d9488;

  /* Pastel Tints for Stickers & Cards */
  --tint-blue: #eff6ff;
  --tint-purple: #f5f3ff;
  --tint-amber: #fefce8;
  --tint-emerald: #ecfdf5;
  --tint-rose: #fff1f2;
  --tint-indigo: #eef2ff;

  /* Borders & Shadows */
  --border-main: #e4e4e7;
  --border-subtle: #f4f4f5;
  --border-card: rgba(0, 0, 0, 0.07);
  --border-focus: #18181b;

  /* Playful Neo-soft Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 14px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 12px 30px -4px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
  --shadow-pop: 3px 3px 0px #18181b;
  --shadow-pop-sm: 2px 2px 0px #18181b;

  /* Fonts */
  --font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Subtle dot grid notebook texture */
  background-image: radial-gradient(#e4e4e7 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1aa;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  color: var(--text-body);
}

a {
  color: var(--accent-indigo);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-blue);
}

/* Floating Navigation Pill */
.navbar-floating {
  position: sticky;
  top: 20px;
  z-index: 1000;
  padding: 0 15px;
}

.nav-pill-container {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-main);
  border-radius: 50px;
  padding: 5px 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s var(--ease-smooth);
}

.nav-brand-playful {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 30px;
  background: var(--tint-amber);
  border: 1px dashed var(--accent-amber);
}

.nav-brand-playful:hover {
  color: var(--text-main);
  transform: rotate(-2deg);
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-link {
  color: var(--text-body);
  font-size: 0.80rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 16px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-item-link:hover {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.04);
}

.nav-item-link.active {
  color: var(--text-main);
  background: var(--bg-muted);
  box-shadow: inset 0 0 0 1px var(--border-main);
}

.nav-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.nav-now-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  max-width: 940px;
  margin: 10px auto 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--text-main);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow-pop);
}

.mobile-nav-drawer.show {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--tint-amber);
  color: var(--text-main);
}

/* Hero Section */
.hero-indie {
  padding: 60px 0 80px 0;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--border-main);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-main-title {
  font-size: 3.35rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.highlight-pen {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 4px;
}

.highlight-pen::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 14px;
  background: #fde047;
  /* Highlighter yellow */
  z-index: -1;
  transform: rotate(-1deg);
  border-radius: 4px;
  opacity: 0.85;
}

.hero-roles-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.role-pill {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease-spring);
}

.role-pill:hover {
  transform: translateY(-2px);
}

.role-pill-game {
  background: var(--tint-purple);
  color: #6d28d9;
  border-color: #ddd6fe;
}

.role-pill-web {
  background: var(--tint-blue);
  color: #1d4ed8;
  border-color: #bfdbfe;
}

.role-pill-music {
  background: var(--tint-rose);
  color: #be123c;
  border-color: #fecdd3;
}

.role-pill-music2 {
  background: var(--tint-yellow);
  color: #e4a605;
  border-color: #f59e0b;
}

.role-pill-edu {
  background: var(--tint-emerald);
  color: #047857;
  border-color: #a7f3d0;
}

.hero-bio-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Buttons */
.btn-indie-primary {
  background: var(--text-main);
  color: #ffffff !important;
  border: 2px solid var(--text-main);
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-pop);
  transition: all 0.15s ease;
}

.btn-indie-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #18181b;
  color: #ffffff !important;
}

.btn-indie-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px #18181b;
}

.btn-indie-secondary {
  background: #ffffff;
  color: var(--text-main) !important;
  border: 2px solid var(--text-main);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-pop);
  transition: all 0.15s ease;
}

.btn-indie-secondary:hover {
  background: var(--bg-muted);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #18181b;
  color: var(--text-main) !important;
}

.btn-indie-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px #18181b;
}

/* ==========================================================================
   Hero Personal Words / Creative Mindset
   ========================================================================== */
.hero-mindset-wrap {
  border-top: 1.5px dashed var(--border-main);
}

.mindset-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mindset-quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mindset-quote-item {
  background: #ffffff;
  border: 1.5px solid var(--text-main);
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-main);
  box-shadow: 2.5px 2.5px 0px #18181b;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.2s var(--ease-spring);
}

.mindset-quote-item:hover {
  transform: translateX(4px);
  box-shadow: 4px 4px 0px #18181b;
  background: #fafaf9;
}

.mindset-quote-item .quote-icon {
  font-size: 1.05rem;
  color: var(--accent-indigo);
  flex-shrink: 0;
  margin-top: -1px;
}

.mindset-quote-item.highlight-bear {
  background: #fffbeb;
  border-color: #b45309;
  box-shadow: 2.5px 2.5px 0px #b45309;
}

.mindset-quote-item.highlight-bear:hover {
  background: #fef3c7;
  box-shadow: 4px 4px 0px #b45309;
}

.mindset-quote-item .quote-text {
  font-style: italic;
}

/* Hero Right Interactive Physics & Sandbox Widget */
.hero-sandbox-card {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  position: relative;
}

.sandbox-header {
  background: var(--bg-muted);
  padding: 12px 18px;
  border-bottom: 2px solid var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sandbox-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sandbox-tabs {
  display: flex;
  gap: 6px;
}

.sandbox-tab-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-main);
  background: #ffffff;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sandbox-tab-btn.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

/* Interactive Mini Godot 2D Physics Visualizer */
.sandbox-canvas-area {
  height: 250px;
  background: #fafaf9;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--text-main);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.physics-character {
  width: 36px;
  height: 36px;
  background: #4f46e5;
  border: 2px solid #18181b;
  border-radius: 8px;
  position: absolute;
  bottom: 20px;
  left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 2px 2px 0px #18181b;
  transition: left 0.15s linear, bottom 0.25s cubic-bezier(0.2, 0.8, 0.4, 1.2);
  user-select: none;
}

.physics-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: #18181b;
}

.physics-platform {
  position: absolute;
  bottom: 95px;
  left: 170px;
  width: 110px;
  height: 14px;
  background: #f59e0b;
  border: 2px solid #18181b;
  border-radius: 4px;
  box-shadow: 2px 2px 0px #18181b;
}

.sandbox-telemetry {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-main);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-body);
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
}

.sandbox-controls-bar {
  padding: 14px 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.sandbox-btn-group {
  display: flex;
  gap: 6px;
}

.sandbox-action-btn {
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1.5px solid var(--text-main);
  background: #ffffff;
  color: var(--text-main);
  box-shadow: var(--shadow-pop-sm);
  cursor: pointer;
  transition: all 0.1s ease;
  user-select: none;
}

.sandbox-action-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 0px 0px 0px #18181b;
}

.sandbox-action-btn.jump-btn {
  background: #fde047;
}

/* Section Header (Human & Creative) */
.section-indie-header {
  margin-bottom: 45px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-indigo);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tint-indigo);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #c7d2fe;
  margin-bottom: 12px;
}

.section-big-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.28;
  margin-bottom: 8px;
}

.section-subtitle-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* Bento Grid Studio / About Section */
.bento-card {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-pop);
  transition: all 0.25s var(--ease-spring);
  height: 100%;
  position: relative;
}

.bento-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #18181b;
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--text-main);
  background: #ffffff;
}

/* Music Soundscape Player Widget (Zaul's creative side) */
.audio-tape-widget {
  background: var(--tint-amber);
  border: 2px solid var(--text-main);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 15px;
  box-shadow: var(--shadow-sm);
}

.tape-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

.tape-status-text {
  font-size: 0.72rem;
  color: #4338ca;
  font-weight: 700;
}

.tape-window {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tape-reels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.tape-reel {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--text-main);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 0px #18181b;
}

.tape-reel.spinning {
  animation: spin-reel 2.5s linear infinite;
}

@keyframes spin-reel {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.reel-spokes {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-main);
  position: relative;
}

.reel-spokes::before,
.reel-spokes::after {
  content: '';
  position: absolute;
  background: var(--text-main);
}

.reel-spokes::before {
  top: -10px;
  left: 5px;
  width: 4px;
  height: 34px;
}

.reel-spokes::after {
  top: 5px;
  left: -10px;
  width: 34px;
  height: 4px;
}

.tape-middle-bridge {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tape-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  padding: 0 10px;
}

.wave-bar {
  width: 3px;
  height: 6px;
  background: #94a3b8;
  border-radius: 2px;
  transition: height 0.15s ease;
}

.tape-wave-bars.playing .wave-bar:nth-child(1) {
  animation: sound-wave 0.8s ease-in-out infinite alternate;
}

.tape-wave-bars.playing .wave-bar:nth-child(2) {
  animation: sound-wave 0.5s ease-in-out infinite alternate;
  animation-delay: 0.15s;
}

.tape-wave-bars.playing .wave-bar:nth-child(3) {
  animation: sound-wave 1.1s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}

.tape-wave-bars.playing .wave-bar:nth-child(4) {
  animation: sound-wave 0.7s ease-in-out infinite alternate;
  animation-delay: 0.1s;
}

.tape-wave-bars.playing .wave-bar:nth-child(5) {
  animation: sound-wave 0.9s ease-in-out infinite alternate;
  animation-delay: 0.25s;
}

@keyframes sound-wave {
  0% {
    height: 4px;
    background: #64748b;
  }

  50% {
    height: 20px;
    background: #4f46e5;
  }

  100% {
    height: 10px;
    background: #7c3aed;
  }
}

.tape-scrubber {
  height: 5px;
  cursor: pointer;
  accent-color: var(--accent-indigo);
}

.tape-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-tape-play {
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  background: #ffffff;
  border: 1.5px solid var(--text-main);
  border-radius: 8px;
  box-shadow: var(--shadow-pop-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}

.btn-tape-play:hover {
  background: #fde047;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #18181b;
}

.btn-tape-play:active {
  transform: translate(1px, 1px);
  box-shadow: 0px 0px 0px #18181b;
}

.btn-tape-mute {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  border: 1.5px solid var(--text-main);
  box-shadow: var(--shadow-pop-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: all 0.15s ease;
}

.btn-tape-mute:hover {
  background: #f4f4f5;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #18181b;
}

.tape-format-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border-main);
}

/* Interactive Toolkit / Sticker Canvas */
.sticker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-pop-sm);
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
  user-select: none;
}

.tech-sticker:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 4px 4px 0px #18181b;
}

.tech-sticker i {
  font-size: 1.2rem;
}

.sticker-godot {
  background: var(--tint-purple);
}

.sticker-react {
  background: var(--tint-blue);
}

.sticker-php {
  background: var(--tint-indigo);
}

.sticker-mysql {
  background: var(--tint-emerald);
}

.sticker-firebase {
  background: #fff7ed;
}

.sticker-supabase {
  background: #ecfdf5;
}

.sticker-audio {
  background: #fef08a;
}

.sticker-vst {
  background: #ede9fe;
}

.sticker-js {
  background: var(--tint-amber);
}

.sticker-python {
  background: #ecfeff;
}

.sticker-git {
  background: var(--tint-rose);
}

.sticker-edu {
  background: #fdf2f8;
}

.sticker-info-box {
  margin-top: 20px;
  padding: 16px 20px;
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-pop-sm);
}

/* Compact Skills Matrix Deck (Hard Skills & Soft Skills) */
.skills-deck-card {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 18px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s var(--ease-spring);
}

.skills-deck-card:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0px #18181b;
}

.skills-deck-header {
  padding: 12px 18px;
  border-bottom: 2px solid var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skills-deck-header.header-hard {
  background: #eff6ff;
}

.skills-deck-header.header-soft {
  background: #fefce8;
}

.skills-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1.5px solid var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 1.5px 1.5px 0px #18181b;
}

.skills-header-icon.icon-hard {
  background: #dbeafe;
  color: #1d4ed8;
}

.skills-header-icon.icon-soft {
  background: #fef08a;
  color: #b45309;
}

.compact-skill-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fafaf9;
  border: 1.5px solid var(--border-main);
  border-radius: 12px;
  height: 100%;
  transition: all 0.18s var(--ease-spring);
}

.compact-skill-tile:hover {
  background: #ffffff;
  border-color: var(--text-main);
  transform: translate(-1px, -1px);
  box-shadow: 2.5px 2.5px 0px #18181b;
}

.skill-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1.5px solid var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.skill-tile-icon.icon-hard {
  background: #eff6ff;
  color: #2563eb;
}

.skill-tile-icon.icon-soft {
  background: #fef9c3;
  color: #d97706;
}

.skill-tile-info {
  flex-grow: 1;
  min-width: 0;
}

.skill-tile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.skill-tile-sub {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Project Devlog Cards (Notebook style) */
.project-card-devlog {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  transition: all 0.25s var(--ease-spring);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card-devlog:hover {
  transform: translate(-4px, -4px);
  box-shadow: 7px 7px 0px #18181b;
}

.project-cover-art {
  height: 205px;
  background: #f4f4f5;
  border-bottom: 2px solid var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-cover-art svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
  display: block;
}

.project-card-devlog:hover .project-cover-art svg,
.project-card-devlog:hover .project-cover-img {
  transform: scale(1.06);
}

.project-category-sticker {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  border: 1.5px solid var(--text-main);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-pop-sm);
}

.project-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-devlog-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
}

.project-devlog-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.project-chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.project-chip {
  background: var(--bg-muted);
  border: 1px solid var(--border-main);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-body);
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--border-main);
}

.btn-repo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text-main);
  border: 2px solid var(--text-main);
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-pop-sm);
  transition: all 0.15s ease;
}

.btn-repo-link:hover {
  background: var(--text-main);
  color: #ffffff;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

/* "More To Come" Special Devlog Card */
.project-card-more {
  border-style: dashed;
  background: #fafaf9;
}

.project-cover-more {
  background: radial-gradient(circle at center, #eef2ff 0%, #f8fafc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.more-projects-visual {
  text-align: center;
}

.more-icon-pulse {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid var(--text-main);
  box-shadow: var(--shadow-pop-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-spring);
}

.project-card-more:hover .more-icon-pulse {
  transform: scale(1.15) rotate(6deg);
}

.more-badge-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-indigo);
}

/* ==========================================================================
   Music Lounge & Interactive Playlist Section
   ========================================================================== */
.music-deck-container {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-pop);
}

/* 1 Song / 1 Day Challenge Banner */
.music-challenge-banner {
  background: #fffbeb;
  border: 2px solid #b45309;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-pop-sm);
  margin-bottom: 24px;
}

.challenge-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0px #b45309;
}

/* Left Player Card */
.music-player-card {
  background: #fafaf9;
  border: 2px solid var(--text-main);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-pop-sm);
}

.player-deck-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.deck-led-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #94a3b8;
  transition: all 0.3s ease;
}

.deck-led-indicator.playing {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.deck-mode-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Turntable / Vinyl Visualizer */
.turntable-visual-wrap {
  height: 185px;
  background: radial-gradient(circle, #27272a 0%, #18181b 100%);
  border: 2px solid var(--text-main);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.vinyl-disc-disc {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #3f3f46 0%, #18181b 70%);
  border: 4px solid #09090b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.vinyl-disc-disc.spinning {
  animation: spin-vinyl 3s linear infinite;
}

@keyframes spin-vinyl {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vinyl-groove {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.vinyl-groove.groove-2 {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vinyl-center-label {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f59e0b;
  border: 2px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vinyl-center-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18181b;
  margin-bottom: 2px;
}

.vinyl-center-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 800;
  color: #18181b;
  letter-spacing: 0.05em;
}

/* EQ Overlay */
.vinyl-eq-bars {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.eq-bar {
  width: 3px;
  height: 4px;
  background: #fde047;
  border-radius: 2px;
  transition: height 0.15s ease;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(1) {
  animation: sound-wave 0.7s ease-in-out infinite alternate;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(2) {
  animation: sound-wave 0.4s ease-in-out infinite alternate;
  animation-delay: 0.1s;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(3) {
  animation: sound-wave 0.9s ease-in-out infinite alternate;
  animation-delay: 0.25s;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(4) {
  animation: sound-wave 0.6s ease-in-out infinite alternate;
  animation-delay: 0.15s;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(5) {
  animation: sound-wave 1.0s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(6) {
  animation: sound-wave 0.5s ease-in-out infinite alternate;
  animation-delay: 0.05s;
}

.vinyl-eq-bars.playing .eq-bar:nth-child(7) {
  animation: sound-wave 0.8s ease-in-out infinite alternate;
  animation-delay: 0.2s;
}

/* Track Info */
.track-info-panel {
  margin-top: 14px;
}

.track-playing-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
}

.track-playing-artist {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.player-seek-bar {
  cursor: pointer;
}

/* Playback Control Buttons */
.player-main-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-deck-control {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  border: 1.5px solid var(--text-main);
  box-shadow: var(--shadow-pop-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.15s ease;
  font-size: 0.9rem;
}

.btn-deck-control:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #18181b;
  background: var(--bg-muted);
}

.btn-deck-control:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px #18181b;
}

.btn-deck-play {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fde047;
  border: 2px solid var(--text-main);
  box-shadow: var(--shadow-pop-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  font-size: 1.25rem;
  transition: all 0.15s ease;
}

.btn-deck-play:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #18181b;
  background: #facc15;
}

.btn-deck-play:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0px #18181b;
}

.btn-deck-toggle.active {
  background: var(--text-main);
  color: #ffffff;
}

.player-volume-slider {
  width: 65px;
}

/* Right Playlist Card */
.playlist-deck-card {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-pop-sm);
}

.playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--text-main);
  margin-bottom: 12px;
}

.playlist-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.playlist-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-main);
  background: #ffffff;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.playlist-filter-btn:hover,
.playlist-filter-btn.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
  box-shadow: 2px 2px 0px #18181b;
}

.playlist-search-input {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 4px 10px;
  border: 1.5px solid var(--border-main);
  border-radius: 10px;
  background: #fafaf9;
}

.playlist-search-input:focus {
  outline: none;
  border-color: var(--text-main);
  background: #ffffff;
}

.playlist-items-stack {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
  flex-grow: 1;
}

/* Custom Slim Scrollbar */
.playlist-items-stack::-webkit-scrollbar {
  width: 6px;
}

.playlist-items-stack::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.playlist-items-stack::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.playlist-items-stack::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Playlist Track Row */
.playlist-track-row {
  background: #fafaf9;
  border: 1.5px solid var(--border-main);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
}

.playlist-track-row:hover {
  border-color: var(--text-main);
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: 3px 3px 0px #18181b;
}

.playlist-track-row.active {
  background: #fefce8;
  border-color: var(--text-main);
  box-shadow: 3px 3px 0px #18181b;
}

.track-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.track-row-num {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 22px;
}

.playlist-track-row.active .track-row-num {
  color: #b45309;
}

.track-row-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.track-row-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.track-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.track-row-duration {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.track-mini-eq {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.playlist-track-row.active.playing .track-mini-eq {
  display: flex;
}

.playlist-track-row.active.playing .track-mini-play-icon {
  display: none;
}

.mini-eq-bar {
  width: 2.5px;
  height: 4px;
  background: #b45309;
  border-radius: 1px;
  animation: sound-wave 0.6s ease-in-out infinite alternate;
}

.mini-eq-bar:nth-child(2) {
  animation-delay: 0.2s;
}

.mini-eq-bar:nth-child(3) {
  animation-delay: 0.4s;
}

.playlist-footer-note {
  background: #f8fafc;
  border: 1px dashed var(--border-main);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* ==========================================================================
   Resumes & Credentials Hub Section
   ========================================================================== */
.resume-hub-card {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-pop);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s var(--ease-spring);
}

.resume-hub-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0px #18181b;
}

.resume-hub-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

.resume-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  background: #fafaf9;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-main);
}

.resume-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.resume-highlight-item i {
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Journal / Timeline Section */
.journal-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.journal-item:last-child {
  margin-bottom: 0;
}

.journal-date-badge {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 12px;
  box-shadow: var(--shadow-pop-sm);
  height: fit-content;
  white-space: nowrap;
}

.journal-card {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-pop);
  flex-grow: 1;
  transition: all 0.2s ease;
}

.journal-card:hover {
  transform: translateX(4px);
}

/* Contact / Postcard Section */
.postcard-wrapper {
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 6px 6px 0px #18181b;
  position: relative;
}

.postcard-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 70px;
  border: 2px dashed var(--text-main);
  background: var(--tint-rose);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  transform: rotate(4deg);
}

.contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 16px;
  background: var(--tint-indigo);
  border: 1.5px solid var(--accent-indigo);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.contact-quick-link:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: var(--accent-indigo);
}

.social-stickers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-sticker-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border: 2px solid var(--text-main);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  box-shadow: var(--shadow-pop-sm);
  transition: all 0.15s ease;
}

.social-sticker-btn:hover {
  background: var(--tint-amber);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0px #18181b;
  color: var(--text-main);
}
.social-sticker-btn.sticker-fiverr:hover {
  background: #dcfce7;
}

/* Footer (Dark Tone) */
footer,
.footer-dark {
  margin-top: 80px;
  padding: 50px 0 36px 0;
  background: #121214;
  border-top: 2px solid #27272a;
  color: #f4f4f5;
  text-align: center;
}

.footer-logo-playful {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.footer-quick-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-quick-nav a {
  color: #a1a1aa;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.footer-quick-nav a:hover {
  color: #fde047;
  transform: translateY(-1px);
}

.footer-bottom-line {
  border-top: 1px solid #27272a;
  padding-top: 20px;
  margin-top: 10px;
}

.footer-bottom-line p {
  color: #71717a !important;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s var(--ease-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-smooth);
}

.reveal-stagger.active>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.active>*:nth-child(1) {
  transition-delay: 0.08s;
}

.reveal-stagger.active>*:nth-child(2) {
  transition-delay: 0.16s;
}

.reveal-stagger.active>*:nth-child(3) {
  transition-delay: 0.24s;
}

.reveal-stagger.active>*:nth-child(4) {
  transition-delay: 0.32s;
}

.reveal-stagger.active>*:nth-child(5) {
  transition-delay: 0.40s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-main-title {
    font-size: 2.75rem;
  }

  .nav-now-badge {
    display: none;
  }

  .hero-sandbox-card {
    margin-top: 30px;
  }

  .journal-item {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .hero-main-title {
    font-size: 2.2rem;
  }

  .section-big-title {
    font-size: 1.85rem;
  }

  .postcard-wrapper {
    padding: 24px;
  }

  .postcard-stamp {
    display: none;
  }

  .btn-indie-primary,
  .btn-indie-secondary {
    width: 100%;
    justify-content: center;
  }
}