@import "tailwindcss";

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 50%, #16213e 100%);
  color: #f1f5f9;
  min-height: 100vh;
}

.glass-effect {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.button-glow {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.button-glow:hover::before {
  left: 100%;
}

.avatar-ring {
  border: 3px solid transparent;
  background: linear-gradient(135deg, #0f172a, #0f172a) padding-box,
              linear-gradient(135deg, #3b82f6, #a855f7, #ec4899) border-box;
  border-radius: 9999px;
}

@supports (animation: float 6s ease-in-out infinite) {
  .float-animate {
    animation: float 6s ease-in-out infinite;
  }
}
