* {
  box-sizing: border-box;
}

:root {
  --bg: #07111f;
  --bg2: #0b1d35;
  --card: rgba(11, 25, 44, 0.62);
  --card-border: rgba(166, 214, 255, 0.15);
  --text: #eef6ff;
  --muted: #aac2dd;
  --accent: #4ea2ff;
  --accent2: #77d4ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(78, 162, 255, 0.18), transparent 28%),
    radial-gradient(circle at right center, rgba(119, 212, 255, 0.16), transparent 24%),
    linear-gradient(160deg, #050b14 0%, var(--bg) 48%, var(--bg2) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.45;
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}

.orb-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 80px;
  background: rgba(78, 162, 255, 0.28);
}

.orb-2 {
  width: 200px;
  height: 200px;
  right: 70px;
  top: 120px;
  background: rgba(119, 212, 255, 0.16);
  animation-delay: -6s;
}

.orb-3 {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -60px;
  background: rgba(45, 126, 255, 0.15);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
  50% { transform: translateY(-18px) translateX(8px) scale(1.03); }
}

.shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  border-radius: 32px;
  padding: 18px;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.badge, .live {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
}

.profile, .content {
  min-width: 0;
}

.profile {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 35, 59, 0.86), rgba(10, 24, 40, 0.88));
  border: 1px solid rgba(255,255,255,0.08);
}

.photo-wrap {
  position: relative;
  width: 182px;
  height: 182px;
  margin: 0 auto 20px;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 42px rgba(0,0,0,0.35);
}

.photo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 34px;
  background: radial-gradient(circle at top left, rgba(119,212,255,0.6), transparent 45%),
              radial-gradient(circle at bottom right, rgba(78,162,255,0.5), transparent 45%);
  filter: blur(12px);
  opacity: 0.7;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.05;
}

.nickname, .lead {
  text-align: center;
  color: var(--muted);
}

.nickname {
  margin: 10px 0 4px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.lead {
  margin: 0 auto 22px;
  max-width: 280px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.mini-card strong {
  display: block;
  font-size: 0.98rem;
}

.content {
  display: grid;
  gap: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.card h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.info-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.info-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.info-list b {
  font-weight: 650;
  line-height: 1.45;
  word-break: break-word;
}

.second {
  align-items: start;
}

.wide {
  min-height: 100%;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  box-shadow: 0 0 0 5px rgba(78, 162, 255, 0.12);
  flex: 0 0 auto;
}

.timeline__title {
  margin: 0 0 4px;
  font-weight: 700;
}

.timeline__item p:last-child {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(78, 162, 255, 0.13);
  border: 1px solid rgba(78, 162, 255, 0.22);
  color: #dceeff;
  font-size: 0.92rem;
}

.about {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about h3 {
  margin: 0 0 8px;
}

.about p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-note {
  padding: 10px 4px 0;
  color: rgba(225,240,255,0.72);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero__grid, .info-grid {
    grid-template-columns: 1fr;
  }

  .profile {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 16px, 1180px);
    padding: 8px 0 18px;
  }

  .hero {
    padding: 12px;
    border-radius: 24px;
  }

  .profile, .card {
    border-radius: 22px;
    padding: 18px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .photo-wrap {
    width: 156px;
    height: 156px;
  }

  h1 {
    font-size: 1.9rem;
  }
}
