/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
  --bg-color: #0f172a;
  --accent-color: #3b82f6;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  --card-radius: 24px;
}

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

body {
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #0b1120;
  /* Deep solid background */
}

/* Background - Removed gradient blobs */
body::before {
  display: none;
}

/* Language Switcher */
.lang-switch {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  /* Solid transparent bg */
  padding: 4px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  color: var(--text-primary);
}

.container {
  width: 90%;
  max-width: 460px;
  perspective: 1000px;
}

.card {
  background: #1e293b;
  /* Solid card background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--card-radius);
  padding: 48px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  /* Solid white */
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.domain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.domain-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #c4b5fd;
  transition: all 0.2s ease;
}

.domain-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #60a5fa;
  /* Solid blue border on hover */
  transform: translateY(-2px);
}

/* Removed pseudo-element shine */
.domain-item::before {
  display: none;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2563eb;
  /* Solid blue */
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.price-tag:hover {
  background: #1d4ed8;
  /* Darker blue on hover */
  transform: scale(1.02);
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  /* Solid transparent white */
  margin: 2rem 0;
  width: 100%;
}

.redirect-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.redirect-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.redirect-link {
  color: #93c5fd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
  border-bottom: 1px solid transparent;
}

.redirect-link:hover {
  color: #bfdbfe;
  border-bottom-color: #bfdbfe;
  /* Solid underline on hover */
}

/* Removed animated underline pseudo-element */
.redirect-link::after {
  display: none;
}

.text-sm {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  opacity: 0.9;
}