:root {
  --bg-color: #050505;
  --card-bg: rgba(20, 20, 25, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --accent-color: #6366f1;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-main: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(99, 102, 241, 0.08) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(139, 92, 246, 0.08) 0%,
      transparent 25%
    );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Logo Section */
.logo-container {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.company-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.contact-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.contact-item a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-item a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.registered {
  font-size: 0.875rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Banner Background Overlay */
.banner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Uses CSS variable or fallback if image not loaded initially in CSS */
  background-image: url("assets/banner.png");
  filter: blur(80px) saturate(150%);
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.5;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .glass-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
    border-radius: 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .company-logo {
    width: 100px;
    height: 100px;
  }
}
