* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  background: linear-gradient(135deg, #00205b 0%, #ba0c2f 50%, #00205b 100%);
  min-height: 100vh;
  overflow-x: hidden;
  color: white;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd700;
  animation: confettiFall linear forwards;
}

.confetti.red {
  background: #ba0c2f;
}
.confetti.blue {
  background: #00205b;
}
.confetti.white {
  background: #ffffff;
}
.confetti.gold {
  background: #ffd700;
}

@keyframes confettiFall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.content {
  text-align: center;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

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

.flag-animation {
  margin-bottom: 20px;
}

.flag {
  font-size: 80px;
  display: inline-block;
}

.title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.football-container {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.football {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.football:hover {
  transform: scale(1.05);
}

.football-icon {
  font-size: 50px;
  display: inline-block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: spin 6s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.haaland-section {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.haaland-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.haaland-image {
  width: 250px;
  height: auto;
  object-fit: contain;
  animation: slideIn 1.5s ease-out forwards;
  transform: translateX(-100vw);
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@keyframes slideIn {
  0% {
    transform: translateX(-100vw) scale(0.8);
    opacity: 0;
  }
  60% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  70% {
    transform: translateX(0) translateY(-5px) scale(1.05);
  }
  80% {
    transform: translateX(0) translateY(0) scale(1);
  }
  100% {
    transform: translateX(0);
  }
}

.header-ball {
  position: absolute;
  font-size: 60px;
  animation: ballToHead 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
  z-index: 3;
  opacity: 0;
}

@keyframes ballToHead {
  0% {
    transform: translateX(200px) translateY(-150px) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  70% {
    transform: translateX(10px) translateY(-120px) scale(0.7) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: translateX(-220px) translateY(-190px) scale(0.6) rotate(450deg);
    opacity: 0;
  }
}

.celebration-text {
  margin: 40px 0;
}

.celebration-message {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.celebration-submessage {
  font-size: 1.3rem;
  opacity: 0.9;
}

.teaser-section {
  margin: 50px 0 30px 0;
  padding: 20px;
}

.teaser-text {
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.85;
  letter-spacing: 2px;
}

.stats {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.stat-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  font-size: 1.3rem;
  opacity: 0.95;
}

.stat-separator {
  font-size: 1.5rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .football {
    width: 150px;
    height: 150px;
  }

  .football-icon {
    font-size: 120px;
  }

  .haaland-section {
    height: 250px;
  }

  .haaland-image {
    width: 200px;
  }

  .header-ball {
    font-size: 50px;
  }

  .teaser-text {
    font-size: 1.2rem;
  }

  .celebration-message {
    font-size: 1.5rem;
  }

  .stat-content {
    padding: 20px 25px;
    gap: 15px;
  }

  .stat-item {
    font-size: 1.1rem;
  }

  .stat-separator {
    font-size: 1.2rem;
  }
}

.footer-link {
  position: fixed;
  bottom: 15px;
  right: 15px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: 100;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-link:hover {
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.7);
}
