:root {
  --text-dark: #6e312e;
  --text-muted: #8c5a58;
  --selection-bg: #f9e4ee;
  --selection-text: #9b7286;
  --border-thin: rgba(255, 255, 255, 0.9);
  --bg-window: rgba(255, 255, 255, 0.8);
  --art-bg: #f8e4ee;
  --dev-bg: #e8eff4;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}
::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  background: linear-gradient(180deg, #e6f0fa 0%, #ffffff 100%);
  position: relative;
}

.bg-glow {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: -2;
  pointer-events: none;
}

.view-section {
  display: none;
  width: 100%;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
  flex-grow: 1;
}

.view-section.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hub-container {
  width: 100%;
  max-width: 450px;
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.hub-card {
  background: var(--bg-window);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-thin);
  border-radius: 4px;
  padding: 60px 30px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(110, 49, 46, 0.05);
  position: relative;
  margin-top: 60px;
}

.hub-pfp {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fcf7f9;
  background: #ffffff;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 8px 25px rgba(110, 49, 46, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.hub-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin: 10px 0 2px 0;
  font-weight: 500;
}

.hub-card .subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.hub-bio {
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

.hub-bio b {
  background-color: #fff4a3;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
  color: var(--text-dark);
  -webkit-user-select: none;
  user-select: none;
}

.hub-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-hub {
  border: 1px solid var(--border-thin);
  border-radius: 4px;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  width: 100%;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.btn-art-port {
  background: var(--art-bg);
}

.btn-dev-port {
  background: var(--dev-bg);
}

.btn-hub:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 49, 46, 0.06);
  border-color: #ffffff;
  filter: brightness(1.02);
}

.external-icon {
  font-size: 0.75rem;
  opacity: 0.4;
  position: absolute;
  right: 15px;
}

.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 100%;
  letter-spacing: 0.5px;
  z-index: 10;
  position: relative;
}

.footer a {
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.2s;
  border-bottom: 1px solid var(--border-thin);
  padding-bottom: 2px;
}

.footer a:hover {
  opacity: 0.6;
}
