:root {
      --bg-main: #fffefc;
      --bg-soft-yellow: #fff7b8;
      --bg-card: #fffef8;
      --border-yellow: #ffe066;
      --accent-pink: #00376c;
      --text-main: #3a3a3a;
      --text-soft: #666;
      --text-nav: #5a5a5a;
      --text-footer: #3a4a3a;
      --shadow-soft: 0 8px 24px rgba(0,0,0,0.06);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background-color: var(--bg-soft-yellow);
      color: var(--text-main);
      line-height: 1.6;
    }

 
    header {
      background-color: white;
      padding: 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    }

    .logo { font-size: 1.7rem; font-weight: bold; color: var(--accent-pink); }
    .logo a { text-decoration: none; color: inherit; }

   nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
}

nav ul li {
  position: relative;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  z-index: 999;

  background: white;
  border-radius: 12px;
}

nav ul li:hover > ul {
  display: block;
}

.dropdown-inner {
  background-color: white;
  padding: 8px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  min-width: 190px;
  border: 1px solid var(--border-yellow);
}

nav ul li ul li a {
  display: block;
  padding: 9px 18px;
  color: var(--text-nav);
  font-weight: normal;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

nav ul li ul li a:hover {
  background-color: var(--bg-soft-yellow);
  color: var(--accent-pink);
}

nav a {
  text-decoration: none;
  color: var(--text-nav);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.25s ease;
}

nav > ul > li > a {
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--accent-pink);
}

nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: var(--border-yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav > ul > li > a:hover::after,
nav > ul > li > a.active::after {
  transform: scaleX(1);
}
    
    @keyframes bgShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes ripple1 {
      0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 0.18; }
      50%  { transform: translate(-50%,-50%) scale(1.4); opacity: 0.08; }
      100% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.18; }
    }

    @keyframes ripple2 {
      0%   { transform: translate(-50%,-50%) scale(1.2); opacity: 0.12; }
      50%  { transform: translate(-50%,-50%) scale(0.7); opacity: 0.22; }
      100% { transform: translate(-50%,-50%) scale(1.2); opacity: 0.12; }
    }

    @keyframes ripple3 {
      0%   { transform: translate(-50%,-50%) scale(1.0); opacity: 0.10; }
      33%  { transform: translate(-50%,-50%) scale(1.5); opacity: 0.05; }
      66%  { transform: translate(-50%,-50%) scale(0.9); opacity: 0.15; }
      100% { transform: translate(-50%,-50%) scale(1.0); opacity: 0.10; }
    }

    @keyframes starFloat {
      0%,100% { opacity: 0.15; transform: translateY(0px) scale(1); }
      50%     { opacity: 0.45; transform: translateY(-6px) scale(1.15); }
    }

    @keyframes waveMove {
      0%   { transform: translateX(0) scaleY(1); }
      50%  { transform: translateX(-40px) scaleY(1.08); }
      100% { transform: translateX(0) scaleY(1); }
    }

    @keyframes flameDance {
      0%   { transform: scaleX(1) scaleY(1) rotate(-1deg); }
      25%  { transform: scaleX(0.9) scaleY(1.08) rotate(1.5deg); }
      50%  { transform: scaleX(1.05) scaleY(0.95) rotate(-0.5deg); }
      75%  { transform: scaleX(0.95) scaleY(1.05) rotate(1deg); }
      100% { transform: scaleX(1) scaleY(1) rotate(-1deg); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes newCandleIn {
      0%   { transform: scale(0.5) translateY(20px); opacity: 0; }
      70%  { transform: scale(1.08) translateY(-4px); opacity: 1; }
      100% { transform: scale(1) translateY(0); opacity: 1; }
    }

    @keyframes counterUp {
      from { transform: scale(0.8); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    @keyframes flicker {
      0%, 100% { transform: scale(1) rotate(-2deg); opacity: 1; }
      50% { transform: scale(1.08) rotate(2deg); opacity: 0.85; }
    }

    @keyframes glowPulse {
      0%,100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
      50% { transform: translateX(-50%) scale(1.25); opacity: 1; }
    }

    /* ===== PAGE WRAPPER ===== */
    .page-wrapper {
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .page-wrapper::before {
      content: '';
      position: fixed;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,247,184,0.96) 0%, rgba(255,254,248,0.72) 48%, rgba(255,247,184,0.98) 100%);
      pointer-events: none;
      z-index: -1;
    }

 
    .lichtermeer-hero {
      width: 100%;
      background: linear-gradient(135deg, #001a3a 0%, #00376c 40%, #002d5a 70%, #001a3a 100%);
      background-size: 300% 300%;
      animation: bgShift 14s ease-in-out infinite;
      border-radius: 22px;
      border: 2px solid #002d5a;
      box-shadow: 0 12px 40px rgba(0,23,60,0.35);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 30px;
    }

    .lichtermeer-hero .orb-left {
      position: absolute; top: 20%; left: 10%;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(0,79,154,0.30) 0%, transparent 70%);
      border-radius: 50%;
      animation: ripple1 11s ease-in-out infinite;
      pointer-events: none; z-index: 0;
    }

    .lichtermeer-hero .orb-right {
      position: absolute; top: 30%; right: 8%;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(255,247,184,0.10) 0%, transparent 70%);
      border-radius: 50%;
      animation: ripple2 9s ease-in-out infinite;
      pointer-events: none; z-index: 0;
    }

    .lichtermeer-hero .orb-center {
      position: absolute; top: 50%; left: 50%;
      width: 500px; height: 200px;
      background: radial-gradient(ellipse, rgba(0,79,154,0.22) 0%, transparent 70%);
      border-radius: 50%;
      animation: ripple3 12s ease-in-out infinite;
      pointer-events: none; z-index: 0;
    }

    .lichtermeer-hero .orb-bottom {
      position: absolute; bottom: 10%; left: 30%;
      width: 380px; height: 160px;
      background: radial-gradient(ellipse, rgba(255,224,102,0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: ripple1 15s ease-in-out infinite reverse;
      pointer-events: none; z-index: 0;
    }

    .star-particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(255,247,184,0.7);
      border-radius: 50%;
      animation: starFloat var(--dur, 4s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
      pointer-events: none;
      z-index: 0;
    }

    .wave-overlay {
      position: absolute;
      bottom: 0;
      left: -10%;
      right: -10%;
      height: 60px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,30 C200,60 400,0 600,30 C800,60 1000,0 1200,30 L1200,60 L0,60 Z' fill='rgba(0,23,60,0.35)'/%3E%3C/svg%3E") repeat-x bottom;
      background-size: 600px 60px;
      animation: waveMove 6s ease-in-out infinite;
      pointer-events: none;
      z-index: 1;
      border-radius: 0 0 22px 22px;
    }

    .hero-title-block {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 36px 20px 14px;
    }

    .hero-title-block h1 {
      font-size: 1.5rem;
      color: #fff7b8;
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
      letter-spacing: 0.03em;
      margin-bottom: 8px;
    }

    .hero-title-block p {
      color: rgba(255,247,184,0.78);
      font-size: 0.92rem;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .counter-bar {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      padding: 10px 20px 0;
    }

    .counter-item {
      text-align: center;
      animation: counterUp 0.6s ease both;
    }

    .counter-item .counter-num {
      font-size: 1.6rem;
      font-weight: bold;
      color: #ffe066;
      text-shadow: 0 2px 8px rgba(255,200,50,0.4);
    }

    .counter-item .counter-label {
      font-size: 0.76rem;
      color: rgba(255,247,184,0.70);
      margin-top: 2px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .candles-stage {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1100px;
      padding: 28px 20px 68px;
      box-sizing: border-box;
    }

    .candle-row-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      width: 100%;
      overflow: visible;
      z-index: 1;
    }

    .candle-row-wrapper:nth-child(1) { transform: translateY(12px); }
    .candle-row-wrapper:nth-child(2) { transform: translateY(-6px); }
    .candle-row-wrapper:nth-child(3) { transform: translateY(16px); }

    .candle-row-wrapper:hover { z-index: 50; }

    .row-arrow {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid rgba(255,247,184,0.55);
      background: rgba(0,23,60,0.70);
      color: #fff7b8;
      font-size: 1.15rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
      z-index: 5;
      user-select: none;
      margin: 0 8px;
    }

    .row-arrow:hover {
      background: rgba(0,55,108,0.85);
      border-color: #ffe066;
      transform: scale(1.1);
    }

    .row-arrow:disabled {
      opacity: 0.3;
      cursor: default;
      transform: none;
    }

    .row-viewport {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .row-track {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 18px;
      padding: 44px 16px 22px;
      min-height: 245px;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }

    .lit-candle {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      position: relative;
      transition: transform 0.22s ease, filter 0.22s ease;
      flex-shrink: 0;
      padding: 0 2px;
      z-index: 1;
    }

    .lit-candle.wave-high { margin-bottom: 34px; }
    .lit-candle.wave-mid-high { margin-bottom: 22px; }
    .lit-candle.wave-center { margin-bottom: 10px; }
    .lit-candle.wave-mid-low { margin-top: 10px; }
    .lit-candle.wave-low { margin-top: 22px; }

    .lit-candle:hover {
      transform: translateY(-6px) scale(1.06);
      filter: drop-shadow(0 6px 14px rgba(0,55,108,0.22));
      z-index: 100;
    }

    .lit-candle.new-candle .candle-svg-wrap {
      animation: newCandleIn 0.6s ease forwards;
    }

    .candle-svg-wrap {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: visible;
    }

    .candle-svg {
      display: block;
      filter: drop-shadow(0 3px 8px rgba(0,55,108,0.25));
    }

    .candle-glow {
      position: absolute;
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,224,102,0.6) 0%, rgba(255,200,50,0.2) 50%, transparent 70%);
      animation: glowPulse var(--flicker-dur, 1.8s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
      pointer-events: none;
    }

    .candle-flame-svg {
      animation: flameDance var(--flicker-dur, 1.8s) ease-in-out infinite;
      animation-delay: var(--delay, 0s);
    }

    .candle-name-label {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.85);
      margin-top: 5px;
      max-width: 70px;
      text-align: center;
      word-break: break-word;
      line-height: 1.25;
      opacity: 0.9;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }

 
    #candleFloatTooltip {
      position: fixed;
      background: var(--bg-soft-yellow);
      color: var(--accent-pink);
      font-size: 0.82rem;
      font-style: italic;
      padding: 10px 14px;
      border-radius: 12px;
      max-width: 260px;
      min-width: 120px;
      white-space: normal;
      text-align: center;
      line-height: 1.5;
      box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,55,108,0.15);
      pointer-events: none;
      z-index: 99999;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.18s ease, transform 0.18s ease;
      border: 1px solid var(--border-yellow);
    }

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

    #candleFloatTooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: var(--bg-soft-yellow);
    }

    #candleFloatTooltip.below::after {
      top: auto;
      bottom: 100%;
      border-top-color: transparent;
      border-bottom-color: var(--bg-soft-yellow);
    }

  
    .section-divider {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px 80px;
    }

    .forum-section {
      margin-top: 60px;
    }

    .section-title {
      text-align: center;
      color: var(--accent-pink);
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-soft);
      font-size: 1.05rem;
      max-width: 750px;
      margin: 0 auto 40px auto;
    }

    .new-posts-banner {
      display: flex;
      align-items: center;
      gap: 16px;
      background: linear-gradient(135deg, #001a3a, #00376c);
      border-radius: 16px;
      padding: 18px 24px;
      margin-bottom: 28px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .new-posts-banner:hover { transform: translateY(-2px); }

    .new-posts-banner .banner-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .new-posts-banner .banner-text { flex: 1; }

    .new-posts-banner .banner-title {
      color: #fff7b8;
      font-weight: bold;
      font-size: 1.05rem;
    }

    .new-posts-banner .banner-sub {
      color: rgba(255,247,184,0.75);
      font-size: 0.88rem;
      margin-top: 2px;
    }

    .new-posts-banner .banner-btn {
      padding: 9px 20px;
      background: #ffe066;
      border: none;
      border-radius: 999px;
      font-weight: bold;
      font-size: 0.88rem;
      cursor: pointer;
      color: #00376c;
      transition: 0.2s;
      white-space: nowrap;
    }

    .new-posts-banner .banner-btn:hover { background: #fff7b8; }

    .forum-filter-bar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
      align-items: center;
    }

    .filter-label {
      font-weight: 600;
      color: var(--text-soft);
      font-size: 0.9rem;
    }

    .filter-btn {
      padding: 8px 18px;
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      background: var(--bg-soft-yellow);
      cursor: pointer;
      font-size: 0.88rem;
      font-weight: 600;
      transition: 0.2s;
    }

    .filter-btn.active, .filter-btn:hover {
      background: var(--accent-pink);
      border-color: var(--accent-pink);
      color: white;
    }

    .forum-search {
      margin-left: auto;
      padding: 9px 16px;
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      font-size: 0.9rem;
      outline: none;
      background: var(--bg-card);
      transition: border-color 0.2s;
      min-width: 210px;
    }

    .forum-search:focus { border-color: var(--accent-pink); }

    .forum-posts {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-bottom: 80px;
    }

    .forum-post {
      background: white;
      border: 2px solid var(--border-yellow);
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .forum-post:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    }

    .forum-post.new-post {
      border-color: #ffe066;
      box-shadow: 0 0 0 3px rgba(255,224,102,0.4), var(--shadow-soft);
      animation: fadeIn 0.5s ease;
    }

    .forum-post.deep-link-highlight {
      border-color: var(--accent-pink);
      box-shadow: 0 0 0 4px rgba(0,55,108,0.14), 0 12px 32px rgba(0,55,108,0.14);
    }

    .forum-post-header {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 24px;
      background: var(--bg-soft-yellow);
      border-bottom: 2px solid var(--border-yellow);
    }

    .post-avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 2px solid var(--accent-pink);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--border-yellow);
      font-size: 1.5rem;
      overflow: hidden;
    }

    .post-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .post-author-info { flex: 1; min-width: 0; }

    .post-author-name {
      font-weight: bold;
      color: var(--accent-pink);
      font-size: 1rem;
    }

    .post-author-meta {
      font-size: 0.82rem;
      color: var(--text-soft);
    }

    .post-candle-badge {
      font-size: 1.5rem;
      padding: 6px 12px;
      background: white;
      border-radius: 999px;
      border: 1px solid var(--border-yellow);
      flex-shrink: 0;
    }

    .post-date {
      font-size: 0.8rem;
      color: var(--text-soft);
      white-space: nowrap;
    }

    .forum-post-body { padding: 22px 24px; }

    .post-title {
      font-size: 1.12rem;
      font-weight: bold;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .post-excerpt {
      color: var(--text-soft);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .post-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 14px;
    }

    .post-tag {
      padding: 4px 12px;
      background: var(--bg-soft-yellow);
      border: 1px solid var(--border-yellow);
      border-radius: 999px;
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    .forum-post-footer {
      padding: 14px 24px;
      border-top: 1px solid var(--border-yellow);
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .post-action-btn {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--text-soft);
      font-size: 0.88rem;
      padding: 7px 12px;
      border-radius: 10px;
      transition: 0.2s;
      font-family: inherit;
    }

    .post-action-btn:hover {
      background: var(--bg-soft-yellow);
      color: var(--accent-pink);
    }

    .post-action-btn.liked { color: var(--accent-pink); }

    .post-action-btn .icon { font-size: 1.05rem; }

    .post-expand-btn {
      margin-left: auto;
      padding: 8px 18px;
      background: var(--bg-soft-yellow);
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 600;
      transition: 0.2s;
      font-family: inherit;
    }

    .post-expand-btn:hover {
      background: var(--accent-pink);
      color: white;
      border-color: var(--accent-pink);
    }

    .comments-section {
      display: none;
      padding: 0 24px 22px;
      border-top: 1px dashed var(--border-yellow);
    }

    .comments-section.open {
      display: block;
      animation: fadeIn 0.3s ease;
    }

    .comment {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid #f5f0d0;
    }

    .comment:last-of-type { border-bottom: none; }

    .comment-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--border-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .comment-body { flex: 1; }

    .comment-author {
      font-weight: bold;
      font-size: 0.88rem;
      color: var(--accent-pink);
    }

    .comment-text {
      font-size: 0.9rem;
      color: var(--text-soft);
      margin-top: 3px;
      line-height: 1.5;
    }

    .comment-time {
      font-size: 0.76rem;
      color: #bbb;
      margin-top: 4px;
    }

    .comment-input-row {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }

    .comment-input {
      flex: 1;
      padding: 10px 14px;
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      font-size: 0.9rem;
      outline: none;
      background: var(--bg-card);
      transition: border-color 0.2s;
      font-family: inherit;
    }

    .comment-input:focus { border-color: var(--accent-pink); }

    .comment-submit {
      padding: 10px 20px;
      background: var(--accent-pink);
      color: white;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      font-weight: bold;
      font-size: 0.88rem;
      transition: 0.2s;
      font-family: inherit;
    }

    .comment-submit:hover { transform: translateY(-1px); }

  
    .cta-box {
      background: linear-gradient(135deg, #001a3a, #00376c);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      margin-top: 50px;
      box-shadow: 0 12px 40px rgba(0,55,108,0.25);
    }

    .cta-box h3 {
      color: #fff7b8;
      font-size: 1.6rem;
      margin-bottom: 12px;
    }

    .cta-box p {
      color: rgba(255,247,184,0.80);
      font-size: 1rem;
      margin-bottom: 24px;
      line-height: 1.7;
    }

 
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--accent-pink);
      color: white;
      padding: 14px 22px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,55,108,0.3);
      transform: translateY(100px);
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 9999;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .toast.show {
      transform: translateY(0);
      opacity: 1;
    }

 
    .steckbrief-section {
      max-width: 1100px;
      margin: 70px auto 80px;
      padding: 0 20px;
    }


    .form-card {
      background: white;
      border: 2px solid var(--border-yellow);
      border-radius: 22px;
      box-shadow: var(--shadow-soft);
      padding: 40px 36px;
    }

    .progress-bar-wrapper { margin-bottom: 36px; }

    .progress-steps {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 8px;
    }

    .progress-steps::before {
      content: '';
      position: absolute;
      top: 18px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--border-yellow);
      z-index: 0;
    }

    .progress-fill {
      position: absolute;
      top: 18px;
      left: 0;
      height: 3px;
      background: var(--accent-pink);
      transition: width 0.4s ease;
      z-index: 1;
    }

    .step-dot {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--bg-soft-yellow);
      border: 3px solid var(--border-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 0.9rem;
      color: var(--text-soft);
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
      cursor: default;
    }

    .step-dot.active { background: var(--accent-pink); border-color: var(--accent-pink); color: white; }
    .step-dot.done { background: #ffe066; border-color: #f5c842; color: var(--text-main); }

    .step-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
      color: var(--text-soft);
      margin-top: 6px;
    }

    .step-labels span { text-align: center; flex: 1; }

    .form-step { display: none; }
    .form-step.active { display: block; animation: fadeIn 0.35s ease; }

    .form-step h3 { color: var(--accent-pink); font-size: 1.3rem; margin-bottom: 20px; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-grid.single { grid-template-columns: 1fr; }

    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-weight: 600; font-size: 0.92rem; color: var(--text-main); }
    .form-group label .required { color: var(--accent-pink); margin-left: 2px; }

    .form-group input, .form-group select, .form-group textarea {
      padding: 11px 14px;
      border: 2px solid var(--border-yellow);
      border-radius: 10px;
      font-size: 0.98rem;
      font-family: inherit;
      background: var(--bg-card);
      color: var(--text-main);
      transition: border-color 0.2s ease;
      outline: none;
    }

    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--accent-pink);
    }

    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group .hint { font-size: 0.82rem; color: var(--text-soft); }

    /* Foto-Upload */
    .photo-upload-area {
      border: 3px dashed var(--border-yellow);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      background: var(--bg-card);
      position: relative;
    }

    .photo-upload-area:hover, .photo-upload-area.dragover {
      border-color: var(--accent-pink);
      background: #f0f5ff;
    }

    .photo-upload-area input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .photo-upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 8px; }
    .photo-upload-area p { color: var(--text-soft); font-size: 0.95rem; }
    .photo-upload-area .upload-hint { font-size: 0.8rem; color: #aaa; margin-top: 4px; }

    .photo-preview-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

    .photo-preview-item { position: relative; width: 90px; height: 90px; }

    .photo-preview-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid var(--border-yellow);
    }

    .photo-preview-item .remove-photo {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 22px;
      height: 22px;
      background: var(--accent-pink);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Gefühlsauswahl */
    .feeling-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

    .feeling-chip {
      padding: 8px 16px;
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      cursor: pointer;
      font-size: 0.9rem;
      background: var(--bg-soft-yellow);
      transition: all 0.2s ease;
      user-select: none;
    }

    .feeling-chip:hover { border-color: var(--accent-pink); }
    .feeling-chip.selected { background: var(--accent-pink); border-color: var(--accent-pink); color: white; }

    /* Kerzen-Auswahl */
    .candle-picker { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

    .candle-option {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      border: 2px solid var(--border-yellow);
      border-radius: 14px;
      cursor: pointer;
      background: var(--bg-card);
      transition: all 0.2s ease;
      font-size: 0.85rem;
      color: var(--text-soft);
      min-width: 80px;
    }

    .candle-option:hover { border-color: var(--accent-pink); }
    .candle-option.selected { border-color: var(--accent-pink); background: #f0f5ff; }

    .candle-color-preview {
      width: 28px;
      height: 52px;
      border-radius: 4px 4px 2px 2px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .candle-color-preview .cc-flame {
      width: 10px;
      height: 14px;
      border-radius: 50% 50% 30% 30%;
      margin-bottom: -2px;
      flex-shrink: 0;
    }

    .candle-color-preview .cc-body { width: 100%; flex: 1; border-radius: 3px 3px 0 0; }
    .candle-color-preview .cc-base { width: calc(100% + 6px); height: 7px; border-radius: 2px; }

    /* Zitat-Box */
    .quote-box {
      background: var(--bg-soft-yellow);
      border-left: 4px solid var(--accent-pink);
      border-radius: 0 12px 12px 0;
      padding: 16px 20px;
      margin-top: 10px;
      font-style: italic;
      color: var(--text-soft);
      font-size: 1rem;
    }

    .quote-refresh-btn {
      margin-top: 10px;
      padding: 8px 18px;
      background: var(--bg-soft-yellow);
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      cursor: pointer;
      font-size: 0.88rem;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .quote-refresh-btn:hover { background: var(--accent-pink); color: white; border-color: var(--accent-pink); }

    /* Anonym-Toggle */
    .toggle-row { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
    .toggle { position: relative; width: 48px; height: 26px; }
    .toggle input { opacity: 0; width: 0; height: 0; }

    .toggle-slider {
      position: absolute;
      inset: 0;
      background: #ddd;
      border-radius: 999px;
      cursor: pointer;
      transition: 0.3s;
    }

    .toggle-slider::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      left: 3px;
      bottom: 3px;
      background: white;
      border-radius: 50%;
      transition: 0.3s;
    }

    .toggle input:checked + .toggle-slider { background: var(--accent-pink); }
    .toggle input:checked + .toggle-slider::before { transform: translateX(22px); }
    .toggle-label { font-size: 0.92rem; color: var(--text-soft); }

    /* Formular-Navigation */
    .form-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }

    .btn-primary {
      padding: 13px 28px;
      background: var(--accent-pink);
      color: white;
      border: none;
      border-radius: 999px;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.2s;
      font-family: inherit;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,55,108,0.3); }

    .btn-secondary {
      padding: 13px 28px;
      background: var(--bg-soft-yellow);
      color: var(--text-main);
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.2s;
      font-family: inherit;
    }

    .btn-secondary:hover { background: var(--border-yellow); }

    /* Vorschau-Karte */
    .preview-card {
      background: var(--bg-card);
      border: 2px solid var(--border-yellow);
      border-radius: 18px;
      padding: 28px;
      box-shadow: var(--shadow-soft);
    }

    .preview-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

    .preview-avatar-placeholder, .preview-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid var(--accent-pink);
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--border-yellow);
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .preview-name { font-weight: bold; color: var(--accent-pink); font-size: 1.05rem; }
    .preview-meta { font-size: 0.85rem; color: var(--text-soft); }
    .preview-candle { font-size: 2rem; margin-bottom: 10px; }

    .preview-quote-text {
      font-style: italic;
      color: var(--text-soft);
      font-size: 1rem;
      border-left: 3px solid var(--accent-pink);
      padding-left: 12px;
      margin-bottom: 14px;
    }

    .preview-story { color: var(--text-soft); font-size: 0.95rem; line-height: 1.65; margin-bottom: 14px; }

    .preview-feelings { display: flex; flex-wrap: wrap; gap: 6px; }

    .preview-feeling-tag {
      padding: 4px 12px;
      background: var(--bg-soft-yellow);
      border: 1px solid var(--border-yellow);
      border-radius: 999px;
      font-size: 0.8rem;
      color: var(--text-soft);
    }

    /* Erfolgs-Meldung */
    .success-message {
      display: none;
      text-align: center;
      padding: 50px 30px;
      animation: fadeIn 0.5s ease;
    }

    .success-message.visible { display: block; }

    .success-icon {
      font-size: 4rem;
      margin-bottom: 20px;
      animation: flicker 2s ease-in-out infinite;
    }

    .success-message h3 { color: var(--accent-pink); font-size: 1.8rem; margin-bottom: 14px; }
    .success-message p { color: var(--text-soft); font-size: 1rem; max-width: 500px; margin: 0 auto 24px; line-height: 1.7; }

    /* Erinnerungsobjekte */
    .memory-objects { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

    .memory-obj {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border: 2px solid var(--border-yellow);
      border-radius: 999px;
      cursor: pointer;
      background: var(--bg-soft-yellow);
      font-size: 0.88rem;
      transition: 0.2s ease;
    }

    .memory-obj:hover, .memory-obj.selected {
      background: var(--accent-pink);
      border-color: var(--accent-pink);
      color: white;
    }

    /* ===== FOOTER ===== */
    footer {
      background-color: var(--bg-soft-yellow);
      color: var(--text-footer);
      padding: 50px 20px 30px;
      margin-top: 0;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    .footer-column h3 {
      color: var(--accent-pink);
      margin-bottom: 14px;
      font-size: 1.1rem;
    }

    .footer-column p, .footer-column li, .footer-column a {
      color: var(--text-footer);
      font-size: 0.98rem;
      line-height: 1.7;
      text-decoration: none;
    }

    .footer-column ul { list-style: none; }

    .footer-column a:hover {
      text-decoration: underline;
      color: var(--accent-pink);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 30px auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(90,74,0,0.2);
      text-align: center;
      font-size: 0.95rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 800px) {
      header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
      }

      .hero-title-block h1 { font-size: 2rem; }
      .forum-filter-bar { flex-direction: column; align-items: flex-start; }
      .forum-search { margin-left: 0; width: 100%; }
      .counter-bar { gap: 20px; }
      .form-grid { grid-template-columns: 1fr; }

      .row-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
      }

      .row-track {
        gap: 12px;
        min-height: 210px;
      }

      .lit-candle {
        width: 64px;
      }

      .candle-name-label {
        max-width: 60px;
        font-size: 0.66rem;
      }
    }

    @media (max-width: 500px) {
      .progress-steps { gap: 0; }
      .step-labels span { font-size: 0.68rem; }
    }

/* ---- Weiterer ausgelagerter Style-Block ---- */

header {
  background-color: white;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.logo {
  margin-left: -25px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 18px;
  z-index: 999;
}

.dropdown-inner {
  background-color: white;
  padding: 8px 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  min-width: 190px;
  border: 1px solid var(--border-yellow);
}

nav ul li ul li a {
  display: block;
  padding: 9px 18px;
  color: var(--text-nav);
  font-weight: normal;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

nav ul li ul li a:hover {
  background-color: var(--bg-soft-yellow);
  color: var(--accent-pink);
}

nav a {
  text-decoration: none;
  color: var(--text-nav);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color 0.25s ease;
}

nav > ul > li > a {
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--accent-pink);
}

nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: var(--border-yellow);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: 1001;
}

nav > ul > li > a:hover::after,
nav > ul > li > a.active::after {
  transform: scaleX(1);
}

@media (max-width: 800px) {
  header {
    padding: 16px 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .logo {
    margin-left: 0;
  }

  .logo img {
    height: 45px !important;
  }
}

/* Einheitliche Textgrößen – Abschlusskorrektur */
body { font-family: 'Segoe UI', Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; }
nav a { font-size: 0.97rem; }
.hero-title-block h1, .hero h1 { font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.18; }
.hero-title-block p, .hero p, .intro p, .form-intro p, .forum-intro p, .candle-intro p, .forum-card p { font-size: 1.05rem; line-height: 1.75; }
section h2, .section-title, .form-title, .forum-title { font-size: clamp(1.75rem, 2.6vw, 2.1rem); line-height: 1.25; }
.card h3, .forum-card h3, .step-title { font-size: 1.22rem; line-height: 1.3; }
.counter-label, .candle-name, .form-help, .helper-text, .small-text { font-size: 0.9rem; line-height: 1.5; }
button, .btn, .btn-primary, .btn-secondary, input, textarea, select { font-size: 1rem; }
.footer-column p, .footer-column li, .footer-column a { font-size: 0.97rem; line-height: 1.75; }



.footer-phone {
  color: var(--text-footer);
  cursor: default;
  text-decoration: none;
}


.forum-shortcut-row {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: -4px auto 26px;
  padding: 0 20px;
}

.forum-footer-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  padding: 13px 28px;
  border: 2px solid var(--border-yellow);
  border-radius: 999px;
  background: var(--bg-soft-yellow);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.forum-footer-shortcut:hover,
.forum-footer-shortcut:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,55,108,0.3);
  outline: none;
}

@media (max-width: 720px) {
  .forum-shortcut-row {
    margin-top: 0;
  }

  .forum-footer-shortcut {
    width: 100%;
    max-width: 320px;
  }
}
