@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

/* Existing core helpers (modified for premium look) */
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #090d16;
  color: #f8fafc;
  overflow-x: hidden;
}

/* Original simple demo styling - preserved and modernized */
#root,
#app,
.aos-all {
  min-height: 60vh;
}

.aos-all {
  width: 1200px;
  max-width: 95%;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.aos-item {
  width: 100%;
  height: 220px;
}

.aos-item__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f8fafc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}

.aos-item__inner:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
  transform: translateY(-6px);
  background: rgba(30, 41, 59, 0.65);
}

.aos-item__inner h3 {
  margin: 0 0 1rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aos-item__inner span {
  font-family: 'Fira Code', 'Cascadia Code', Consolas, Monaco, monospace;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #a5b4fc;
  line-height: 1.4;
  text-align: center;
  max-width: 95%;
  word-break: break-all;
  display: inline-block;
}

/* --- Dedicated Demo Site Styling --- */

:root {
  --bg: #090d16;
  --card-bg: rgba(15, 23, 42, 0.6);
  --border-color: rgba(255, 255, 255, 0.06);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
}

/* Background Glowing Blobs */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  animation: float 25s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  left: 10%;
  width: 40vw;
  height: 40vw;
  background: var(--accent-cyan);
}

.blob-2 {
  bottom: -10%;
  right: 10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent-purple);
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 50%;
  width: 30vw;
  height: 30vw;
  background: var(--accent-blue);
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5vw, 5vh) scale(1.1);
  }
  100% {
    transform: translate(-3vw, -5vh) scale(0.9);
  }
}

/* Sticky Navigation Header */
.demo-header {
  background: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.framework-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.framework-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.framework-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.framework-nav a.active {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.github-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.github-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 6rem auto 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.badge {
  align-self: flex-start;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
}

.cta-group {
  display: flex;
  gap: 1rem;
}

.btn {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #000;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Interactive Device Mockup (Hero Graphic) */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-frame {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 189, 248, 0.1);
  position: relative;
  overflow: hidden;
}

.device-screen {
  background: #090d16;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-item {
  height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  flex-grow: 1;
}

.mockup-line-short {
  width: 40%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  margin-left: auto;
}

@media screen and (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .badge {
    align-self: center;
  }

  .cta-group {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }
}

/* Feature grid section */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.features {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.05);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Animations Presets Showcase Wall */
.showcase-wall {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.tab-btn.active {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.wall-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wall-item:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(6, 182, 212, 0.3);
}

.wall-item span {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Interactive Playground Section */
.playground {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.playground-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.playground-controls {
  padding: 2.5rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.control-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
}

.control-group label span {
  color: var(--accent-cyan);
}

.control-group select {
  background: rgba(9, 13, 22, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.control-group select:focus {
  border-color: var(--accent-cyan);
}

.control-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.control-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  transition: transform 0.1s;
}

.control-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.control-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
  user-select: none;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-cyan);
}

.playground-preview {
  padding: 2.5rem;
  background: rgba(9, 13, 22, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.preview-box {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.3s;
}

.preview-box h4 {
  margin: 0 0 0.5rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.preview-box p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
}

@media screen and (max-width: 900px) {
  .playground-container {
    grid-template-columns: 1fr;
  }
  .playground-controls {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

/* Interactive Code Generator */
.code-generator {
  max-width: 1200px;
  margin: 4rem auto 6rem auto;
  padding: 0 2rem;
}

.code-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
  background: rgba(15, 23, 42, 0.4);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.code-tabs {
  display: flex;
  gap: 0.5rem;
}

.code-tab {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.code-tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.code-tab.active {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.code-body {
  margin: 0;
  padding: 1.5rem;
  overflow-x: auto;
  background: #06090f;
}

.code-body pre {
  margin: 0;
  font-family: 'Fira Code', 'Cascadia Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e2e8f0;
}

/* Footer styling */
.demo-footer {
  background: #06090f;
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 0.85rem;
}

/* Shared Demo Page Elements */
.demo-info {
  text-align: center;
  max-width: 800px;
  margin: 4.5rem auto 2rem auto;
  padding: 2.5rem 2rem;
  background: rgba(30, 41, 59, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.demo-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.framework-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.react-badge {
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.vue-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.demo-info .btn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #090d16;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
  border: none;
}

.demo-info .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

.btn-danger {
  background: #ef4444;
  color: white;
}

.btn-danger:hover {
  background: #dc2626;
}

/* Loading Spinner & Overlay */
.demo-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 2rem;
  min-height: 50vh;
  color: var(--text-secondary);
}

.demo-loader .spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-cyan);
  animation: spin 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Language Switching Rules */
html:not([lang="en"]) .lang-en {
  display: none !important;
}
html[lang="en"] .lang-zh {
  display: none !important;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 0.8rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

/* AI Gemini & Cleanups */
#root,
#app {
  opacity: 0;
}

.footer-copy a.license-link {
  color: #60a5fa;
  text-decoration: none;
}

.footer-copy a.license-link:hover {
  text-decoration: underline;
}

.footer-gemini-note {
  opacity: 0.8;
  margin-left: 0.5rem;
  border-left: 1px solid var(--border-color);
  padding-left: 0.5rem;
}

.badge-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge-container .badge {
  margin-bottom: 0;
}

.badge-gemini {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border-color: rgba(139, 92, 246, 0.3);
  text-transform: none;
}

.mockup-avatar-purple-blue {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue)) !important;
}

.mockup-avatar-blue-cyan {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan)) !important;
}

.control-row-centered {
  align-items: center;
  margin-top: 0.5rem;
}

.btn-replay {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.wall-item-title {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wall-item-subtitle {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

