/* Свеча памяти - новая версия */
.memorial-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.candle-holder {
  width: 150px;
  height: 400px;
  position: relative;
  margin: 0 auto;
}

.candle-holder *,
.candle-holder *:before,
.candle-holder *:after {
  position: absolute;
  content: "";
}

.candle {
  bottom: 0;
  width: 150px;
  height: 300px;
  border-radius: 150px / 40px;
  box-shadow: 
    inset 20px -30px 50px 0 rgba(0, 0, 0, 0.4), 
    inset -20px 0 50px 0 rgba(0, 0, 0, 0.4);
  background: linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
}

.candle:before {
  width: 145px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #d47401;
  background: radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
}

.candle:after {
  width: 34px;
  height: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  top: 14px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  background: radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
}

.thread {  
  width: 6px;
  height: 36px;
  top: -17px;
  left: 50%;
  z-index: 1;
  border-radius: 40% 40% 0 0;
  transform: translateX(-50%);
  background: linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
}

.flame {
  width: 24px;
  height: 120px;
  left: 50%;
  transform-origin: 50% 100%;
  transform: translateX(-50%);
  bottom: 100%;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(white 80%, transparent);
  animation: 
    moveFlame 6s linear infinite, 
    enlargeFlame 5s linear infinite,
    flicker 2s ease-in-out infinite;
  box-shadow: 0 0 15px 0 rgba(247, 93, 0, 0.4), 
              0 -6px 4px 0 rgba(247, 128, 0, 0.7);
}

.glow {
  width: 26px;
  height: 60px;
  border-radius: 50% 50% 35% 35%;
  left: 50%;
  top: -48px;
  transform: translateX(-50%);
  background: rgba(0, 133, 255, 0.7);
  box-shadow: 
    0 -40px 30px 0 #dc8a0c, 
    0 40px 50px 0 #dc8a0c, 
    inset 3px 0 2px 0 rgba(0, 133, 255, 0.6), 
    inset -3px 0 2px 0 rgba(0, 133, 255, 0.6);
}

.glow:before {
  width: 70%;
  height: 60%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
}

.blinking-glow {
  width: 100px;
  height: 180px;
  left: 50%;
  top: -55%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent-light);
  filter: blur(60px);
  animation: blinkIt 0.1s infinite;
}

.candle-text {
  margin-top: 30px;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
  position: relative;
  text-align: center;
}

.candle-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* Анимации */
@keyframes moveFlame {
  0%, 100% { transform: translateX(-50%) rotate(-2deg); }
  50% { transform: translateX(-50%) rotate(2deg); }
}

@keyframes enlargeFlame {
  0%, 100% { height: 120px; }
  50% { height: 140px; }
}

@keyframes blinkIt {
  50% { opacity: 0.8; }
}

@keyframes flicker {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.7; }
}

/* Стили для кнопки и счетчика */
.candle-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.candle-btn:hover {
    background: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.candle-counter {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Модальное окно благодарности */
.candle-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.candle-message {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 30px;
    animation: fadeIn 1s ease;
}