/* Retro MySpace Style CSS */

:root {
  --bg-dark: #0d0e1a;
  --bg-darker: #050510;
  --bg-sidebar: #151620;
  --text-primary: #c9c0d9;  /* Purple-ish grey for body text */
  --text-secondary: #b5a8c8; /* Lighter purple-ish grey */
  --text-dim: #8a7d9f;       /* Dimmer purple-ish grey */
  --accent: #b794f6;
  --accent-alt: #c4a1f7;
  --accent-bright: #e9d5ff;
  --accent-yellow: #f7e6a8;
  --accent-yellow-bright: #fef3c7;
  --border-color: #3a3d55;
  --terminal-bg: #10121f;
}

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

body {
  font-family: 'Share Tech Mono', 'Space Mono', monospace;
  background: var(--bg-dark);
  background-image: 
    linear-gradient(rgba(5, 5, 16, 0.8), rgba(5, 5, 16, 0.8)),
    url('/assets/img/image.png');
  background-repeat: repeat;
  background-size: auto;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 20px;
}

/* Chinese text styling - retro but readable */
/* Noto Sans SC is a clean, readable font that works well for Chinese characters */
/* It will be applied to .retro-title which contains Chinese text */

.container {
  display: flex;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Sidebar Styles */
.sidebar {
  display: block !important;
  width: 280px;
  background: var(--bg-sidebar);
  border-right: 3px solid var(--border-color);
  padding: 25px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--border-color);
}

.retro-avatar {
  margin-bottom: 15px;
}

.profile-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.profile-link:hover {
  transform: scale(1.05);
}

.pixel-avatar {
  font-size: 64px;
  display: inline-block;
  filter: contrast(1.2) brightness(0.9);
  text-shadow: 
    2px 2px 0 var(--bg-darker),
    4px 4px 0 var(--text-dim);
}

.profile-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0;
  border: 2px solid var(--border-color);
  filter: 
    contrast(1.2) 
    brightness(0.9)
    grayscale(20%)
    sepia(10%);
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  box-shadow: 
    0 0 10px rgba(183, 148, 246, 0.3),
    2px 2px 0 var(--bg-darker);
}

@keyframes pixelate {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(1px, 1px); }
  50% { transform: translate(0, 0); }
  75% { transform: translate(-1px, -1px); }
}

.site-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 17px;
  color: var(--accent);
  text-shadow: 
    2px 2px 0 var(--bg-darker),
    0 0 10px var(--accent);
  letter-spacing: 1px;
  line-height: 1.4;
  font-weight: 400;
}

.sidebar-nav {
  margin-bottom: 30px;
}

.nav-section {
  margin-bottom: 25px;
}

.nav-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: var(--accent-yellow);
  margin-bottom: 15px;
  text-shadow: 1px 1px 0 var(--bg-darker), 0 0 8px var(--accent-yellow);
  letter-spacing: 1px;
  font-weight: 400;
}

.hashtag-menu {
  list-style: none;
}

.hashtag-menu li {
  margin-bottom: 8px;
}

.hashtag-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-size: 17px;
  text-transform: lowercase;
}

.hashtag-link:hover {
  color: var(--accent-yellow-bright);
  border-color: var(--accent-yellow);
  background: rgba(247, 230, 168, 0.15);
  text-shadow: 0 0 8px var(--accent-yellow);
  transform: translateX(5px);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px dashed var(--border-color);
}

.retro-counter {
  text-align: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
}

.counter-label {
  display: block;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.counter-value {
  display: block;
  color: var(--accent-yellow);
  font-size: 20px;
  text-shadow: 0 0 10px var(--accent-yellow);
  font-weight: 400;
}

/* Main Content Styles */
.main-content {
  flex: 1;
  padding: 30px 35px;
  overflow-y: auto;
}

.terminal-window {
  background: var(--terminal-bg);
  border: 3px solid var(--border-color);
  border-radius: 0;
  box-shadow: 
    0 0 20px rgba(183, 148, 246, 0.3),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
  min-height: 500px;
}

.terminal-header {
  background: var(--bg-sidebar);
  padding: 10px 15px;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--bg-darker);
}

.terminal-dot.red {
  background: #d4a5c4;
}

.terminal-dot.yellow {
  background: #e9d5c7;
}

.terminal-dot.green {
  background: #c4a1f7;
}

.terminal-title {
  margin-left: auto;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--accent-yellow);
  letter-spacing: 1px;
  font-weight: 400;
  text-shadow: 0 0 5px var(--accent-yellow);
}

.terminal-body {
  padding: 35px 40px;
  color: var(--text-primary);
  font-family: 'Share Tech Mono', monospace;
  font-size: 19px;
}

/* Post Styles */
.post {
  margin-bottom: 30px;
}

.post-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px dashed var(--border-color);
}

.post-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 23px;
  color: var(--accent);
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 var(--bg-darker);
  line-height: 1.4;
  font-weight: 400;
}

.post-meta {
  font-size: 16px;
  color: var(--text-dim);
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.post-meta time {
  color: var(--accent-yellow);
  text-shadow: 0 0 5px var(--accent-yellow);
}

.post-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-tag {
  color: var(--accent-alt);
  text-decoration: none;
  padding: 3px 8px;
  border: 1px solid var(--accent-alt);
}

.category-tag:hover {
  background: rgba(247, 230, 168, 0.2);
  color: var(--accent-yellow-bright);
  border-color: var(--accent-yellow);
  text-shadow: 0 0 8px var(--accent-yellow);
}

.post-content {
  line-height: 1.9;
  font-size: 18px;
}

.post-content p {
  margin-bottom: 15px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: 'Share Tech Mono', monospace;
  color: var(--accent-yellow);
  margin: 25px 0 20px 0;
  font-weight: 400;
  text-shadow: 
    1px 1px 0 var(--bg-darker),
    0 0 10px var(--accent-yellow),
    0 0 20px rgba(247, 230, 168, 0.3);
}

.post-content h1 {
  font-size: 24px;
}

.post-content h2 {
  font-size: 22px;
}

.post-content h3 {
  font-size: 20px;
}

.post-content h4 {
  font-size: 19px;
}

.post-content h5 {
  font-size: 18px;
}

.post-content h6 {
  font-size: 17px;
}

.post-content a {
  color: var(--accent-yellow);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-yellow);
}

.post-content a:hover {
  color: var(--accent-yellow-bright);
  border-bottom-color: var(--accent-yellow-bright);
  text-shadow: 0 0 8px var(--accent-yellow);
}

/* Italic text styling */
.post-content em,
.post-content i,
.post-content p em,
.post-content p i {
  color: var(--accent-yellow) !important;
  font-style: italic;
}

.post-content code {
  background: var(--bg-darker);
  padding: 3px 8px;
  border: 1px solid var(--border-color);
  font-family: 'Share Tech Mono', monospace;
  color: var(--accent-alt);
  font-size: 16px;
}

.post-content pre {
  background: var(--bg-darker);
  padding: 15px;
  border: 2px solid var(--border-color);
  overflow-x: auto;
  margin: 20px 0;
}

.post-content pre code {
  border: none;
  padding: 0;
}

/* Responsive images in posts */
.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Figure and caption styling */
.post-content figure {
  text-align: center;
  margin: 20px 0;
}

.post-content figure img {
  margin: 0 auto;
}

.post-content figcaption {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-dim);
  font-style: italic;
}

/* Markdown lists styling */
.post-content ul,
.post-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.post-content ul li {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.post-content ul li::marker {
  color: var(--accent-yellow);
  font-size: 1.2em;
}

.post-content ol li {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.post-content ol li::marker {
  color: var(--accent-yellow);
  font-weight: bold;
}

.post-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px dashed var(--border-color);
}

.post-nav {
  display: flex;
  justify-content: space-between;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
  font-weight: 400;
}

.nav-link:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
  background: rgba(183, 148, 246, 0.15);
}

/* Home Page Styles */
.home {
  padding: 20px;
}

.welcome-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px dashed var(--border-color);
}

.retro-title {
  font-family: 'Noto Sans SC', 'Share Tech Mono', monospace;
  font-size: 30px;
  color: var(--accent);
  text-shadow: 
    3px 3px 0 var(--bg-darker),
    0 0 20px var(--accent);
  margin-bottom: 25px;
  line-height: 1.5;
  animation: blink 2s infinite;
  font-weight: 500;
  letter-spacing: 4px;
  /* Better spacing for Chinese characters */
  word-spacing: 0.2em;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.7; }
}

.retro-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  font-family: 'Share Tech Mono', monospace;
}

.section-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 19px;
  color: var(--accent-yellow);
  margin-bottom: 25px;
  text-shadow: 2px 2px 0 var(--bg-darker), 0 0 10px var(--accent-yellow);
  font-weight: 400;
}

.post-list {
  list-style: none;
}

.post-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.post-item:hover {
  border-color: var(--accent);
  background: rgba(183, 148, 246, 0.15);
  box-shadow: 0 0 15px rgba(183, 148, 246, 0.4);
}

.post-link {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.post-date {
  color: var(--accent-yellow);
  font-size: 14px;
  margin-right: 15px;
  text-shadow: 0 0 5px var(--accent-yellow);
}

.post-title-link {
  color: var(--text-secondary);
  font-size: 17px;
}

.post-link:hover .post-title-link {
  color: var(--accent-bright);
  text-shadow: 0 0 8px var(--accent);
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag {
  color: var(--accent-yellow);
  font-size: 15px;
  padding: 4px 8px;
  border: 1px solid var(--accent-yellow);
}

.empty-state {
  text-align: center;
  padding: 40px;
}

.retro-text {
  font-size: 20px;
  color: var(--text-dim);
  font-family: 'Share Tech Mono', monospace;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* Floating Pixelated Rose */
.floating-rose {
  position: fixed;
  bottom: -50px;
  left: -50px;
  z-index: 1000;
  pointer-events: none;
  animation: floatRose 35s ease-in-out infinite;
  will-change: transform;
}

.rose-emoji {
  font-size: 40px;
  filter: 
    grayscale(100%) 
    brightness(2) 
    contrast(1.5)
    saturate(0)
    drop-shadow(0 0 12px rgba(192, 192, 192, 0.8))
    drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  transform: rotate(-15deg) scale(1);
  animation: roseFloat 6s ease-in-out infinite;
  display: inline-block;
  /* Force pixelation */
  transform-origin: center;
  backface-visibility: hidden;
}

@keyframes floatRose {
  0% {
    left: -50px;
    bottom: -50px;
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  15% {
    left: 10%;
    bottom: 15%;
  }
  30% {
    left: 25%;
    bottom: 40%;
  }
  45% {
    left: 45%;
    bottom: 60%;
  }
  60% {
    left: 65%;
    bottom: 75%;
  }
  75% {
    left: 85%;
    bottom: 90%;
  }
  90% {
    left: calc(100vw + 50px);
    bottom: calc(100vh + 50px);
    opacity: 1;
  }
  100% {
    left: calc(100vw + 50px);
    bottom: calc(100vh + 50px);
    opacity: 0;
  }
}

@keyframes roseFloat {
  0% {
    transform: translateY(0px) rotate(-18deg) scale(1);
  }
  25% {
    transform: translateY(-8px) rotate(-12deg) scale(1.02);
  }
  50% {
    transform: translateY(-12px) rotate(-20deg) scale(1.03);
  }
  75% {
    transform: translateY(-6px) rotate(-14deg) scale(1.01);
  }
  100% {
    transform: translateY(0px) rotate(-18deg) scale(1);
  }
}

/* Floating Leaves */
.floating-leaf {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  will-change: transform;
}

.leaf-emoji {
  filter: 
    grayscale(100%) 
    brightness(1.8) 
    contrast(1.3)
    saturate(0)
    drop-shadow(0 0 8px rgba(192, 192, 192, 0.6))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  display: inline-block;
  transform-origin: center;
  backface-visibility: hidden;
}

/* Leaf 1: Small, top-right to bottom-left */
.floating-leaf-1 {
  top: -30px;
  right: 20%;
  animation: floatLeaf1 28s ease-in-out infinite;
}

.floating-leaf-1 .leaf-emoji {
  font-size: 24px;
  animation: leafSpin1 5s ease-in-out infinite;
}

@keyframes floatLeaf1 {
  0% {
    top: -30px;
    right: 20%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    top: calc(100vh + 30px);
    right: 70%;
    opacity: 0;
  }
}

@keyframes leafSpin1 {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(0.9); }
  75% { transform: rotate(270deg) scale(1.05); }
}

/* Leaf 2: Medium, left to right diagonal */
.floating-leaf-2 {
  top: 10%;
  left: -40px;
  animation: floatLeaf2 32s ease-in-out infinite 3s;
}

.floating-leaf-2 .leaf-emoji {
  font-size: 32px;
  animation: leafSpin2 6s ease-in-out infinite;
}

@keyframes floatLeaf2 {
  0% {
    top: 10%;
    left: -40px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    top: 80%;
    left: calc(100vw + 40px);
    opacity: 0;
  }
}

@keyframes leafSpin2 {
  0%, 100% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.15); }
}

/* Leaf 4: Small, straight down from top */
.floating-leaf-4 {
  top: -25px;
  left: 40%;
  animation: floatLeaf4 25s linear infinite 9s;
}

.floating-leaf-4 .leaf-emoji {
  font-size: 20px;
  animation: leafSpin4 4s ease-in-out infinite;
}

@keyframes floatLeaf4 {
  0% {
    top: -25px;
    left: 40%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    top: calc(100vh + 25px);
    left: 45%;
    opacity: 0;
  }
}

@keyframes leafSpin4 {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

/* Leaf 5: Medium, right to left wave */
.floating-leaf-5 {
  top: 30%;
  right: -35px;
  animation: floatLeaf5 30s ease-in-out infinite 12s;
}

.floating-leaf-5 .leaf-emoji {
  font-size: 28px;
  animation: leafSpin5 5.5s ease-in-out infinite;
}

@keyframes floatLeaf5 {
  0% {
    top: 30%;
    right: -35px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    top: 40%;
    right: 20%;
  }
  50% {
    top: 35%;
    right: 50%;
  }
  75% {
    top: 45%;
    right: 75%;
  }
  100% {
    top: 50%;
    right: calc(100vw + 35px);
    opacity: 0;
  }
}

@keyframes leafSpin5 {
  0%, 100% { transform: rotate(20deg) scale(1); }
  50% { transform: rotate(-20deg) scale(1.08); }
}

/* Leaf 6: Small, bottom-left to top-right */
.floating-leaf-6 {
  bottom: -30px;
  left: 15%;
  animation: floatLeaf6 34s ease-in-out infinite 15s;
}

.floating-leaf-6 .leaf-emoji {
  font-size: 22px;
  animation: leafSpin6 4.5s ease-in-out infinite;
}

@keyframes floatLeaf6 {
  0% {
    bottom: -30px;
    left: 15%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    bottom: calc(100vh + 30px);
    left: 80%;
    opacity: 0;
  }
}

@keyframes leafSpin6 {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.12); }
}


/* Mobile Header - Hidden by default on desktop */
.mobile-header {
  display: none !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-sidebar);
  border-bottom: 3px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.mobile-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 15px;
}

.mobile-profile-icon {
  flex-shrink: 0;
}

.mobile-profile-icon .profile-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.mobile-profile-icon .profile-link:hover {
  transform: scale(1.1);
}

.mobile-profile-icon .profile-image {
  width: 40px;
  height: 40px;
  margin: 0;
}

.mobile-site-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: var(--accent);
  text-shadow: 
    2px 2px 0 var(--bg-darker),
    0 0 10px var(--accent);
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  flex: 1;
}

.mobile-menu-toggle {
  background: transparent;
  border: 2px solid var(--border-color);
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: none;
  background: var(--bg-sidebar);
  border-top: 2px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-nav.active {
  display: block;
  max-height: 500px;
  overflow-y: auto;
}

.mobile-nav-section {
  padding: 20px;
  border-bottom: 1px dashed var(--border-color);
}

.mobile-nav-section:last-child {
  border-bottom: none;
}

.mobile-nav-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--accent-yellow);
  margin-bottom: 15px;
  text-shadow: 1px 1px 0 var(--bg-darker), 0 0 8px var(--accent-yellow);
  letter-spacing: 1px;
  font-weight: 400;
}

.mobile-hashtag-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-hashtag-menu li {
  margin-bottom: 10px;
}

.mobile-hashtag-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-size: 15px;
  text-transform: lowercase;
  font-family: 'Share Tech Mono', monospace;
}

.mobile-hashtag-link:hover,
.mobile-hashtag-link:active {
  color: var(--accent-yellow-bright);
  border-color: var(--accent-yellow);
  background: rgba(247, 230, 168, 0.15);
  text-shadow: 0 0 8px var(--accent-yellow);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-header {
    display: block !important;
  }

  .container {
    flex-direction: column;
  }
  
  .sidebar {
    display: none !important; /* Hide desktop sidebar on mobile */
  }
  
  .container {
    padding: 0 15px;
  }

  .main-content {
    padding: 20px 15px;
    width: 100%;
  }

  .terminal-window {
    min-height: 400px;
  }

  .terminal-body {
    padding: 25px 20px;
    font-size: 16px;
  }

  .home {
    padding: 15px;
  }
  
  .retro-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .post-title {
    font-size: 20px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h1 {
    font-size: 22px;
  }

  .post-content h2 {
    font-size: 20px;
  }

  .post-content h3 {
    font-size: 19px;
  }

  .post-content h4 {
    font-size: 18px;
  }

  .post-content h5,
  .post-content h6 {
    font-size: 17px;
  }
  
  .floating-rose {
    /* Keep visible on mobile - make it smaller */
  }
  
  .rose-emoji {
    font-size: 32px; /* Smaller on mobile for better performance */
  }

  /* Make leaves smaller on mobile */
  .floating-leaf-1 .leaf-emoji {
    font-size: 18px;
  }
  
  .floating-leaf-2 .leaf-emoji {
    font-size: 24px;
  }
  
  .floating-leaf-4 .leaf-emoji {
    font-size: 16px;
  }
  
  .floating-leaf-5 .leaf-emoji {
    font-size: 20px;
  }
  
  .floating-leaf-6 .leaf-emoji {
    font-size: 18px;
  }

  .site-title {
    font-size: 14px;
  }

  .hashtag-link {
    font-size: 15px;
  }
}

