/* NEW SEASON ANNOUNCEMENT STYLES */
.new-season-announcement {
  margin: 60px 0 80px 0;
  padding: 0 20px;
  animation: slideInUp 0.8s ease-out;
  position: relative;
  z-index: 10;
}

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

.announcement-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.announcement-background {
  background: linear-gradient(135deg, 
    #1c1e53 0%, 
    #2405f2 25%, 
    #ff6b35 50%, 
    #f7931e 75%, 
    #fcd980 100%);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(28, 30, 83, 0.3),
    0 15px 35px rgba(36, 5, 242, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background-size: 200% 200%;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.announcement-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.03) 50%, transparent 51%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Floating Icons Animation */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.icon-item {
  position: absolute;
  font-size: 2.5rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.icon-1 { top: 15%; left: 8%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 12%; animation-delay: 1s; }
.icon-3 { top: 55%; left: 5%; animation-delay: 2s; }
.icon-4 { bottom: 25%; right: 8%; animation-delay: 3s; }
.icon-5 { top: 40%; right: 20%; animation-delay: 4s; }
.icon-6 { bottom: 20%; left: 15%; animation-delay: 5s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Announcement Content */
.announcement-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.announcement-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 25px;
  margin-bottom: 25px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

.badge-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.announcement-title {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 0 30px 0;
  line-height: 1.1;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 255, 255, 0.2);
  }
  to {
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(255, 255, 255, 0.4),
      0 0 40px rgba(252, 217, 128, 0.3);
  }
}

.highlight-text {
  background: linear-gradient(45deg, #fcd980, #ffffff, #fcd980);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes textShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.launch-date {
  margin: 35px 0;
}

.date-container {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 25px 40px;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: dateGlow 4s ease-in-out infinite;
}

@keyframes dateGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 12px 40px rgba(252, 217, 128, 0.3);
  }
}

.calendar-icon {
  font-size: 2.5rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.date-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.starts-text {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}

.main-date {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.announcement-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 35px auto;
  max-width: 900px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.emphasis {
  background: linear-gradient(45deg, #2405f2, #19078b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  display: inline;
}

.urgency-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  padding: 18px 35px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 50px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  animation: urgencyPulse 1.5s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

@keyframes urgencyPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
  }
}

.urgency-icon {
  font-size: 1.8rem;
  animation: flash 1s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.urgency-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin: 45px 0 40px 0;
  flex-wrap: wrap;
}

.primary-cta-btn, .secondary-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.primary-cta-btn {
  background: linear-gradient(45deg, #fcd980, #f7931e);
  color: #1c1e53;
  box-shadow: 0 10px 30px rgba(252, 217, 128, 0.4);
  border: 2px solid transparent;
}

.primary-cta-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 50px rgba(252, 217, 128, 0.6);
  background: linear-gradient(45deg, #f7931e, #fcd980);
}

.secondary-cta-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.secondary-cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-sparkle {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.2);
    opacity: 0.7;
  }
}

.launch-features {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.4rem;
  animation: featureGlow 3s ease-in-out infinite;
}

.feature-item:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-item:nth-child(2) .feature-icon { animation-delay: 1s; }
.feature-item:nth-child(3) .feature-icon { animation-delay: 2s; }

@keyframes featureGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(252, 217, 128, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(252, 217, 128, 0.8));
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .announcement-background {
    padding: 50px 40px;
  }
  
  .announcement-title {
    font-size: 3.2rem;
  }
  
  .floating-icons .icon-item {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .new-season-announcement {
    margin: 40px 0 60px 0;
    padding: 0 15px;
  }
  
  .announcement-background {
    padding: 40px 30px;
    border-radius: 20px;
  }
  
  .announcement-title {
    font-size: 2.5rem;
  }
  
  .date-container {
    flex-direction: column;
    gap: 12px;
    padding: 20px 30px;
  }
  
  .calendar-icon {
    font-size: 2rem;
  }
  
  .main-date {
    font-size: 1.3rem;
  }
  
  .announcement-description {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .primary-cta-btn, .secondary-cta-btn {
    width: 100%;
    max-width: 320px;
  }
  
  .launch-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .feature-item {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .floating-icons .icon-item {
    font-size: 1.5rem;
  }
  
  .urgency-message {
    padding: 15px 25px;
    margin: 30px 0;
  }
  
  .urgency-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .new-season-announcement {
    margin: 30px 0 40px 0;
    padding: 0 10px;
  }
  
  .announcement-background {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .announcement-title {
    font-size: 2rem;
  }
  
  .announcement-description {
    font-size: 1rem;
    margin: 25px auto;
  }
  
  .date-container {
    padding: 15px 20px;
  }
  
  .floating-icons .icon-item {
    font-size: 1.2rem;
  }
  
  .urgency-message {
    padding: 12px 20px;
    margin: 25px 0;
  }
  
  .urgency-text {
    font-size: 0.9rem;
  }
  
  .primary-cta-btn, .secondary-cta-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .launch-features {
    margin-top: 25px;
  }
  
  .feature-item {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}