* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #fcb804 0%, #fcc834 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeIn 0.8s ease-in;
}

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

.logo-wrapper {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

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

#logo {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

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

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.subtitle {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.cta-section {
  margin: 2rem 0;
}

.cta-text {
  font-size: 1rem;
  color: #555;
  margin: 0 0 1rem 0;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.instagram-btn:active {
  transform: translateY(0);
}

.instagram-icon {
  font-size: 1.3rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: #000;
  margin: 2rem 0 0 0;
  letter-spacing: 3px;
}

@media (max-width: 600px) {
  .title {
    font-size: 1.6rem;
  }
  
  .content {
    padding: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  #logo {
    height: 100px;
    width: 100px;
  }
  
  .instagram-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
