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

:root {
  --bg: #060708;
  --panel: #0b0e12;
  --panel-soft: #10151c;
  --line: #1f2937;
  --line-bright: #2d3d52;
  --text: #ffffff;
  --muted: #9ca3af;
  --faint: #6b7280;
  --blue: #1e90ff;
  --cyan: #67e8f9;
  --blue-soft: rgba(30, 144, 255, 0.14);
  --cyan-soft: rgba(103, 232, 249, 0.08);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(30, 144, 255, 0.18), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(103, 232, 249, 0.08), transparent 24%),
    linear-gradient(180deg, #080a0d, var(--bg));
  color: var(--text);
  font-family: "Courier New", monospace;
  display: flex;
  justify-content: center;
  padding: 46px 20px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

#app {
  width: 100%;
  max-width: 660px;
  position: relative;
  z-index: 1;
}

i {
  line-height: 1;
}

.card {
  border: 1px solid rgba(45, 61, 82, 0.78);
  background:
    linear-gradient(135deg, rgba(16, 21, 28, 0.92), rgba(8, 9, 10, 0.88));
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.22);
}

.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(30, 144, 255, 0.16), transparent 38%),
    radial-gradient(circle at 95% 100%, rgba(103, 232, 249, 0.08), transparent 30%);
}

.profile {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
}

.profile-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), #111827);
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(30, 144, 255, 0.18);
  z-index: 1;
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  object-fit: cover;
  background: #050505;
  border: 4px solid #050505;
}

.profile-info {
  z-index: 1;
}

.eyebrow {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}

.typed-cursor {
  color: var(--cyan);
  font-weight: 900;
}

.profile h1 {
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(30, 144, 255, 0.25);
}

.role {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.profile-tags a {
  color: var(--text);
  font-size: 12px;
  border: 1px solid rgba(45, 61, 82, 0.9);
  background: rgba(30, 144, 255, 0.07);
  border-radius: 999px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: 0.2s ease;
}

.profile-tags a:hover {
  border-color: var(--blue);
  color: var(--cyan);
  background: rgba(30, 144, 255, 0.14);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-bright), transparent);
  margin: 40px 0 48px;
}

.section {
  margin-bottom: 40px;
}

.section-title {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-box {
  border-left: 3px solid var(--blue);
  padding: 19px;
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.about-top h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.about-top p,
.about-box p {
  color: var(--muted);
  font-size: 14px;
}

.about-badge {
  border: 1px solid rgba(103, 232, 249, 0.35);
  background: rgba(103, 232, 249, 0.08);
  color: var(--cyan);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.about-text {
  margin-top: 14px;
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-chip {
  border: 1px solid rgba(45, 61, 82, 0.85);
  background: rgba(30, 144, 255, 0.07);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-chip i {
  color: var(--cyan);
}

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

.list-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}

.list-item.clickable:hover {
  border-color: var(--blue);
  background:
    linear-gradient(135deg, var(--blue-soft), rgba(8, 9, 10, 0.92));
  transform: translateY(-2px);
}

.list-item.clickable:hover .item-info p,
.list-item.clickable:hover .item-arrow {
  color: var(--cyan);
}

.item-image {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
  border: 1px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-image span {
  display: none;
  white-space: pre-line;
  color: var(--blue);
  font-size: 8px;
  text-align: center;
  font-weight: 900;
}

.item-info h3 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 5px;
}

.item-info h3 span {
  color: var(--muted);
  font-weight: 400;
}

.item-info p {
  font-size: 14px;
  color: var(--text);
  transition: 0.2s ease;
}

.item-arrow {
  color: var(--faint);
  transition: 0.2s ease;
}

.services {
  width: 100%;
  overflow: hidden;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
  font-size: 14px;
}

.service-row:last-child {
  border-bottom: none;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.service-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(45, 61, 82, 0.85);
  background: rgba(30, 144, 255, 0.08);
  color: var(--cyan);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-price {
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

.contact-box {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  border-left: 3px solid var(--blue);
  padding: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-discord {
  margin-top: 10px;
}

.contact-discord span {
  color: var(--text);
  font-weight: 900;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--blue);
  background:
    linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(103, 232, 249, 0.08));
  border-radius: 999px;
  padding: 10px 15px;
  transition: 0.2s ease;
}

.contact-button.secondary {
  border-color: var(--line-bright);
  background: rgba(30, 144, 255, 0.08);
}

.contact-button:hover {
  box-shadow: 0 0 26px rgba(30, 144, 255, 0.22);
  transform: translateY(-2px);
}

.footer {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 560px) {
  body {
    padding: 28px 16px;
  }

  .profile {
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
  }

  .profile-photo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .profile-photo {
    border-radius: 17px;
  }

  .profile h1 {
    font-size: 23px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .profile-tags a {
    font-size: 11px;
    padding: 6px 9px;
  }

  .about-top {
    flex-direction: column;
  }

  .list-item {
    grid-template-columns: 40px 1fr;
  }

  .item-arrow {
    display: none;
  }

  .service-row {
    font-size: 13px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .service-price {
    padding-left: 46px;
    white-space: normal;
    text-align: left;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }
}
