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

:root {
  --bg: #0a0a0f;
  --card: #16151f;
  --line: rgba(255,255,255,0.1);
  --text: #f4f3f7;
  --text-dim: #a8a6b3;
  --accent: #35b8da;
  --gradient: linear-gradient(135deg, #35b8da 0%, #fcb316 55%, #e85e25 100%);
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.top-banner {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  overflow: hidden;
  flex-shrink: 0;
}
.top-banner img {
  flex: 1 1 33.34%;
  width: 33.34%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: saturate(0.75) contrast(1.05);
}
.top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(12,28,46,0.6), rgba(46,22,14,0.55));
  mix-blend-mode: multiply;
}
.top-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.32) 0%, rgba(10,10,15,0.55) 45%, var(--bg) 92%),
    linear-gradient(90deg, rgba(10,10,15,0.65) 0%, transparent 18%, transparent 82%, rgba(10,10,15,0.65) 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(55% 40% at 15% 0%, rgba(53,184,218,0.22), transparent 65%),
    radial-gradient(55% 45% at 90% 15%, rgba(232,94,37,0.18), transparent 65%),
    radial-gradient(60% 40% at 50% 100%, rgba(252,179,22,0.12), transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin-top: -64px;
  padding: 0 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo { height: 68px; margin-bottom: 18px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55)); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.badge::before, .badge::after { content: ''; width: 16px; height: 1px; background: var(--gradient); }

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.role {
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 340px;
  margin-bottom: 34px;
  line-height: 1.55;
}
.role strong { color: var(--text); font-weight: 600; }

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15.5px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--line);
  background: var(--card);
}
.link-btn:hover { transform: translateY(-2px); }

.link-btn.primary {
  background: var(--gradient);
  color: #0a0a0f;
  border: none;
  box-shadow: 0 12px 34px -10px rgba(232,94,37,0.55);
}
.link-btn.primary:hover { box-shadow: 0 16px 40px -8px rgba(232,94,37,0.7); }
.link-btn.primary .link-sub { color: rgba(10,10,15,0.65); }

.link-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
}
.link-icon img { width: 28px; height: 28px; object-fit: contain; }
.link-btn.primary .link-icon { background: rgba(10,10,15,0.14); }

.link-text { flex-grow: 1; }
.link-title { display: block; }
.link-sub { display: block; font-size: 12.5px; font-weight: 500; color: var(--text-dim); margin-top: 2px; }

.link-arrow { flex-shrink: 0; font-size: 18px; opacity: 0.6; }

.socials {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}
.socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s ease;
}
.socials a:hover { color: var(--text); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.socials svg.ig-icon { fill: none; stroke: currentColor; stroke-width: 1.8px; }
.socials svg.ig-icon .ig-dot { fill: currentColor; stroke: none; }

footer {
  color: var(--text-dim);
  font-size: 12px;
}

@media (max-width: 380px) {
  .top-banner { height: 220px; }
  h1 { font-size: 22px; }
  .link-btn { padding: 16px 18px; font-size: 14.5px; }
}
