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

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

:root {
  --bg: #101222;
  --card: #131829;
  --border: #1e293b;
  --primary: #1325ec;
  --primary-soft: rgba(19,37,236,0.08);
  --text: #e2e8f0;
  --muted: #64748b;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

body::before {
  content: '';
  position: fixed;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 3rem;
  width: 100%;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 0.5rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.link-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.link-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.link-icon { font-size: 1.5rem; }
.link-title { font-weight: 600; font-size: 0.9rem; }
.link-desc { color: var(--muted); font-size: 0.75rem; }

footer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-private-link {
  color: var(--muted);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-private-link:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .links-grid { grid-template-columns: 1fr; }
  .card { padding: 1.5rem; }
}
