:root {
  --labor-red: #e53e3e;
  --labor-orange: #f6ad55;
  --labor-gold: #ffd700;
  --labor-green: #48bb78;
  --labor-bg: #fffaf0;
  --labor-card-bg: #ffffff;
  --labor-text: #2d3748;
}

.dark-theme:root {
  --labor-red: #fc8181;
  --labor-orange: #fbd38d;
  --labor-gold: #f6e05e;
  --labor-green: #68d391;
  --labor-bg: #1a1410;
  --labor-card-bg: #2d1f15;
  --labor-text: #f7fafc;
}

body.seasonal-page {
  background-color: var(--labor-bg);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 62, 62, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(246, 173, 85, 0.05) 0%, transparent 50%);
  color: var(--labor-text);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
}

.seasonal-main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.festive-hero {
  position: relative;
  padding: 40px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--labor-red) 0%, #c53030 50%, #9b2c2c 100%);
  color: white;
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.3);
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
}

.festive-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(16px, 3.5vw, 24px);
  opacity: 0.95;
  letter-spacing: 3px;
  font-weight: 500;
}

.labor-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.icon-item {
  font-size: 48px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
  cursor: default;
  transition: transform 0.3s ease;
}

.icon-item:hover {
  transform: scale(1.2) rotate(10deg);
}

.wish-card {
  background: var(--labor-card-bg);
  padding: 35px;
  border-radius: 32px;
  border: 3px solid var(--labor-orange);
  box-shadow: 
    0 10px 30px rgba(246, 173, 85, 0.15),
    0 0 0 1px rgba(255, 215, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.wish-title {
  color: var(--labor-red);
  font-size: 26px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
}

.wish-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--labor-text);
}


.tool-icon {
  position: fixed;
  top: 30px;
  right: 30px;
  font-size: 56px;
  z-index: 100;
  cursor: pointer;
  animation: toolSwing 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-icon:hover {
  transform: scale(1.15) rotate(15deg);
}

.action-buttons {
  margin-top: 40px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--labor-red) 0%, #c53030 100%);
  color: white;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(229, 62, 62, 0.25);
  letter-spacing: 1px;
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(229, 62, 62, 0.35);
  filter: brightness(1.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes toolSwing {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@media (max-width: 768px) {
  .tool-icon { 
    top: 15px; 
    right: 15px; 
    font-size: 42px; 
  }
  
  .labor-icons {
    gap: 12px;
  }
  
  .icon-item {
    font-size: 36px;
  }
  
  .festive-hero {
    padding: 30px 20px;
  }
  
  .wish-card {
    padding: 25px 20px;
  }
  
  .seasonal-main {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
  
  .icon-item {
    font-size: 28px;
  }
  
  .wish-title {
    font-size: 20px;
  }
  
  .wish-content {
    font-size: 14px;
  }
}