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

:root {
  --bg-color: #0a0e1a;
  --panel-bg: rgba(30, 41, 59, 0.7);
  --accent: #38bdf8;
  --text-primary: #f8fafc;
  --text-muted: #64748b;
}

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

body {
  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;
  word-wrap: break-word;
}

.container {
  width: min(90%, 800px);
  margin: 40px auto;
  flex: 1;
}

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

.logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
}

main {
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

h1 {
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  color: var(--accent);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

p {
  margin-bottom: 15px;
  color: #cad4e0;
}

ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #0a0e1a;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
  filter: brightness(1.1);
}

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--accent);
}

hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.back-link {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.back-link:hover {
  text-decoration: underline;
}
