:root {
  --bg: #050505;
  --bg-gradient: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  --card: #141414;
  --text: #F3F3F3;
  --muted: #A1A1AA;
  --gold: #B4D6E4;
  --gold-gradient: linear-gradient(135deg, #E0F2FE 0%, #B4D6E4 50%, #93C2D7 100%);
  --radius-lg: 16px;
  --radius-md: 12px;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  color: var(--text);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.bio-page {
  width: 100%;
  max-width: 500px;
  min-height: 100vh;
  position: relative;
  background: transparent;
  padding-bottom: 60px;
}

.hero {
  position: relative;
  width: 100%;
  height: 480px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0) 30%, rgba(5,5,5,0.7) 65%, var(--bg) 100%);
  pointer-events: none;
}

.profile-info {
  text-align: center;
  margin-top: -80px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  padding: 0 20px;
}

.profile-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.profile-divider {
  width: 50px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 14px auto 20px;
  opacity: 0.6;
}

.profile-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.highlight-gold {
  color: var(--gold);
  font-weight: 500;
}

.profile-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-stats strong {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 500;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.profile-stats span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
}

.flags-text {
  margin-top: 16px;
  margin-bottom: 0;
}

.flags-container {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  vertical-align: middle;
  margin-left: 6px;
}

.flag-icon {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(180, 214, 228, 0.25);
  color: var(--gold);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.social-icon:hover, .social-icon:active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 214, 228, 0.15);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(145deg, #181818 0%, #0d0d0d 100%);
  border: 1px solid rgba(180, 214, 228, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(180, 214, 228, 0.05) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.7s ease;
}

.link-card:hover::before {
  left: 150%;
}

.link-card:hover, .link-card:active {
  border-color: rgba(180, 214, 228, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(180, 214, 228, 0.12);
}

.link-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  width: 100%;
}

.link-subtitle {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
  opacity: 0.9;
}

.link-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.testimonials {
  margin-top: 60px;
  width: 100%;
}

.testimonials-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  padding: 0 24px;
}

.testimonials-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text);
}

.testimonials-title span {
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 300px;
  font-weight: 300;
  text-align: center;
}

.testimonials-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 24px 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-padding: 24px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-image {
  flex-shrink: 0;
  width: 85vw;
  min-width: 320px;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-md);
  scroll-snap-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 20px 0 40px;
  display: flex;
  justify-content: center;
}

.footer .social-links {
  margin-top: 0;
}