.season-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#christmas-section {
  background: var(--white);
	transform: translateY(-2rem);
}

.christmas-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  color: rgba(184, 134, 11, 0.3);
  font-size: 0.8rem;
  animation: snowfall linear infinite;
  pointer-events: none;
}

.snowflake:nth-child(1) {
  left: 10%;
  font-size: 1rem;
  animation-duration: 8s;
  animation-delay: 0s;
}

.snowflake:nth-child(2) {
  left: 20%;
  font-size: 0.6rem;
  animation-duration: 10s;
  animation-delay: 1s;
}

.snowflake:nth-child(3) {
  left: 30%;
  font-size: 1.2rem;
  animation-duration: 7s;
  animation-delay: 2s;
}

.snowflake:nth-child(4) {
  left: 40%;
  font-size: 0.8rem;
  animation-duration: 9s;
  animation-delay: 3s;
}

.snowflake:nth-child(5) {
  left: 60%;
  font-size: 1rem;
  animation-duration: 8.5s;
  animation-delay: 1.5s;
}

.snowflake:nth-child(6) {
  left: 70%;
  font-size: 0.7rem;
  animation-duration: 11s;
  animation-delay: 0.5s;
}

.snowflake:nth-child(7) {
  left: 80%;
  font-size: 0.9rem;
  animation-duration: 7.5s;
  animation-delay: 2.5s;
}

.snowflake:nth-child(8) {
  left: 90%;
  font-size: 1.1rem;
  animation-duration: 9.5s;
  animation-delay: 0.2s;
}

@keyframes snowfall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.christmas-title {
  color: var(--deep-blue);
  text-shadow: none;
}

.christmas-decoration .decoration-stars {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.christmas-decoration .decoration-stars i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

.christmas-decoration .decoration-stars i:nth-child(2) {
  animation-delay: 0.5s;
}

.christmas-decoration .decoration-stars i:nth-child(3) {
  animation-delay: 1s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

#newyear-section {
  background: var(--white)
}

.newyear-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fireworks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.firework {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: firework-explosion 2s ease-out infinite;
}

.firework:nth-child(1) {
  left: 20%;
  top: 30%;
  animation-delay: 0s;
  background: var(--primary-gold);
}

.firework:nth-child(2) {
  left: 60%;
  top: 20%;
  animation-delay: 1s;
  background: var(--dark-gold);
}

.firework:nth-child(3) {
  left: 80%;
  top: 40%;
  animation-delay: 2s;
  background: var(--accent-gold);
}

.firework:nth-child(4) {
  left: 40%;
  top: 25%;
  animation-delay: 1.5s;
  background: var(--primary-gold);
}

.firework:nth-child(5) {
  left: 70%;
  top: 35%;
  animation-delay: 0.5s;
  background: var(--primary-gold);
}

@keyframes firework-explosion {
  0% {
    transform: scale(0);
    opacity: 1;
    box-shadow: 
      0 0 10px 2px currentColor,
      0 0 20px 5px currentColor,
      0 0 30px 8px currentColor;
  }
  25% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(2);
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
    box-shadow: 
      0 0 20px 10px transparent,
      0 0 40px 20px transparent,
      0 0 60px 30px transparent;
  }
}

.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 50%;
  animation: sparkle-fall linear infinite;
}

.sparkle:nth-child(1) {
  left: 15%;
  animation-duration: 4s;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  left: 25%;
  animation-duration: 5s;
  animation-delay: 1s;
}

.sparkle:nth-child(3) {
  left: 35%;
  animation-duration: 3s;
  animation-delay: 2s;
}

.sparkle:nth-child(4) {
  left: 45%;
  animation-duration: 6s;
  animation-delay: 0.5s;
}

.sparkle:nth-child(5) {
  left: 55%;
  animation-duration: 4.5s;
  animation-delay: 1.5s;
}

.sparkle:nth-child(6) {
  left: 65%;
  animation-duration: 5.5s;
  animation-delay: 0.3s;
}

.sparkle:nth-child(7) {
  left: 75%;
  animation-duration: 3.5s;
  animation-delay: 2.3s;
}

.sparkle:nth-child(8) {
  left: 85%;
  animation-duration: 4.8s;
  animation-delay: 1.2s;
}

@keyframes sparkle-fall {
  0% {
    transform: translateY(-50px);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

.newyear-title {
  color: var(--deep-blue);
  text-shadow: none;
}

.countdown-element {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  color: var(--deep-blue);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-2xl);
  margin-top: var(--space-xl);
}

.countdown-display {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  animation: glow 2s ease-in-out infinite alternate;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-xs);
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
  to {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
}

#easter-section {
  background: var(--white)
}

.easter-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.easter-flowers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.flower {
  position: absolute;
  color: rgba(76, 175, 80, 0.3);
  font-size: 1rem;
  animation: flower-sway 4s ease-in-out infinite;
}

.flower:nth-child(1) {
  left: 10%;
  bottom: -20px;
  animation-delay: 0s;
}

.flower:nth-child(2) {
  left: 25%;
  bottom: -10px;
  animation-delay: 1s;
  color: rgba(139, 195, 74, 0.3);
}

.flower:nth-child(3) {
  left: 70%;
  bottom: -15px;
  animation-delay: 2s;
}

.flower:nth-child(4) {
  right: 20%;
  bottom: -25px;
  animation-delay: 0.5s;
  color: rgba(139, 195, 74, 0.3);
}

.flower:nth-child(5) {
  right: 40%;
  bottom: -5px;
  animation-delay: 1.5s;
}

.flower:nth-child(6) {
  right: 10%;
  bottom: -30px;
  animation-delay: 2.5s;
  color: rgba(139, 195, 74, 0.3);
}

@keyframes flower-sway {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.easter-title {
  color: var(--deep-blue);
  text-shadow: none;
}

.easter-eggs {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-xl);
}

.egg {
  width: 50px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  animation: egg-bounce 2s ease-in-out infinite;
}

.egg:nth-child(1) {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  animation-delay: 0s;
}

.egg:nth-child(2) {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  animation-delay: 0.3s;
}

.egg:nth-child(3) {
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
  animation-delay: 0.6s;
}

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

#default-section {
  background: linear-gradient(135deg, 
    var(--cream) 0%, 
    var(--white) 50%, 
    var(--light-gray) 100%);
}

.default-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.element {
  position: absolute;
  color: rgba(184, 134, 11, 0.3);
  font-size: 1rem;
  animation: float 6s ease-in-out infinite;
}

.element:nth-child(1) {
  left: 20%;
  top: 20%;
  animation-delay: 0s;
}

.element:nth-child(2) {
  left: 80%;
  top: 30%;
  animation-delay: 1s;
}

.element:nth-child(3) {
  left: 60%;
  top: 70%;
  animation-delay: 2s;
}

.element:nth-child(4) {
  left: 30%;
  top: 80%;
  animation-delay: 3s;
}

.element:nth-child(5) {
  left: 70%;
  top: 15%;
  animation-delay: 4s;
}

.element:nth-child(6) {
  left: 15%;
  top: 60%;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

.default-title {
  color: var(--deep-blue);
}

.brand-elements {
  text-align: center;
  margin-top: var(--space-xl);
}

.brand-accent {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-xl);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
  }
}

.season-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  animation: fadeInUp 1s ease-out;
}

.main-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-2xl);
  animation: icon-entrance 1.2s ease-out;
}

.christmas-icon {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--deep-blue);
}

.newyear-icon {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  color: var(--deep-blue);
}

.easter-icon {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  color: var(--deep-blue);
}

.default-icon {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--deep-blue);
}

@keyframes icon-entrance {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) rotate(-90deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.season-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.title-decoration {
  font-size: 0.7em;
  display: inline-block;
  animation: bounce 2s infinite;
}

.title-decoration:first-child {
  animation-delay: 0s;
}

.title-decoration:last-child {
  animation-delay: 0.5s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.title-main {
  display: block;
  margin: var(--space-sm) 0;
}

.team-signature {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 300;
  color: var(--medium-gray);
  margin-bottom: var(--space-2xl);
  font-style: italic;
  opacity: 0.9;
}

.season-description {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.description-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  text-align: left;
  transition: var(--transition-normal);
}

.description-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.description-card p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.season-decoration {
  position: relative;
  z-index: 3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .season-content {
    padding: var(--space-lg);
  }
  
  .main-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .season-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
  
  .team-signature {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
  }
  
  .description-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .description-card p {
    font-size: 0.9rem;
  }
  
  .countdown-display {
    font-size: 2rem;
  }
  
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .easter-eggs {
    gap: var(--space-md);
  }
  
  .egg {
    width: 40px;
    height: 50px;
    font-size: 1rem;
  }
  
  .brand-accent {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .season-content {
    padding: var(--space-md);
  }
  
  .main-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
  }
  
  .title-decoration {
    display: block;
    margin: var(--space-sm) 0;
  }
  
  .description-card {
    padding: var(--space-lg);
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .christmas-decoration .decoration-stars {
    gap: var(--space-sm);
  }
  
  .christmas-decoration .decoration-stars i {
    font-size: 1.2rem;
  }
  
  .countdown-element {
    padding: var(--space-md) var(--space-lg);
  }
  
  .countdown-display {
    font-size: 1.8rem;
  }
  
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
  }
  
  .countdown-number {
    font-size: 1.2rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
  
  .easter-eggs {
    gap: var(--space-sm);
  }
  
  .egg {
    width: 35px;
    height: 45px;
    font-size: 0.9rem;
  }
  
  .brand-accent {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}