/* Landing Page Styles - MiniMax Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  min-height: 100vh;
  color: #333;
}

/* Subtle gradient background */
.landing-wrapper {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

/* Decorative elements */
.landing-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px rgba(239, 68, 68, 0.15);
  transition: all 0.3s ease;
  border: 3px solid #fff;
  position: relative;
}

.avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 50px rgba(239, 68, 68, 0.25);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.bio {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.welcome-message {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Red accent button */
.enter-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.enter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, #f45c5c 0%, #e53636 100%);
}

.enter-button i {
  transition: transform 0.3s ease;
}

.enter-button:hover i {
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  color: #666;
  background: #f5f5f5;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  background: #ef4444;
  transform: translateY(-2px);
}

/* Minimalist decoration */
.decoration-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f87171);
  border-radius: 2px;
  margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .name {
    font-size: 2rem;
  }

  .bio {
    font-size: 1rem;
  }

  .avatar {
    width: 110px;
    height: 110px;
  }

  .enter-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
}
