@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
  --bg-color: #0b0f19;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --accent: #3b82f6;
  --accent-hover: #60a5fa;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
}

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

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0;
  /* Ensures content doesn't completely touch screen edges vertically */
}

/* Background effects */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.bg-shape {
  position: fixed;
  /* Fixed position so large shapes do not affect scrollable dimensions */
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}

.shape-1 {
  top: -10%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: #3b82f6;
  animation-delay: 0s;
}

.shape-2 {
  bottom: -10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: #8b5cf6;
  animation-delay: -5s;
}

.shape-3 {
  top: 30%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: #0ea5e9;
  animation-delay: -10s;
}

.container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  width: 90%;
  text-align: center;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.7);
}

.bee-logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  display: block;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.title-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.25);
  transition: background 0.3s ease;
}

.title-badge:hover {
  background: rgba(59, 130, 246, 0.2);
}

p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--accent);
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(6px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .card {
    padding: 2.5rem 1.25rem;
    border-radius: 16px;
  }
}
