:root {
  --bg-color: #0d0f12;
  --text-primary: #ffffff;
  --text-secondary: #9ba1a6;
  --accent-glow-1: rgba(99, 102, 241, 0.4); /* Indigo */
  --accent-glow-2: rgba(236, 72, 153, 0.4); /* Pink */
  --btn-bg: linear-gradient(135deg, #6366f1, #ec4899);
  --btn-hover: linear-gradient(135deg, #4f46e5, #db2777);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* Background Glows */
.landing-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  animation: drift 10s infinite alternate ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-glow-1);
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-glow-2);
  bottom: -150px;
  right: -100px;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, -50px);
  }
}

/* Main Content Wrapper */
.content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;
  padding: 3rem 2rem;
  background: rgba(20, 22, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #a5b4fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

/* Church Info */
.church-info {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.church-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pastor-name {
  font-size: 1.1rem;
  color: #a5b4fc;
  font-weight: 600;
}

.pastor-name span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Tamil Message Section */
.tamil-message {
  text-align: left;
  margin-bottom: 2.5rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tamil-message p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.tamil-message p:last-child {
  margin-bottom: 0;
}

.highlight {
  font-size: 1.15rem !important;
  color: #ffffff !important;
  font-weight: 600;
}

.domain-text {
  color: #6366f1;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.instruction {
  color: #e2e8f0 !important;
}

.registration-alert {
  color: #fca5a5 !important;
  background: rgba(239, 68, 68, 0.1);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #ef4444;
}

.monitor-note {
  font-size: 0.95rem !important;
  color: #94a3b8 !important;
  font-style: italic;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

/* Call to Action Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  background: var(--btn-bg);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -10px rgba(236, 72, 153, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px rgba(236, 72, 153, 0.6);
}

.cta-button:active {
  transform: translateY(1px);
}

.arrow {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .title {
    font-size: 3rem;
  }
  .content {
    margin: 1rem;
    padding: 2.5rem 1.5rem;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
  }

  .shape-2 {
    width: 400px;
    height: 400px;
  }
}
