/* Стили снежинок */
.snowflake {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 9998;
  opacity: 0.8;
  color: #ffffff;
}

/* Кнопка переключения снегопада */
.snow-toggle-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition:
    opacity 0.3s,
    background 0.2s;
  opacity: 0.7;
  color: white;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.snow-toggle-btn:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}
/* Состояние скрыта */
.snow-toggle-btn.hidden {
  display: none;
}
/* Иконка снежинки */
.snow-toggle-btn span {
  position: relative;
  display: inline-block;
}
/* Линия перечёркивания */
.snow-toggle-btn.crossed span::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: calc(100% + 4px);
  height: 2px;
  background: white;
  transform: rotate(-15deg);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.5);
}

/* Пример контента */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  z-index: 9999;
}
