/* ==========================================
   CSS Variables & Reset
   ========================================== */
:root {
  /* Colors */
  --color-primary: #1a1a2e;
  --color-secondary: #16213e;
  --color-accent-1: #e94560;
  --color-accent-2: #0f3460;
  --color-gold: #ffd700;
  --color-gold-light: #ffec8b;
  --color-snow: #f8f9ff;
  --color-ice: #e8f4fc;
  --color-green: #2d5a27;
  --color-green-light: #4a8c40;
  --color-red: #c41e3a;
  --color-red-light: #e74c3c;

  /* Gradients */
  --gradient-winter: linear-gradient(
    135deg,
    #1a1a2e 0%,
    #16213e 50%,
    #0f3460 100%
  );
  --gradient-aurora: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 50%,
    #f093fb 100%
  );
  --gradient-gold: linear-gradient(
    135deg,
    #ffd700 0%,
    #ffec8b 50%,
    #ffd700 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );

  /* Shadows */
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-main: "Montserrat", sans-serif;
  --font-display: "Playfair Display", serif;

  /* Spacing */
  --section-padding: 100px 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--gradient-winter);
  color: var(--color-snow);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==========================================
   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: -10%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  animation: snowfall linear infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.snowflake:nth-child(1) {
  left: 5%;
  animation-duration: 8s;
  animation-delay: 0s;
  font-size: 1.2rem;
}
.snowflake:nth-child(2) {
  left: 15%;
  animation-duration: 12s;
  animation-delay: 1s;
  font-size: 0.8rem;
}
.snowflake:nth-child(3) {
  left: 25%;
  animation-duration: 10s;
  animation-delay: 2s;
  font-size: 1rem;
}
.snowflake:nth-child(4) {
  left: 35%;
  animation-duration: 14s;
  animation-delay: 0.5s;
  font-size: 1.4rem;
}
.snowflake:nth-child(5) {
  left: 45%;
  animation-duration: 9s;
  animation-delay: 3s;
  font-size: 0.9rem;
}
.snowflake:nth-child(6) {
  left: 55%;
  animation-duration: 11s;
  animation-delay: 1.5s;
  font-size: 1.1rem;
}
.snowflake:nth-child(7) {
  left: 65%;
  animation-duration: 13s;
  animation-delay: 2.5s;
  font-size: 0.7rem;
}
.snowflake:nth-child(8) {
  left: 75%;
  animation-duration: 10s;
  animation-delay: 0.8s;
  font-size: 1.3rem;
}
.snowflake:nth-child(9) {
  left: 85%;
  animation-duration: 15s;
  animation-delay: 1.8s;
  font-size: 0.85rem;
}
.snowflake:nth-child(10) {
  left: 92%;
  animation-duration: 8s;
  animation-delay: 2.8s;
  font-size: 1rem;
}
.snowflake:nth-child(11) {
  left: 10%;
  animation-duration: 11s;
  animation-delay: 3.5s;
  font-size: 0.75rem;
}
.snowflake:nth-child(12) {
  left: 50%;
  animation-duration: 9s;
  animation-delay: 4s;
  font-size: 1.15rem;
}

@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) rotate(180deg) translateX(20px);
  }
  100% {
    transform: translateY(110vh) rotate(360deg) translateX(-20px);
    opacity: 0.3;
  }
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 20%,
      rgba(102, 126, 234, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(240, 147, 251, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 70%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.sparkle-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.sparkle {
  font-size: 2rem;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle:nth-child(2) {
  animation-delay: 0.3s;
}
.sparkle:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3) rotate(15deg);
    opacity: 1;
  }
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 30px;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: titleFadeIn 1s ease-out forwards;
  opacity: 0;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.title-line:nth-child(2) {
  animation-delay: 0.4s;
}
.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.title-year {
  font-size: clamp(4rem, 15vw, 10rem);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  line-height: 1.1;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  animation: fadeIn 1s ease-out 1s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  animation: fadeIn 1s ease-out 1.5s forwards,
    bounce 2s ease-in-out 2.5s infinite;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.scroll-indicator p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ornament {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.ornament-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.ornament-2 {
  top: 15%;
  right: 15%;
  animation-delay: 1s;
}
.ornament-3 {
  bottom: 20%;
  left: 8%;
  animation-delay: 2s;
}
.ornament-4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ==========================================
   Behavior Section
   ========================================== */
.behavior-section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.emoji-icon {
  font-size: 1.2em;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Deed Cards */
.deeds-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.deed-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.deed-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.deed-card:nth-child(even) {
  direction: rtl;
}

.deed-card:nth-child(even) > * {
  direction: ltr;
}

.deed-number {
  position: absolute;
  top: -30px;
  left: -20px;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: rgba(255, 215, 0, 0.1);
  font-family: var(--font-display);
  z-index: 0;
  line-height: 1;
}

.deed-card:nth-child(even) .deed-number {
  left: auto;
  right: -20px;
}

.deed-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.5s ease;
}

.deed-card:hover .deed-image-wrapper {
  transform: perspective(1000px) rotateY(5deg) scale(1.02);
}

.deed-card:nth-child(even):hover .deed-image-wrapper {
  transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

.deed-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    transparent 50%,
    rgba(102, 126, 234, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.deed-card:hover .image-glow {
  opacity: 1;
}

.deed-content {
  position: relative;
  z-index: 1;
}

.deed-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 15px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deed-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 25px;
}

.deed-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.deed-badge.good {
  background: linear-gradient(
    135deg,
    var(--color-green) 0%,
    var(--color-green-light) 100%
  );
  box-shadow: 0 4px 20px rgba(45, 90, 39, 0.4);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ==========================================
   Conclusion Section
   ========================================== */
.conclusion-section {
  padding: var(--section-padding);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.conclusion-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px;
  max-width: 700px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.conclusion-card.visible {
  opacity: 1;
  transform: scale(1);
}

.conclusion-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.conclusion-card > * {
  position: relative;
  z-index: 1;
}

.verdict-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: trophyBounce 2s ease-in-out infinite;
}

@keyframes trophyBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.conclusion-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: var(--color-gold);
}

.verdict-result {
  margin-bottom: 30px;
}

.verdict-stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.star {
  font-size: 2.5rem;
  animation: starPop 0.5s ease-out forwards;
  opacity: 0;
  transform: scale(0);
}

.conclusion-card.visible .star:nth-child(1) {
  animation-delay: 0.3s;
}
.conclusion-card.visible .star:nth-child(2) {
  animation-delay: 0.5s;
}
.conclusion-card.visible .star:nth-child(3) {
  animation-delay: 0.7s;
}
.conclusion-card.visible .star:nth-child(4) {
  animation-delay: 0.9s;
}
.conclusion-card.visible .star:nth-child(5) {
  animation-delay: 1.1s;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.3) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.verdict-text {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verdict-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.santa-stamp {
  display: inline-block;
  padding: 20px 40px;
  border: 4px solid var(--color-red);
  border-radius: 10px;
  transform: rotate(-5deg);
  background: rgba(196, 30, 58, 0.1);
}

.stamp-text {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.stamp-signature {
  font-size: 1rem;
  color: var(--color-red-light);
}

/* ==========================================
   Wishes Section
   ========================================== */
.wishes-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.wishes-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.firework {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: firework 3s ease-out infinite;
}

.firework::before,
.firework::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.firework-1 {
  top: 20%;
  left: 20%;
  background: var(--color-gold);
  animation-delay: 0s;
}

.firework-2 {
  top: 30%;
  right: 25%;
  background: var(--color-accent-1);
  animation-delay: 1s;
}

.firework-3 {
  top: 15%;
  left: 60%;
  background: #667eea;
  animation-delay: 2s;
}

@keyframes firework {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 currentColor, 0 0 0 0 currentColor, 0 0 0 0 currentColor,
      0 0 0 0 currentColor, 0 0 0 0 currentColor, 0 0 0 0 currentColor,
      0 0 0 0 currentColor, 0 0 0 0 currentColor;
  }
  50% {
    opacity: 1;
    box-shadow: -30px -30px 0 2px currentColor, 30px -30px 0 2px currentColor,
      30px 30px 0 2px currentColor, -30px 30px 0 2px currentColor,
      0 -50px 0 2px currentColor, 50px 0 0 2px currentColor,
      0 50px 0 2px currentColor, -50px 0 0 2px currentColor;
  }
  100% {
    transform: scale(0);
    opacity: 0;
    box-shadow: -60px -60px 0 0 transparent, 60px -60px 0 0 transparent,
      60px 60px 0 0 transparent, -60px 60px 0 0 transparent,
      0 -100px 0 0 transparent, 100px 0 0 0 transparent, 0 100px 0 0 transparent,
      -100px 0 0 0 transparent;
  }
}

.wishes-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

.wishes-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.wishes-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.wish-icon {
  animation: twinkle 1.5s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Wishes Grid */
.wishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.wish-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.wish-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wish-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-glow);
}

.wish-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.wish-card:hover .wish-icon-large {
  transform: scale(1.2) rotate(10deg);
}

.wish-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-gold);
}

.wish-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* Photo Request */
.photo-request {
  text-align: center;
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 600px;
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 2px dashed rgba(255, 215, 0, 0.4);
  border-radius: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.photo-request.visible {
  opacity: 1;
  transform: translateY(0);
}

.photo-request .photo-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  animation: cameraBounce 2s ease-in-out infinite;
}

@keyframes cameraBounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-5deg);
  }
  75% {
    transform: scale(1.1) rotate(5deg);
  }
}

.photo-request h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 15px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.photo-request p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* Final Message */
.final-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.final-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.message-decoration {
  font-size: 5rem;
  animation: sway 3s ease-in-out infinite;
}

.message-decoration.left {
  animation-delay: 0s;
}
.message-decoration.right {
  animation-delay: 1.5s;
  transform: scaleX(-1);
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.message-content {
  text-align: center;
}

.message-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.message-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.confetti-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(
    135deg,
    var(--color-red) 0%,
    var(--color-accent-1) 100%
  );
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
  animation: buttonPulse 2s ease-in-out infinite;
}

.confetti-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(233, 69, 96, 0.5);
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
  }
  50% {
    box-shadow: 0 8px 50px rgba(233, 69, 96, 0.6);
  }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer .year {
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================
   Confetti Effect
   ========================================== */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 9999;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotateZ(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotateZ(720deg);
    opacity: 0;
  }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 900px) {
  .deed-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .deed-card:nth-child(even) {
    direction: ltr;
  }

  .deed-number {
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
  }

  .deed-card:nth-child(even) .deed-number {
    right: auto;
    left: 50%;
  }

  .conclusion-card {
    padding: 40px 25px;
  }

  .final-message {
    flex-direction: column;
    gap: 20px;
  }

  .message-decoration {
    font-size: 3rem;
  }

  .message-decoration.right {
    transform: none;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 60px 15px;
  }

  .hero {
    padding: 30px 15px;
  }

  .ornament {
    font-size: 2rem;
  }

  .wishes-grid {
    grid-template-columns: 1fr;
  }

  .santa-stamp {
    padding: 15px 25px;
  }

  .stamp-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}
