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

:root {
  --bg-color: #07080b;
  --card-bg: rgba(13, 17, 23, 0.55);
  --card-border: rgba(255, 255, 255, 0.06);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent-glow-1: rgba(99, 102, 241, 0.15); /* Indigo glow */
  --accent-glow-2: rgba(6, 182, 212, 0.15);  /* Cyan glow */
  --btn-primary: #3b82f6;
  --btn-hover: #2563eb;
  --btn-text: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Glowing Background Orbs */
.ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  mix-blend-mode: screen;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-glow-1) 0%, rgba(0,0,0,0) 70%);
  animation: float-orb-1 25s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-glow-2) 0%, rgba(0,0,0,0) 70%);
  animation: float-orb-2 30s ease-in-out infinite alternate;
}

@keyframes float-orb-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10%, 15%) scale(1.1);
  }
}

@keyframes float-orb-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-15%, -10%) scale(1.05);
  }
}

/* Main Container */
.container {
  width: 100%;
  max-width: 620px;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Glassmorphic Card */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 56px 48px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
              inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transform: translateY(20px);
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Logo Styles with glow & invert */
.logo-container {
  margin-bottom: 40px;
  perspective: 1000px;
}

.logo {
  max-width: 260px;
  height: auto;
  filter: invert(1) brightness(1.15) contrast(1.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
}

.logo:hover {
  transform: scale(1.04) rotateX(2deg) rotateY(2deg);
  filter: invert(1) brightness(1.3) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
}

/* Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981; /* Emerald green */
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Typography */
h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 36px auto;
  font-weight: 300;
}

/* Support Contact Card */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.email-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px 16px 12px 20px;
  width: 100%;
  max-width: 380px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.email-pill:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.email-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  flex-grow: 1;
}

.email-info svg {
  color: var(--text-muted);
  transition: color 0.3s;
}

.email-pill:hover .email-info svg {
  color: var(--btn-primary);
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.copy-btn:active {
  transform: scale(0.9);
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 120%;
  right: 12px;
  background: #111827;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Large CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 14px;
  width: 100%;
  max-width: 380px;
  margin-top: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.45);
  background: linear-gradient(135deg, #4338ca 0%, #2563eb 100%);
}

.cta-button:active {
  transform: translateY(0);
}

/* Footer styling */
footer {
  margin-top: auto;
  padding: 40px 24px;
  color: var(--text-muted);
  font-size: 0.8rem;
  z-index: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fade-in 1s ease 0.5s forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* Responsive adjustment */
@media (max-width: 520px) {
  .card {
    padding: 40px 24px;
    border-radius: 20px;
  }
  h1 {
    font-size: 1.75rem;
  }
  .logo {
    max-width: 200px;
  }
}
