/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #667eea 0%,
    #764ba2 25%,
    #8b5cf6 50%,
    #a855f7 75%,
    #c084fc 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

/* Animated gradient background */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Main container */
.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo styles */
.logo-container {
  margin-bottom: 40px;
  position: relative;
}

.logo {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
  transition: transform 0.3s ease;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 20px;
  padding: 20px;
}

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

.logo {
  cursor: pointer;
}

/* Text styles */
.text-container {
  color: white;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  opacity: 0.95;
}

.domain {
  margin-top: 40px;
}

.domain-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e0e7ff;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: inline-block;
  transition: all 0.3s ease;
}

.domain-text:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Social media styles */
.social-media {
  margin-top: 30px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.instagram-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: white;
}

.instagram-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .logo {
    max-width: 350px;
  }

  .logo-container {
    margin-bottom: 30px;
  }

  .main-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .domain-text {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .instagram-link {
    font-size: 0.9rem;
    padding: 10px 16px;
    gap: 10px;
  }

  .instagram-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 200px;
  }

  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .domain-text {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (min-width: 1200px) {
  .logo {
    max-width: 550px;
  }

  .main-title {
    font-size: 4rem;
  }

  .subtitle {
    font-size: 1.6rem;
  }
}

/* Additional visual enhancements */
.content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}

/* Confetti styles */
.confetti-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 1000;
}

.confetti-piece {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -15px;
  left: -15px;
  animation: confettiFall ease-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--random-x), var(--random-y))
      rotate(var(--random-rotation)) scale(0.3);
    opacity: 0;
  }
}
