/* Base Reset & Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --christmas-red: #c41e3a;
  --christmas-green: #165b33;
  --christmas-gold: #d4af37;
  --christmas-white: #fafafa;
  --christmas-dark: #0d0d0d;
  --soft-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  --elegant-gradient: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2d2d2d 50%,
    #1a1a1a 100%
  );
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  background: var(--elegant-gradient);
  color: var(--christmas-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.8;
}

/* Snowflakes Animation */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  opacity: 0.8;
  animation: fall linear infinite;
}

.snowflake:nth-child(1) {
  left: 5%;
  animation-duration: 12s;
  animation-delay: 0s;
  font-size: 0.8rem;
}
.snowflake:nth-child(2) {
  left: 15%;
  animation-duration: 10s;
  animation-delay: 2s;
  font-size: 1.2rem;
}
.snowflake:nth-child(3) {
  left: 25%;
  animation-duration: 14s;
  animation-delay: 4s;
  font-size: 0.9rem;
}
.snowflake:nth-child(4) {
  left: 35%;
  animation-duration: 11s;
  animation-delay: 1s;
  font-size: 1.5rem;
}
.snowflake:nth-child(5) {
  left: 45%;
  animation-duration: 13s;
  animation-delay: 3s;
  font-size: 1rem;
}
.snowflake:nth-child(6) {
  left: 55%;
  animation-duration: 12s;
  animation-delay: 5s;
  font-size: 1.3rem;
}
.snowflake:nth-child(7) {
  left: 65%;
  animation-duration: 15s;
  animation-delay: 0s;
  font-size: 0.85rem;
}
.snowflake:nth-child(8) {
  left: 75%;
  animation-duration: 9s;
  animation-delay: 2s;
  font-size: 1.4rem;
}
.snowflake:nth-child(9) {
  left: 85%;
  animation-duration: 13s;
  animation-delay: 4s;
  font-size: 1.1rem;
}
.snowflake:nth-child(10) {
  left: 95%;
  animation-duration: 11s;
  animation-delay: 6s;
  font-size: 1rem;
}

@keyframes fall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.3;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(15px);
  z-index: 999;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.christmas-icon {
  font-size: 2.2rem;
  animation: subtle-glow 3s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
  from {
    filter: drop-shadow(0 0 8px var(--christmas-gold));
  }
  to {
    filter: drop-shadow(0 0 25px var(--christmas-gold));
  }
}

.nav-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: linear-gradient(
    135deg,
    var(--christmas-gold),
    #f5f5f5,
    var(--christmas-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--christmas-gold);
  background: rgba(212, 175, 55, 0.08);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--christmas-gold);
  transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 900px;
}

.hero-icon {
  font-size: 7rem;
  margin-bottom: 1.5rem;
  animation: elegant-bounce 3s ease-in-out infinite;
}

@keyframes elegant-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-title {
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(
    135deg,
    var(--christmas-gold) 0%,
    #f5e6c8 50%,
    var(--christmas-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}

.title-sub {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 2.2;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-quote {
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--christmas-gold);
  padding: 1.5rem 2.5rem;
  border-left: 3px solid var(--christmas-gold);
  background: rgba(212, 175, 55, 0.06);
  border-radius: 0 15px 15px 0;
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: transparent;
  color: var(--christmas-gold);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--christmas-gold);
  transition: all 0.4s ease;
}

.cta-button:hover {
  background: var(--christmas-gold);
  color: var(--christmas-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.hero-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.tree,
.gifts,
.stars {
  position: absolute;
  font-size: 4rem;
  animation: float 4s ease-in-out infinite;
}

.tree {
  left: 8%;
  top: 25%;
  animation-delay: 0s;
}

.gifts {
  right: 8%;
  top: 45%;
  animation-delay: 1.5s;
}

.stars {
  left: 45%;
  top: 15%;
  animation-delay: 3s;
  font-size: 1.8rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(8deg);
  }
}

/* Section Title */
.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  letter-spacing: 0.05em;
}

.title-icon {
  font-size: 2.5rem;
}

/* Story Section */
.story-section {
  padding: 8rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.story-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.story-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(212, 175, 55, 0.3);
}

.story-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.story-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--christmas-gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.story-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

/* Meaning Section */
.meaning-section {
  padding: 8rem 0;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.meaning-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  padding: 2.2rem;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.meaning-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.03)
  );
  border-color: rgba(212, 175, 55, 0.4);
}

.meaning-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
}

.meaning-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--christmas-gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.meaning-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

/* Reflections Section - Enhanced Design */
.reflections-section {
  padding: 8rem 0;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.02) 0%,
    rgba(212, 175, 55, 0.05) 50%,
    rgba(212, 175, 55, 0.02) 100%
  );
  position: relative;
  overflow: hidden;
}

.reflections-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 20% 50%,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 80% 50%,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.poetry-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.poem-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.poem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--christmas-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.poem-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--christmas-gold),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.poem-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.25);
}

.poem-card:hover::before,
.poem-card:hover::after {
  opacity: 1;
}

.poem-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1.2rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  transition: all 0.5s ease;
}

.poem-card:hover .poem-icon {
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.1) rotate(5deg);
}

.poem-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--christmas-gold);
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.poem-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--christmas-gold);
  border-radius: 2px;
}

.poem-content {
  text-align: left;
  position: relative;
}

.poem-text {
  font-family: "Lora", "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.8rem;
}

.poem-text::before {
  content: """;
  position: absolute;
  left: -0.2rem;
  top: -0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.3);
  line-height: 1;
  font-style: normal;
}

.poem-author {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: rgba(212, 175, 55, 0.6);
  letter-spacing: 0.15em;
  font-style: normal;
  display: block;
  text-align: right;
  padding-right: 0.5rem;
  font-weight: 500;
}

.poem-author::before {
  content: "— ";
}

.wisdom-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 4rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),
    rgba(196, 30, 58, 0.02)
  );
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  text-align: center;
}

.wisdom-quote::before {
  content: "✦";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--christmas-dark);
  padding: 0 1.5rem;
  color: var(--christmas-gold);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.wisdom-quote blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--christmas-white);
  margin: 0;
  text-align: center;
}

/* Blessings Section */
.blessings-section {
  padding: 8rem 0;
  background: rgba(255, 255, 255, 0.015);
}

.blessing-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem;
  overflow: hidden;
}

.blessing-card {
  display: none;
  padding: 3.5rem;
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.1),
    rgba(196, 30, 58, 0.05)
  );
  border-radius: 25px;
  text-align: center;
  min-height: 220px;
  justify-content: center;
  align-items: center;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  animation: elegant-fadeIn 0.8s ease;
}

.blessing-card.active {
  display: flex;
}

@keyframes elegant-fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blessing-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 2;
  color: var(--christmas-white);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.carousel-btn {
  background: transparent;
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: var(--christmas-gold);
  padding: 1rem 1.4rem;
  font-size: 1.3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--christmas-gold);
  color: var(--christmas-dark);
  border-color: var(--christmas-gold);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--christmas-gold);
  transform: scale(1.4);
}

.generate-blessing {
  text-align: center;
  margin-bottom: 2.5rem;
}

.magic-btn {
  background: linear-gradient(135deg, var(--christmas-gold), #c9a227);
  border: none;
  color: var(--christmas-dark);
  padding: 1.1rem 2.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
}

.magic-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.magic-btn span {
  margin-right: 0.6rem;
}

.generated-blessing {
  text-align: center;
  padding: 2rem;
  min-height: 100px;
}

.generated-blessing p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--christmas-gold);
  animation: subtle-glow 2s ease-in-out infinite alternate;
}

/* Memories Section */
.memories-section {
  padding: 8rem 0;
}

.memory-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.memory-item {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
  padding: 2.2rem;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.memory-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.02)
  );
  border-color: rgba(212, 175, 55, 0.35);
}

.memory-icon {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.4s ease;
}

.memory-item:hover .memory-icon {
  transform: scale(1.25);
}

.memory-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--christmas-gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.memory-item p {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 5rem 3rem 2.5rem;
  margin-top: 5rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-message {
  margin-bottom: 2.5rem;
}

.footer-message p {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--christmas-gold);
  letter-spacing: 0.1em;
}

.footer-quote {
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  padding: 1.2rem 2rem;
  border-left: 3px solid var(--christmas-gold);
  background: rgba(212, 175, 55, 0.03);
  border-radius: 0 12px 12px 0;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-icons span {
  font-size: 2rem;
  animation: elegant-bounce 3s ease-in-out infinite;
}

.footer-icons span:nth-child(2) {
  animation-delay: 0.3s;
}
.footer-icons span:nth-child(3) {
  animation-delay: 0.6s;
}
.footer-icons span:nth-child(4) {
  animation-delay: 0.9s;
}
.footer-icons span:nth-child(5) {
  animation-delay: 1.2s;
}

.footer-copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright p {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 900px) {
  .navbar {
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1.2rem;
  }

  .nav-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero-icon {
    font-size: 5rem;
  }

  .title-main {
    font-size: 3rem;
  }

  .title-sub {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .story-content,
  .meaning-grid,
  .memory-gallery,
  .poetry-container {
    grid-template-columns: 1fr;
  }

  .blessing-quote {
    font-size: 1.2rem;
  }

  .tree,
  .gifts,
  .stars {
    display: none;
  }

  .container {
    padding: 0 1.5rem;
  }

  .poem-card {
    padding: 2.5rem 2rem;
  }

  .wisdom-quote {
    padding: 2.5rem 2rem;
  }

  .wisdom-quote blockquote {
    font-size: 1.2rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--christmas-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--christmas-red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a01830;
}

/* Selection */
::selection {
  background: var(--christmas-gold);
  color: var(--christmas-dark);
}
