/*
 * ========================================================
 * BEREKETE TV CHRISTMAS THEME
 * Complete Christmas styling package with feature flag support
 * ========================================================
 */

/* Christmas CSS Variables */
:root {
  --christmas-red: #c41e3a;
  --christmas-green: #2f5233;
  --christmas-gold: #ffd700;
  --christmas-white: #ffffff;
  --snow-white: #f8f9fa;
  --holly-green: #355e3b;
  --berry-red: #dc143c;
  --pine-green: #01796f;
}

/* ===============================================
   CHRISTMAS BUTTON ENHANCEMENTS
   =============================================== */

/* Christmas Gradient Backgrounds */
.christmas-gradient-primary {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 50%, var(--christmas-red) 100%);
}

.christmas-gradient-secondary {
  background: linear-gradient(135deg, var(--christmas-green) 0%, var(--holly-green) 50%, var(--pine-green) 100%);
}

.christmas-gradient-gold {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 50%, var(--christmas-gold) 100%);
}

/* Main Theme Button Christmas Enhancement */
.christmas-theme .theme-btn {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 50%, var(--christmas-red) 100%) !important;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3),
    0 0 20px rgba(255, 215, 0, 0.2);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.christmas-theme .theme-btn::before {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 50%, var(--christmas-gold) 100%) !important;
}

.christmas-theme .theme-btn::after {
  content: "✨";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.7;
  animation: sparkle 2s infinite ease-in-out;
}

.christmas-theme .theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4),
    0 0 30px rgba(255, 215, 0, 0.3);
  border-color: var(--christmas-gold);
}

.christmas-theme .theme-btn:hover::after {
  animation: sparkle-fast 0.5s infinite ease-in-out;
}

/* Video Buttons Christmas Enhancement */
.christmas-theme .video-btn {
  background: radial-gradient(circle, var(--christmas-red) 0%, var(--berry-red) 70%);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3),
    0 4px 15px rgba(196, 30, 58, 0.3);
  border: 3px solid var(--christmas-gold);
  position: relative;
}

.christmas-theme .video-btn::before {
  content: "🎄";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  z-index: 5;
  animation: bounce 2s infinite;
}

.christmas-theme .video-btn:hover {
  background: radial-gradient(circle, var(--christmas-gold) 0%, #ffed4e 70%);
  transform: scale(1.1);
}

/* Array Navigation Buttons */
.christmas-theme .array-prev,
.christmas-theme .array-next,
.christmas-theme button.array-prev,
.christmas-theme button.array-next {
  background: linear-gradient(135deg, var(--christmas-green) 0%, var(--holly-green) 100%) !important;
  border: 2px solid var(--christmas-gold) !important;
  color: var(--christmas-white) !important;
  box-shadow: 0 3px 10px rgba(47, 82, 51, 0.4);
  position: relative;
  overflow: hidden;
}

.christmas-theme .array-prev::before,
.christmas-theme .array-next::before {
  content: "❄️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  opacity: 0.3;
  z-index: 0;
}

.christmas-theme .array-prev:hover,
.christmas-theme .array-next:hover {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%) !important;
  color: var(--christmas-green) !important;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Back to Top Button */
.christmas-theme .back-to-top,
.christmas-theme #back-top {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 100%) !important;
  border: 3px solid var(--christmas-gold) !important;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3),
    0 0 20px rgba(255, 215, 0, 0.2);
  position: relative;
}

.christmas-theme .back-to-top::before,
.christmas-theme #back-top::before {
  content: "🎁";
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 12px;
  z-index: 5;
  animation: rotate 3s linear infinite;
}

.christmas-theme .back-to-top:hover,
.christmas-theme #back-top:hover {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%) !important;
  color: var(--christmas-red) !important;
  transform: translateY(-3px) scale(1.1);
}

/* Bootstrap Button Enhancements */
.christmas-theme .btn {
  position: relative;
  overflow: hidden;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.christmas-theme .btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.christmas-theme .btn:hover::before {
  animation: shine 0.6s ease-in-out;
}

/* Primary Button Christmas Theme */
.christmas-theme .btn-primary {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 100%) !important;
  border-color: var(--christmas-gold) !important;
  box-shadow: 0 3px 10px rgba(196, 30, 58, 0.3);
}

.christmas-theme .btn-primary:hover {
  background: linear-gradient(135deg, var(--berry-red) 0%, var(--christmas-red) 100%) !important;
  border-color: var(--christmas-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

/* Secondary Button Christmas Theme */
.christmas-theme .btn-secondary {
  background: linear-gradient(135deg, var(--christmas-green) 0%, var(--holly-green) 100%) !important;
  border-color: var(--christmas-gold) !important;
  color: var(--christmas-white) !important;
  box-shadow: 0 3px 10px rgba(47, 82, 51, 0.3);
}

.christmas-theme .btn-secondary:hover {
  background: linear-gradient(135deg, var(--holly-green) 0%, var(--pine-green) 100%) !important;
  color: var(--christmas-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 82, 51, 0.4);
}

/* Success Button Christmas Theme */
.christmas-theme .btn-success {
  background: linear-gradient(135deg, var(--holly-green) 0%, var(--pine-green) 100%) !important;
  border-color: var(--christmas-gold) !important;
  box-shadow: 0 3px 10px rgba(53, 94, 59, 0.3);
}

.christmas-theme .btn-success:hover {
  background: linear-gradient(135deg, var(--pine-green) 0%, var(--holly-green) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(53, 94, 59, 0.4);
}

/* Danger Button Christmas Theme */
.christmas-theme .btn-danger {
  background: linear-gradient(135deg, var(--berry-red) 0%, var(--christmas-red) 100%) !important;
  border-color: var(--christmas-gold) !important;
  box-shadow: 0 3px 10px rgba(220, 20, 60, 0.3);
}

.christmas-theme .btn-danger:hover {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* Warning Button Christmas Theme */
.christmas-theme .btn-warning {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%) !important;
  border-color: var(--christmas-red) !important;
  color: var(--christmas-red) !important;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
  font-weight: 600;
}

.christmas-theme .btn-warning:hover {
  background: linear-gradient(135deg, #ffed4e 0%, var(--christmas-gold) 100%) !important;
  color: var(--berry-red) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Movie Button Christmas Enhancement */
.christmas-theme .movie-button {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 100%) !important;
  border: 2px solid var(--christmas-gold) !important;
  color: var(--christmas-white) !important;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.christmas-theme .movie-button::before {
  content: "🎬";
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 12px;
  opacity: 0.7;
}

.christmas-theme .movie-button:hover {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%) !important;
  color: var(--christmas-red) !important;
  transform: scale(1.05);
  text-decoration: none !important;
}

/* Header Button Enhancement */
.christmas-theme .header-button .theme-btn.style-2 {
  background: linear-gradient(135deg, var(--christmas-green) 0%, var(--holly-green) 100%) !important;
  border: 2px solid var(--christmas-gold) !important;
  color: var(--christmas-white) !important;
  box-shadow: 0 3px 10px rgba(47, 82, 51, 0.3);
  position: relative;
}

.christmas-theme .header-button .theme-btn.style-2::before {
  content: "👤";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.christmas-theme .header-button .theme-btn.style-2:hover {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%) !important;
  color: var(--christmas-green) !important;
}

/* Offcanvas Button Enhancement */
.christmas-theme .offcanvas__close button {
  background: linear-gradient(135deg, var(--christmas-red) 0%, var(--berry-red) 100%) !important;
  border: 2px solid var(--christmas-gold) !important;
  color: var(--christmas-white) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 3px 10px rgba(196, 30, 58, 0.3);
}

.christmas-theme .offcanvas__close button:hover {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%) !important;
  color: var(--christmas-red) !important;
  transform: rotate(90deg);
}

/* ===============================================
   CHRISTMAS FOOTER ENHANCEMENTS
   =============================================== */

/* Christmas Footer General Styling */
.christmas-theme .christmas-footer {
  background: linear-gradient(135deg,
      var(--christmas-green) 0%,
      var(--holly-green) 30%,
      var(--pine-green) 60%,
      #1a3a1d 100%);
  position: relative;
  overflow: hidden;
}

.christmas-theme .christmas-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(248, 249, 250, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Christmas Decoration Bar */
.christmas-theme .christmas-decoration-bar {
  background: linear-gradient(90deg,
      var(--christmas-red) 0%,
      var(--christmas-gold) 25%,
      var(--christmas-green) 50%,
      var(--christmas-gold) 75%,
      var(--christmas-red) 100%);
  height: 8px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.christmas-theme .christmas-decoration-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shimmer 3s infinite;
}

/* Christmas Lights */
.christmas-theme .christmas-lights-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 20px;
  margin-top: -14px;
  position: relative;
}

.christmas-theme .christmas-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation: twinkle 2s infinite alternate;
}

.christmas-theme .christmas-light.red {
  background: radial-gradient(circle, var(--christmas-red) 0%, var(--berry-red) 100%);
  box-shadow: 0 0 15px var(--christmas-red);
}

.christmas-theme .christmas-light.green {
  background: radial-gradient(circle, var(--christmas-green) 0%, var(--holly-green) 100%);
  box-shadow: 0 0 15px var(--christmas-green);
  animation-delay: 0.7s;
}

.christmas-theme .christmas-light.gold {
  background: radial-gradient(circle, var(--christmas-gold) 0%, #ffed4e 100%);
  box-shadow: 0 0 15px var(--christmas-gold);
  animation-delay: 1.4s;
}

/* Christmas Footer Message */
.christmas-theme .christmas-footer-message {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
}

.christmas-theme .christmas-greeting {
  color: var(--christmas-gold);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: glow 3s ease-in-out infinite alternate;
}

.christmas-theme .christmas-wish {
  color: var(--snow-white);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.christmas-theme .christmas-footer-message::before {
  content: "🎄";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 24px;
  animation: bounce 2s infinite;
}

.christmas-theme .christmas-footer-message::after {
  content: "🎅";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 24px;
  animation: bounce 2s infinite reverse;
}

/* Footer Links Christmas Enhancement */
.christmas-theme .footer-list-2 li a {
  color: var(--snow-white) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.christmas-theme .footer-list-2 li a:hover {
  color: var(--christmas-gold) !important;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.christmas-theme .footer-list-2 li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold));
  transition: width 0.3s ease;
}

.christmas-theme .footer-list-2 li a:hover::before {
  width: 100%;
}

/* Footer Bottom Christmas Styling */
.christmas-theme .christmas-footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--christmas-gold);
  padding-top: 20px;
  position: relative;
}

.christmas-theme .snowflake-decoration {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
  animation: float 4s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.8);
}

.christmas-theme .christmas-footer-bottom p {
  color: var(--snow-white) !important;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.christmas-theme .christmas-copyright {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.christmas-theme .holiday-message {
  color: var(--christmas-gold) !important;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: pulse 2s infinite;
}

/* ===============================================
   CHRISTMAS MODAL ENHANCEMENTS
   =============================================== */

/* Image Modal Styles */
.christmas-theme .image-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background:
    radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(47, 82, 51, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.christmas-theme .modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 800px;
  position: relative;
}

.christmas-theme .modal-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: modalZoom 0.3s ease-out;
}

.christmas-theme .modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10002;
  background: linear-gradient(135deg, var(--christmas-red) 0%, #dc143c 100%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--christmas-gold);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.christmas-theme .modal-close:hover,
.christmas-theme .modal-close:focus {
  background: linear-gradient(135deg, var(--christmas-gold) 0%, #ffed4e 100%);
  color: var(--christmas-red) !important;
  transform: scale(1.1) rotate(90deg);
  text-decoration: none;
}

.christmas-theme .modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  height: 50px;
  font-size: 16px;
  background: linear-gradient(135deg, rgba(47, 82, 51, 0.8) 0%, rgba(53, 94, 59, 0.8) 100%);
  border: 1px solid var(--christmas-gold);
  border-radius: 10px;
  margin-top: 15px;
  font-weight: 600;
}

.christmas-theme .modal-content::before {
  content: "❄️ ✨ 🎄";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  letter-spacing: 15px;
  animation: sparkle 2s infinite ease-in-out;
}

/* Make images clickable */
.christmas-theme .movie-category-image img,
.christmas-theme .movie-image img,
.christmas-theme .hero-slider-bg {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.christmas-theme .movie-category-image img:hover,
.christmas-theme .movie-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Christmas Snow Container */
.christmas-theme #snow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9997;
  opacity: 0.8;
}

/* Modal Zoom Animation */
@keyframes modalZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Modal Snowfall Animation */
@keyframes modalSnowfall {
  from {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  to {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Snow Animation */
@keyframes snowAnim {
  from {
    background-position: 0 0, 100px 0;
  }

  to {
    background-position: 0 100vh, 100px 100vh;
  }
}

/* ===============================================
   CHRISTMAS LOGO AND BRANDING
   =============================================== */

/* Christmas Logo Enhancement */
.christmas-theme .header-logo img,
.christmas-theme .offcanvas__logo img {
  transition: transform 0.3s ease;
}

.christmas-theme .header-logo img:hover,
.christmas-theme .offcanvas__logo img:hover {
  transform: scale(1.1) rotate(2deg);
}

/* Santa hat for logo */
.christmas-theme #logo.christmas-hat {
  position: relative;
}

.christmas-theme #logo.christmas-hat::after {
  content: "🎅";
  position: absolute;
  top: -40px;
  right: -20px;
  font-size: 30px;
  z-index: 5;
  animation: bounce 2s infinite;
}

/* ===============================================
   CHRISTMAS HAMBURGER MENU
   =============================================== */

/* Hamburger Menu Button */
.christmas-theme .header__hamburger .sidebar__toggle {
  color: var(--christmas-gold) !important;
  font-size: 24px !important;
  transition: all 0.3s ease;
}

.christmas-theme .header__hamburger .sidebar__toggle:hover {
  color: var(--christmas-red) !important;
  transform: scale(1.2);
}

/* ===============================================
   CHRISTMAS RESPONSIVE MODAL ENHANCEMENTS
   =============================================== */

@media (max-width: 768px) {
  .christmas-theme .modal-content {
    width: 95%;
    padding-top: 20px;
  }

  .christmas-theme .modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .christmas-theme .modal-content::before {
    font-size: 16px;
    letter-spacing: 10px;
  }
}

/* ===============================================
   CHRISTMAS ANIMATIONS
   =============================================== */

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

@keyframes sparkle-fast {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(0.8);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  }

  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.6);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes bell {

  0%,
  90%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }

  5%,
  15%,
  25% {
    transform: translateY(-50%) rotate(-10deg);
  }

  10%,
  20% {
    transform: translateY(-50%) rotate(10deg);
  }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
  .christmas-theme .christmas-greeting {
    font-size: 22px;
  }

  .christmas-theme .christmas-wish {
    font-size: 14px;
  }

  .christmas-theme .christmas-footer-message {
    padding: 20px 15px;
  }

  .christmas-theme .christmas-lights-wrapper {
    height: 15px;
  }

  .christmas-theme .christmas-light {
    width: 10px;
    height: 10px;
  }

  .christmas-theme .snowflake-decoration {
    font-size: 14px;
  }

  .christmas-theme .theme-btn::after {
    font-size: 12px;
    right: 10px;
  }

  .christmas-theme .video-btn::before {
    font-size: 16px;
    top: -8px;
    right: -8px;
  }

  .christmas-theme .back-to-top::before,
  .christmas-theme #back-top::before {
    font-size: 10px;
    top: -6px;
    right: -6px;
  }
}

@media (max-width: 480px) {

  .christmas-theme .christmas-footer-message::before,
  .christmas-theme .christmas-footer-message::after {
    font-size: 18px;
    top: -8px;
  }

  .christmas-theme .christmas-greeting {
    font-size: 18px;
  }

  .christmas-theme .holiday-message {
    font-size: 14px;
  }

  .christmas-theme .btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  }

  .christmas-theme .btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3) !important;
  }

  .christmas-theme .modal-content {
    width: 95%;
    padding-top: 20px;
  }

  .christmas-theme .modal-close {
    top: 10px;
    right: 20px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .christmas-theme .modal-content::before {
    font-size: 16px;
    letter-spacing: 10px;
  }
}

/* ===============================================
   CHRISTMAS THEME TOGGLE TRANSITION
   =============================================== */

/* Smooth transition when Christmas theme is enabled/disabled */
body,
.btn,
.theme-btn,
.video-btn,
.movie-button,
.array-prev,
.array-next,
.back-to-top {
  transition: all 0.5s ease-in-out;
}