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

:root {
  --bg-color: #0b0f12;
  --card-bg: rgba(22, 31, 38, 0.6);
  --border-color: rgba(236, 72, 153, 0.15);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --accent-color: #ec4899;
  --accent-glow: rgba(236, 72, 153, 0.3);
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.12) 0%, rgba(11, 15, 18, 0) 70%);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff85a2 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(236, 72, 153, 0.05);
}

h2 {
  color: #ff85a2;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-top: 30px;
}

p, li {
  color: var(--text-primary);
  opacity: 0.9;
  font-size: 1rem;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-shadow: 0 0 8px var(--accent-glow);
  color: #ff85a2;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-color);
  background: rgba(11, 15, 18, 0.8);
}

.disclaimer {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0.7;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  background: linear-gradient(135deg, #ff85a2 0%, #ec4899 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: var(--text-primary);
}
