@import url('global.css');

main {
  min-height: calc(100vh - var(--header-height) - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease, slideInUp 1s ease;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.intro p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.intro .btn {
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  animation: pulse 2s infinite;
}

/* Floating elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-light), var(--accent));
  opacity: 0.1;
  filter: blur(20px);
  z-index: 1;
}

.floating-element:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: float 15s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  animation: float 12s ease-in-out infinite reverse;
}

.floating-element:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 30%;
  left: 20%;
  animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@media (max-width: 768px) {
  .intro h2 {
    font-size: 2rem;
  }
  
  .intro p {
    font-size: 1rem;
  }
}
