@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap");

:root {
  /* --bg: #bf77f6; */
  --surface: rgba(255, 255, 255, 0.25);
  --surface2: rgba(255, 255, 255, 0.18);
  --border: rgba(255, 255, 255, 0.35);
  --accent: #4a0080;
  --accent2: #7b00cc;
  --text: #1a0040;
  --muted: #5a0090;
  --glow: 0 0 20px rgba(255, 255, 255, 0.3);
  background: linear-gradient(to right, rgb(208, 13, 208), rgb(255, 129, 91));
  background-repeat: no-repeat;
  background-attachment: fixed;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Rajdhani", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
.orb,
.theme-toggle {
  display: none;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(to right, rgb(208, 13, 208), rgb(255, 129, 91));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: "Orbitron", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
main {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.hero {
  text-align: center;
  padding: 80px 0 60px;
}
.hero-tag {
  display: inline-block;
  font-family: "Orbitron", monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 20px;
  margin-bottom: 24px;
}
h1 {
  font-family: "Orbitron", monospace;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
h2 {
  font-family: "Orbitron", monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.data-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 2px;
}
.data-row::before {
  content: "▸";
  color: var(--accent);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}
.card:hover {
  border-color: rgba(130, 60, 220, 0.35);
  box-shadow: var(--glow);
}
.corner-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.4;
}
.profiles,
.hobby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.profile-card,
.hobby-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.profile-card {
  padding: 24px;
  text-align: center;
}
.profile-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.hobby-card:hover {
  border-color: var(--accent2);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(192, 96, 208, 0.2);
}
.profile-img-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.profile-img-wrapper::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
}
.profile-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.3s;
}
.profile-card:hover img {
  filter: grayscale(0%);
}
.profile-name {
  font-family: "Orbitron", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
}
.profile-role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
.hobby-img-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.hobby-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface2), transparent 50%);
}
.hobby-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition:
    transform 0.5s,
    filter 0.4s;
}
.hobby-card:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.hobby-info {
  padding: 20px;
}
.hobby-badge {
  display: inline-block;
  font-family: "Orbitron", monospace;
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--accent2);
  border: 1px solid rgba(192, 96, 208, 0.4);
  padding: 2px 10px;
  margin-bottom: 10px;
}
.hobby-name {
  font-family: "Orbitron", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 4px;
}
.hobby-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.tiktok-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  padding: 16px;
}
.embed-wrapper {
  position: relative;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
audio,
video {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  accent-color: var(--accent);
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  padding: 14px 32px;
  margin-top: 16px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.cta-link:hover {
  opacity: 0.85;
  transform: translateX(4px);
}
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--border);
  font-family: "Orbitron", monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--muted);
}
@media (max-width: 600px) {
  .profiles,
  .hobby-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 0 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-logo {
    display: none;
  }
  main {
    padding: 90px 16px 60px;
  }
}
