:root {
  --bg-color: #1b1b1b;
  --accent-color: #07f49b;
  --accent-color-secondary: #ce22db;
  --accent-color-soft: rgba(7, 244, 155, 0.14);
  --text-color: #ffffff;
  --muted-text: #b3b3b3;
  --card-bg: #252525;
  --card-border: #333333;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 18px;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #1b1b1b;
  background-image: radial-gradient(circle at top, #252525 0, rgba(37, 37, 37, 0.9) 40%, transparent 70%);
  background-repeat: no-repeat;
  background-size: 100% 70vh;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

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

.logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  border: 1px solid var(--accent-color-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: radial-gradient(circle at 30% 0, #1e1e1e 0, #101010 48%, #050505 100%);
  box-shadow: 0 0 0 1px rgba(7, 244, 155, 0.3), 0 16px 45px rgba(0, 0, 0, 0.9);
}

.logo {
  width: 56px;
  height: 56px;
}

.title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.title-words-wrap {
  margin-top: 4px;
  margin-bottom: 8px;
}

.title-words {
  max-width: 260px;
  width: 80%;
  height: auto;
}

.tagline {
  font-size: 0.96rem;
  color: var(--muted-text);
}

.content {
  width: 100%;
  max-width: 460px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: linear-gradient(
    135deg,
    rgba(7, 244, 155, 0.08),
    rgba(206, 34, 219, 0.16)
  );
  box-shadow: var(--shadow-soft);
  color: var(--text-color);
  transition: transform 140ms ease-out, box-shadow 140ms ease-out, border-color 140ms ease-out,
    background-color 140ms ease-out;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-color-secondary);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.95);
  background-color: rgba(206, 34, 219, 0.16);
}

.link-card:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.link-label {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-description {
  font-size: 0.82rem;
  color: var(--muted-text);
}

.link-arrow {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.empty {
  text-align: center;
  color: var(--muted-text);
  font-size: 0.9rem;
}

.footer {
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--muted-text);
}

.footer-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .page {
    padding: 56px 16px;
  }

  .title {
    font-size: 2rem;
  }
}
