:root {
  --bg-overlay: rgba(0, 0, 0, 0.3);
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.25);
  --text: #ffffff;
  --muted: #e8e8e8;
  --primary: #ffffff;
  --accent: #f0f0f0;
  --secondary: #000000;
  --glow: 0 25px 50px rgba(255, 255, 255, 0.15);
  --tiltX: 0deg;
  --tiltY: 0deg;
  --pink-accent: rgba(255, 192, 203, 0.3);
  --white-glow: rgba(255, 255, 255, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2a2a2a 50%, #000000 75%, #1a1a1a 100%);
  background-size: 400% 400%, 300% 300%, 500% 500%, 400% 400%;
  animation: girlyGradient 20s ease infinite;
  min-height: 100vh;
}

@keyframes girlyGradient {
  0% { 
    background-position: 0% 50%, 0% 0%, 0% 0%, 0% 50%; 
  }
  25% { 
    background-position: 100% 50%, 100% 100%, 25% 25%, 25% 25%; 
  }
  50% { 
    background-position: 50% 100%, 50% 50%, 50% 50%, 50% 100%; 
  }
  75% { 
    background-position: 25% 25%, 25% 25%, 75% 75%, 75% 75%; 
  }
  100% { 
    background-position: 0% 50%, 0% 0%, 0% 0%, 0% 50%; 
  }
}

#app::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--site-bg, #0b1020) center/cover no-repeat fixed;
  filter: brightness(0.9) saturate(1.1);
}

.bg-animated {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.bg-animated canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

body.animated-bg #app::before { display: none; }

.bg-animated::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(1200px 600px at 20% 10%, color-mix(in oklab, var(--primary) 24%, transparent), transparent 60%),
              radial-gradient(900px 500px at 90% 80%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 60%),
              linear-gradient(to bottom right, rgba(0,0,0,.2), rgba(0,0,0,.5));
  filter: saturate(1.1);
}

.bg-animated .blob {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blob-color, #6c5ce7), rgba(0,0,0,0) 60%);
  filter: blur(50px) saturate(1.2);
  opacity: .45;
  mix-blend-mode: screen;
  transform: translate(var(--x, 0), var(--y, 0)) scale(var(--s, 1));
  animation: drift var(--d, 28s) ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(var(--x), var(--y)) scale(var(--s)); }
  to   { transform: translate(var(--tx), var(--ty)) scale(var(--s)); }
}

.bg-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: .06;
}

@media (prefers-reduced-motion: reduce) {
  .bg-animated .blob { animation: none !important }
}

#app::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(108,92,231,.25), transparent 60%),
              radial-gradient(900px 500px at 90% 80%, rgba(0,209,255,.18), transparent 60%),
              linear-gradient(to bottom right, rgba(0,0,0,.2), rgba(0,0,0,.5));
}

main {
  height: 100dvh;
  height: 100svh;
  display: grid;
  place-items: center;
  padding: 16px;
  perspective: 1000px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  main {
    padding: 12px;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100vh;
  }
}

@media (max-width: 480px) {
  main {
    padding: 8px;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 100vh;
  }
}

.profile-card {
  position: relative;
  width: min(95vw, 480px);
  border-radius: 40px;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 192, 203, 0.1) 0%, transparent 70%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 0 2px rgba(255, 192, 203, 0.1),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px) saturate(1.8);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  contain: layout paint;
}

@media (max-width: 768px) {
  .profile-card {
    width: min(98vw, 400px);
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.12),
      0 0 0 2px rgba(255, 192, 203, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 480px) {
  .profile-card {
    width: 98vw;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 15px 30px rgba(0, 0, 0, 0.25),
      0 0 0 1px rgba(255, 255, 255, 0.1),
      0 0 0 2px rgba(255, 192, 203, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}
.tilt-wrap {
  transform-style: preserve-3d;
  transform: rotateX(var(--tiltX)) rotateY(var(--tiltY));
  will-change: transform;
}

.profile-card::before,
.profile-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  filter: blur(40px) saturate(1.2);
}

.profile-card::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent), transparent 35%), transparent 70%);
  top: -60px;
  left: -60px;
}

.profile-card::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--primary), transparent 35%), transparent 70%);
  bottom: -80px;
  right: -80px;
}



.banner {
  position: relative;
  height: clamp(220px, 38vw, 320px);
  overflow: hidden;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 192, 203, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
    linear-gradient(135deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(40, 40, 40, 0.4) 50%,
      rgba(255, 255, 255, 0.08) 100%
    );
}

@media (max-width: 768px) {
  .banner {
    height: clamp(180px, 35vw, 280px);
  }
}

@media (max-width: 480px) {
  .banner {
    height: clamp(160px, 32vw, 240px);
  }
}

.banner.no-image {
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--primary) 35%, transparent) 0%,
    color-mix(in oklab, var(--accent) 25%, transparent) 50%,
    color-mix(in oklab, var(--primary) 20%, transparent) 100%
  );
  position: relative;
}

.banner.no-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: bannerGlow 8s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.banner.no-image img { display: none }

.banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.55));
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.15) 35%, transparent 45%);
  transform: translateX(-100%);
  animation: bannerShine 6s ease-in-out infinite;
}

@keyframes bannerShine {
  0%, 20% { transform: translateX(-120%) }
  50% { transform: translateX(120%) }
  100% { transform: translateX(120%) }
}

.avatar-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: -90px;
  min-height: 180px;
}

@media (max-width: 768px) {
  .avatar-wrapper {
    margin-top: -75px;
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .avatar-wrapper {
    margin-top: -65px;
    min-height: 130px;
  }
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 0 10px rgba(255, 255, 255, 0.25),
    0 0 0 15px rgba(255, 192, 203, 0.2),
    0 0 0 20px rgba(0, 0, 0, 0.2);
  background: #111;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .avatar {
    width: 150px;
    height: 150px;
    border: 4px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
      0 15px 30px rgba(0, 0, 0, 0.4),
      0 0 0 8px rgba(255, 255, 255, 0.2),
      0 0 0 12px rgba(255, 192, 203, 0.15),
      0 0 0 16px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 480px) {
  .avatar {
    width: 130px;
    height: 130px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
      0 12px 25px rgba(0, 0, 0, 0.35),
      0 0 0 6px rgba(255, 255, 255, 0.18),
      0 0 0 10px rgba(255, 192, 203, 0.12),
      0 0 0 14px rgba(0, 0, 0, 0.12);
  }
}

.avatar:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 0 10px rgba(255, 255, 255, 0.35),
    0 0 0 15px rgba(255, 192, 203, 0.3),
    0 0 0 20px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(255, 192, 203, 0.4);
}

.avatar-wrapper.fallback::before {
  content: "";
  position: absolute;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, var(--accent), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--primary), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 40%),
    linear-gradient(135deg, #1a1a2e, #16213e);
  border: 4px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(255,255,255,0.12);
  z-index: 0;
  animation: avatarPulse 4s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { 
    transform: scale(1);
    filter: brightness(1) saturate(1);
  }
  50% { 
    transform: scale(1.02);
    filter: brightness(1.1) saturate(1.2);
  }
}

.avatar-wrapper.fallback::after {
  content: "👤";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-3px); }
}

.avatar-wrapper.fallback .avatar { display: none }

.avatar-ring {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--accent), transparent 40%, var(--primary), transparent 70%);
  filter: blur(8px) saturate(1.3);
  opacity: .8;
  z-index: -1;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg) }
}

.role-badge .label {
  font-weight: 600;
  letter-spacing: .3px;
}

.content {
  text-align: center;
  padding: 16px 18px 28px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name {
  margin: 20px 0 12px;
  font-size: clamp(32px, 4.8vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff, #ffc0cb, #ffffff, #f0f0f0);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 0 rgba(0,0,0,0);
  min-height: 1.2em;
  animation: girlyTextShimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 192, 203, 0.3));
}

@media (max-width: 768px) {
  .name {
    margin: 15px 0 10px;
    font-size: clamp(28px, 5.2vw, 36px);
    letter-spacing: 0.8px;
  }
}

@media (max-width: 480px) {
  .name {
    margin: 12px 0 8px;
    font-size: clamp(24px, 5.5vw, 32px);
    letter-spacing: 0.6px;
  }
}

@keyframes girlyTextShimmer {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

.roles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  min-height: 44px;
  align-items: center;
}

@media (max-width: 768px) {
  .roles {
    gap: 8px;
    margin-top: 4px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .roles {
    gap: 6px;
    margin-top: 3px;
    min-height: 36px;
  }
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.3);
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,192,203,0.1) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 70%);
  color: var(--text);
  box-shadow: 
    0 6px 20px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,192,203,0.2),
    inset 0 2px 0 rgba(255,255,255,0.2);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
}

@media (max-width: 768px) {
  .role-badge {
    padding: 10px 16px;
    border-radius: 25px;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.25);
  }
}

@media (max-width: 480px) {
  .role-badge {
    padding: 8px 12px;
    border-radius: 20px;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
  }
}

.role-badge:hover {
  transform: translateY(-8px) scale(1.08) rotate(1deg);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 
    0 12px 30px rgba(255,192,203,0.3),
    0 0 0 2px rgba(255,255,255,0.4),
    0 0 20px rgba(255,192,203,0.2);
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,192,203,0.2) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.role-badge .icon {
  width: 18px; height: 18px;
  display: inline-block;
}

.socials {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 44px;
  align-items: center;
}

@media (max-width: 768px) {
  .socials {
    margin-top: 15px;
    gap: 10px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .socials {
    margin-top: 12px;
    gap: 8px;
    min-height: 36px;
  }
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,192,203,0.08) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 70%);
  color: var(--text);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,192,203,0.15),
    inset 0 2px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
}

@media (max-width: 768px) {
  .socials a {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.25);
  }
}

@media (max-width: 480px) {
  .socials a {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.2);
  }
}

.socials a[title*="ID:"] {
  width: auto;
  min-width: 80px;
  padding: 0 12px;
  border-radius: 999px;
  gap: 6px;
}

.socials a[title*="ID:"] span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.socials a i {
  font-size: 18px;
}

.socials a:hover {
  transform: translateY(-8px) scale(1.15) rotate(3deg);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 
    0 18px 35px rgba(255,192,203,0.4),
    0 0 0 2px rgba(255,255,255,0.4),
    0 0 25px rgba(255,192,203,0.3);
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,192,203,0.15) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.socials svg { width: 22px; height: 22px; }

.socials a .ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 60%);
  animation: ripple .6s ease-out forwards;
}

@keyframes ripple {
  from { width: 0; height: 0; opacity: .7 }
  to { width: 140px; height: 140px; opacity: 0 }
}

@media (max-width: 420px) {
  .avatar { width: 120px; height: 120px }
  .avatar-ring { width: 148px; height: 148px }
}

.profile-card { opacity: 0; }
.profile-card.revealed { opacity: 1; transition: opacity .6s ease; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important }
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  padding: 16px 0;
}

@media (max-width: 768px) {
  .footer {
    display: none;
  }
}


.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 12px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-brand {
    gap: 8px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-brand {
    gap: 6px;
    font-size: 12px;
  }
}

.brand-text {
  color: var(--accent);
  font-weight: 600;
}

.separator {
  color: var(--muted);
  opacity: 0.5;
}

.copyright {
  color: var(--muted);
}

.discord-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .discord-link {
    gap: 6px;
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .discord-link {
    gap: 4px;
    font-size: 12px;
    padding: 5px 8px;
  }
}

.discord-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.discord-link i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .discord-link i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .discord-link i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 16px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .socials a:hover,
  .role-badge:hover,
  .avatar:hover {
    transform: none;
  }
  
  .socials a:active,
  .role-badge:active {
    transform: scale(0.95);
  }
  
  .avatar:active {
    transform: scale(0.98);
  }
}

@media (max-width: 480px) {
  .content {
    padding: 12px 16px 24px;
    min-height: 100px;
  }
  
  .socials a i {
    font-size: 16px;
  }
  
  .socials svg {
    width: 20px;
    height: 20px;
  }
  
  .role-badge .icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  
  .profile-card {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .profile-card {
    margin: 0 auto;
    max-width: calc(100vw - 16px);
  }
}
