/* =============================================
   GAMEBIOV1 - Temas Visuais Completos
   Seletor .profile-page[data-theme] garante
   especificidade maior que profile.css
   ============================================= */

/* ============================================================
   ANIMAÇÕES GLOBAIS
   ============================================================ */
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
@keyframes flicker {
  0%,
  94%,
  100% {
    opacity: 1;
  }
  95% {
    opacity: 0.4;
  }
  97% {
    opacity: 0.9;
  }
}
@keyframes spooky-glow {
  0%,
  100% {
    text-shadow:
      0 0 20px rgba(255, 102, 0, 0.6),
      0 0 40px rgba(204, 68, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 35px rgba(255, 102, 0, 1),
      0 0 70px rgba(204, 68, 255, 0.6);
  }
}
@keyframes petals {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translateY(10px) rotate(5deg);
    opacity: 0.3;
  }
}
@keyframes float-star {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

/* ============================================================
   NEON (padrão)
   ============================================================ */
html.theme-neon,
body.theme-neon {
  background: #0a0a12 !important;
}

.profile-page[data-theme="neon"] {
  --accent: #06b6d4;
  background: #0a0a12;
}

.profile-page[data-theme="neon"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #06b6d4,
    #6366f1,
    #06b6d4,
    transparent
  );
  z-index: 10;
}
.profile-page[data-theme="neon"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #e2e8f0;
  -webkit-text-fill-color: #e2e8f0;
}
.profile-page[data-theme="neon"] .profile-username {
  color: #06b6d4;
}
.profile-page[data-theme="neon"] .profile-section__title {
  color: #06b6d4;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.profile-page[data-theme="neon"] .btn-follow {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  border-radius: 8px;
}
.profile-page[data-theme="neon"] .profile-avatar {
  border-color: #6366f1;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}
.profile-page[data-theme="neon"] .pub-link {
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 10px;
  color: #e2e8f0;
}
.profile-page[data-theme="neon"] .pub-link:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: #6366f1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transform: translateX(4px);
  opacity: 1;
  color: #e2e8f0;
}
.profile-page[data-theme="neon"] .pub-platform {
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(99, 102, 241, 0.04);
  border-radius: 10px;
}
.profile-page[data-theme="neon"] .pub-platform:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
  opacity: 1;
}
.profile-page[data-theme="neon"] .pub-platform__name {
  color: #e2e8f0;
}
.profile-page[data-theme="neon"] .pub-platform__user {
  color: #64748b;
}
.profile-page[data-theme="neon"] .pub-game {
  border-color: rgba(99, 102, 241, 0.2);
  border-radius: 10px;
}
.profile-page[data-theme="neon"] .pub-game:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
  border-color: #6366f1;
}
.profile-page[data-theme="neon"] .pub-game__name {
  color: #e2e8f0;
}
.profile-page[data-theme="neon"] .pub-game__plat {
  color: #64748b;
}

/* ============================================================
   CYBERPUNK
   ============================================================ */
html.theme-cyberpunk,
body.theme-cyberpunk {
  background: #0d0d0d !important;
}

.profile-page[data-theme="cyberpunk"] {
  --accent: #f0e040;
  --border: rgba(240, 224, 64, 0.15);
  background: #0d0d0d;
  background-image:
    linear-gradient(rgba(240, 224, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 224, 64, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.profile-page[data-theme="cyberpunk"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #f0e040,
    #ff6b00,
    #f0e040,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="cyberpunk"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #f0e040;
  -webkit-text-fill-color: #f0e040;
  text-shadow:
    2px 2px 0 #ff2d78,
    0 0 20px rgba(240, 224, 64, 0.5);
  letter-spacing: 0.05em;
}
.profile-page[data-theme="cyberpunk"] .profile-username {
  color: #ff2d78;
}
.profile-page[data-theme="cyberpunk"] .profile-section__title {
  color: #f0e040;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(240, 224, 64, 0.3);
  padding-bottom: 0.4rem;
  text-shadow: 0 0 10px rgba(240, 224, 64, 0.5);
}
.profile-page[data-theme="cyberpunk"] .btn-follow {
  background: #f0e040;
  color: #000;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: 0.1em;
  box-shadow: 4px 4px 0 #ff2d78;
  clip-path: polygon(
    0 0,
    calc(100% - 6px) 0,
    100% 6px,
    100% 100%,
    6px 100%,
    0 calc(100% - 6px)
  );
}
.profile-page[data-theme="cyberpunk"] .btn-follow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #ff2d78;
  opacity: 1;
}
.profile-page[data-theme="cyberpunk"] .profile-avatar {
  border-radius: 0;
  border: 2px solid #f0e040;
  box-shadow: 4px 4px 0 #ff2d78;
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}
.profile-page[data-theme="cyberpunk"] .pub-link {
  background: rgba(240, 224, 64, 0.04);
  border: 1px solid rgba(240, 224, 64, 0.3);
  border-radius: 0;
  color: #f0f0f0;
  font-weight: 700;
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}
.profile-page[data-theme="cyberpunk"] .pub-link:hover {
  background: rgba(240, 224, 64, 0.08);
  border-color: #f0e040;
  box-shadow:
    0 0 20px rgba(240, 224, 64, 0.5),
    4px 4px 0 rgba(255, 45, 120, 0.3);
  transform: translateX(6px);
  opacity: 1;
  color: #f0e040;
}
.profile-page[data-theme="cyberpunk"] .pub-platform {
  border-radius: 0;
  border-color: rgba(240, 224, 64, 0.25);
  background: rgba(240, 224, 64, 0.04);
  clip-path: polygon(
    0 0,
    calc(100% - 5px) 0,
    100% 5px,
    100% 100%,
    5px 100%,
    0 calc(100% - 5px)
  );
}
.profile-page[data-theme="cyberpunk"] .pub-platform:hover {
  border-color: #f0e040;
  box-shadow: 0 0 15px rgba(240, 224, 64, 0.3);
  transform: translateX(4px);
  opacity: 1;
}
.profile-page[data-theme="cyberpunk"] .pub-platform__name {
  color: #f0e040;
}
.profile-page[data-theme="cyberpunk"] .pub-platform__user {
  color: #ff2d78;
}
.profile-page[data-theme="cyberpunk"] .pub-game {
  border-radius: 0;
  border-color: rgba(240, 224, 64, 0.2);
  box-shadow: 3px 3px 0 rgba(255, 45, 120, 0.2);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.profile-page[data-theme="cyberpunk"] .pub-game:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(255, 45, 120, 0.3);
  border-color: #f0e040;
}
.profile-page[data-theme="cyberpunk"] .pub-game__name {
  color: #f0e040;
}
.profile-page[data-theme="cyberpunk"] .pub-game__plat {
  color: #ff2d78;
}

/* ============================================================
   DRACULA
   ============================================================ */
html.theme-dracula,
body.theme-dracula {
  background: #0d1117 !important;
}

.profile-page[data-theme="dracula"] {
  --accent: #ff79c6;
  --border: rgba(189, 147, 249, 0.2);
  background: #0d1117;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(189, 147, 249, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 121, 198, 0.05) 0%,
      transparent 40%
    );
}

.profile-page[data-theme="dracula"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff79c6,
    #bd93f9,
    #ff79c6,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="dracula"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #bd93f9;
  -webkit-text-fill-color: #bd93f9;
  text-shadow: 0 0 30px rgba(189, 147, 249, 0.5);
}
.profile-page[data-theme="dracula"] .profile-username {
  color: #ff79c6;
}
.profile-page[data-theme="dracula"] .profile-section__title {
  color: #ff79c6;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.profile-page[data-theme="dracula"] .btn-follow {
  background: linear-gradient(135deg, #bd93f9, #ff79c6);
  color: #000;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(189, 147, 249, 0.4);
}
.profile-page[data-theme="dracula"] .profile-avatar {
  border-color: #bd93f9;
  box-shadow: 0 0 20px rgba(189, 147, 249, 0.3);
}
.profile-page[data-theme="dracula"] .pub-link {
  background: rgba(189, 147, 249, 0.05);
  border: 1px solid rgba(189, 147, 249, 0.2);
  border-radius: 12px;
  color: #f8f8f2;
}
.profile-page[data-theme="dracula"] .pub-link:hover {
  background: rgba(189, 147, 249, 0.1);
  border-color: #bd93f9;
  box-shadow: 0 0 25px rgba(189, 147, 249, 0.35);
  transform: translateX(4px) scale(1.01);
  opacity: 1;
  color: #f8f8f2;
}
.profile-page[data-theme="dracula"] .pub-platform {
  border-radius: 12px;
  border-color: rgba(189, 147, 249, 0.2);
  background: rgba(189, 147, 249, 0.04);
}
.profile-page[data-theme="dracula"] .pub-platform:hover {
  border-color: #bd93f9;
  background: rgba(189, 147, 249, 0.1);
  box-shadow: 0 0 20px rgba(189, 147, 249, 0.25);
  opacity: 1;
}
.profile-page[data-theme="dracula"] .pub-platform__name {
  color: #bd93f9;
}
.profile-page[data-theme="dracula"] .pub-platform__user {
  color: #ff79c6;
}
.profile-page[data-theme="dracula"] .pub-game {
  border-radius: 12px;
  border-color: rgba(189, 147, 249, 0.2);
}
.profile-page[data-theme="dracula"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(189, 147, 249, 0.25);
  border-color: #bd93f9;
}
.profile-page[data-theme="dracula"] .pub-game__name {
  color: #bd93f9;
}
.profile-page[data-theme="dracula"] .pub-game__plat {
  color: #ff79c6;
}

/* ============================================================
   MATRIX TERMINAL
   ============================================================ */
html.theme-matrix,
body.theme-matrix {
  background: #000 !important;
}

.profile-page[data-theme="matrix"] {
  --accent: #008f11;
  --border: rgba(0, 255, 70, 0.15);
  background: #000;
}

.profile-page[data-theme="matrix"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #008f11,
    #00ff41,
    #008f11,
    transparent
  );
  z-index: 10;
}
.profile-page[data-theme="matrix"] .profile-name {
  font-family: "JetBrains Mono", "Courier New", monospace;
  color: #00ff41;
  -webkit-text-fill-color: #00ff41;
  text-shadow:
    0 0 10px #00ff41,
    0 0 30px rgba(0, 255, 65, 0.5);
  letter-spacing: 0.08em;
}
.profile-page[data-theme="matrix"] .profile-username,
.profile-page[data-theme="matrix"] .profile-bio,
.profile-page[data-theme="matrix"] .profile-tagline {
  color: #008f11;
}
.profile-page[data-theme="matrix"] .profile-section__title {
  color: #008f11;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border-left: 3px solid #00ff41;
  padding-left: 0.5rem;
  text-shadow: 0 0 8px #00ff41;
}
.profile-page[data-theme="matrix"] .btn-follow {
  background: transparent;
  color: #00ff41;
  border: 1px solid #00ff41;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.1em;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}
.profile-page[data-theme="matrix"] .btn-follow:hover {
  background: #00ff41;
  color: #000;
  opacity: 1;
}
.profile-page[data-theme="matrix"] .profile-avatar {
  border-color: #00ff41;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}
/* Link com cursor piscando */
.profile-page[data-theme="matrix"] .pub-link {
  background: rgba(0, 255, 65, 0.04);
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 4px;
  color: #00ff41;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  position: relative;
}
.profile-page[data-theme="matrix"] .pub-link .pub-link__title::after {
  content: "_";
  animation: blink 1s infinite;
  color: #00ff41;
  margin-left: 3px;
}
.profile-page[data-theme="matrix"] .pub-link:hover {
  background: #00ff41;
  color: #000;
  border-color: #00ff41;
  box-shadow:
    0 0 15px rgba(0, 255, 65, 0.6),
    inset 0 0 15px rgba(0, 255, 65, 0.05);
  opacity: 1;
  transform: none;
}
.profile-page[data-theme="matrix"] .pub-link:hover .pub-link__title::after {
  color: #000;
}
.profile-page[data-theme="matrix"] .pub-link:hover .pub-link__icon i {
  color: #000 !important;
}
.profile-page[data-theme="matrix"] .pub-link__arrow {
  color: #008f11;
}
.profile-page[data-theme="matrix"] .pub-platform {
  border-radius: 4px;
  border-color: rgba(0, 255, 65, 0.2);
  background: rgba(0, 255, 65, 0.03);
  font-family: "JetBrains Mono", monospace;
}
.profile-page[data-theme="matrix"] .pub-platform:hover {
  border-color: #00ff41;
  background: rgba(0, 255, 65, 0.08);
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.3);
  opacity: 1;
}
.profile-page[data-theme="matrix"] .pub-platform__name {
  color: #00ff41;
  font-family: "JetBrains Mono", monospace;
}
.profile-page[data-theme="matrix"] .pub-platform__user {
  color: #008f11;
  font-family: "JetBrains Mono", monospace;
}
.profile-page[data-theme="matrix"] .pub-game {
  border-radius: 4px;
  border-color: rgba(0, 255, 65, 0.2);
}
.profile-page[data-theme="matrix"] .pub-game:hover {
  border-color: #00ff41;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}
.profile-page[data-theme="matrix"] .pub-game__info {
  background: #001a00;
}
.profile-page[data-theme="matrix"] .pub-game__name {
  color: #00ff41;
  font-family: "JetBrains Mono", monospace;
}
.profile-page[data-theme="matrix"] .pub-game__plat {
  color: #008f11;
}

/* ============================================================
   SYNTHWAVE 80s
   ============================================================ */
html.theme-synthwave,
body.theme-synthwave {
  background: #0f0520 !important;
}

.profile-page[data-theme="synthwave"] {
  --accent: #e879f9;
  --border: rgba(255, 110, 199, 0.2);
  background: #0f0520;
  background-image:
    linear-gradient(0deg, rgba(255, 110, 199, 0.06) 0%, transparent 30%),
    linear-gradient(rgba(255, 110, 199, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 110, 199, 0.03) 1px, transparent 1px);
  background-size:
    100% 100%,
    60px 60px,
    60px 60px;
}

.profile-page[data-theme="synthwave"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #e879f9,
    #06b6d4,
    #e879f9,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="synthwave"] .profile-name {
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(135deg, #ff6ec7, #ffe801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 110, 199, 0.5));
}
.profile-page[data-theme="synthwave"] .profile-username {
  color: #ffe801;
}
.profile-page[data-theme="synthwave"] .profile-section__title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #ff6ec7, #ffe801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.profile-page[data-theme="synthwave"] .btn-follow {
  background: linear-gradient(135deg, #ff6ec7, #c850c0);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 110, 199, 0.5);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
}
.profile-page[data-theme="synthwave"] .profile-avatar {
  border-color: #ff6ec7;
  box-shadow:
    0 0 25px rgba(255, 110, 199, 0.4),
    0 0 50px rgba(255, 232, 1, 0.1);
}
.profile-page[data-theme="synthwave"] .pub-link {
  background: rgba(255, 110, 199, 0.05);
  border: 1px solid rgba(255, 110, 199, 0.25);
  border-radius: 8px;
  color: #f0e6ff;
}
.profile-page[data-theme="synthwave"] .pub-link:hover {
  background: rgba(255, 110, 199, 0.12);
  border-color: #ff6ec7;
  box-shadow:
    0 0 25px rgba(255, 110, 199, 0.5),
    0 0 50px rgba(255, 232, 1, 0.1);
  transform: translateY(-2px) scale(1.01);
  opacity: 1;
  color: #f0e6ff;
}
.profile-page[data-theme="synthwave"] .pub-platform {
  border-radius: 8px;
  border-color: rgba(255, 110, 199, 0.2);
  background: rgba(255, 110, 199, 0.04);
}
.profile-page[data-theme="synthwave"] .pub-platform:hover {
  border-color: #ff6ec7;
  background: rgba(255, 110, 199, 0.1);
  box-shadow: 0 0 20px rgba(255, 110, 199, 0.3);
  transform: translateX(4px);
  opacity: 1;
}
.profile-page[data-theme="synthwave"] .pub-platform__name {
  color: #ff6ec7;
}
.profile-page[data-theme="synthwave"] .pub-platform__user {
  color: #ffe801;
}
.profile-page[data-theme="synthwave"] .pub-game {
  border-radius: 8px;
  border-color: rgba(255, 110, 199, 0.2);
}
.profile-page[data-theme="synthwave"] .pub-game:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 110, 199, 0.3);
  border-color: #ff6ec7;
}
.profile-page[data-theme="synthwave"] .pub-game__name {
  color: #ff6ec7;
}
.profile-page[data-theme="synthwave"] .pub-game__plat {
  color: #ffe801;
}

/* ============================================================
   PIXEL 8-BIT
   ============================================================ */
html.theme-pixel,
body.theme-pixel {
  background: #1a1a2e !important;
}

.profile-page[data-theme="pixel"] {
  --accent: #e94560;
  background: #1a1a2e;
}

.profile-page[data-theme="pixel"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #e94560,
    #f0e040,
    #e94560,
    transparent
  );
  z-index: 10;
}
.profile-page[data-theme="pixel"] .profile-name {
  font-family: "JetBrains Mono", monospace;
  color: #e94560;
  -webkit-text-fill-color: #e94560;
  text-shadow: 3px 3px 0 rgba(233, 69, 96, 0.3);
  font-size: 1rem;
  line-height: 1.6;
}
.profile-page[data-theme="pixel"] .profile-username {
  color: rgba(233, 69, 96, 0.7);
}
.profile-page[data-theme="pixel"] .profile-section__title {
  color: #e94560;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  border-left: 4px solid #e94560;
  padding-left: 0.5rem;
  text-shadow: 2px 2px 0 rgba(233, 69, 96, 0.3);
}
.profile-page[data-theme="pixel"] .btn-follow {
  background: #e94560;
  color: #fff;
  border-radius: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  box-shadow: 3px 3px 0 rgba(233, 69, 96, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.profile-page[data-theme="pixel"] .btn-follow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(233, 69, 96, 0.4);
  opacity: 1;
}
.profile-page[data-theme="pixel"] .profile-avatar {
  border-radius: 0;
  border: 3px solid #e94560;
  box-shadow: 4px 4px 0 rgba(233, 69, 96, 0.4);
  image-rendering: pixelated;
}
.profile-page[data-theme="pixel"] .pub-link {
  background: rgba(233, 69, 96, 0.06);
  border: 2px solid rgba(233, 69, 96, 0.4);
  border-radius: 0;
  color: #eaeaea;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}
.profile-page[data-theme="pixel"] .pub-link:hover {
  background: rgba(233, 69, 96, 0.12);
  border-color: #e94560;
  box-shadow: 4px 4px 0 rgba(233, 69, 96, 0.4);
  transform: translate(-2px, -2px);
  opacity: 1;
  color: #eaeaea;
}
.profile-page[data-theme="pixel"] .pub-link:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(233, 69, 96, 0.4);
}
.profile-page[data-theme="pixel"] .pub-platform {
  border-radius: 0;
  border: 2px solid rgba(233, 69, 96, 0.35);
  background: rgba(233, 69, 96, 0.05);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}
.profile-page[data-theme="pixel"] .pub-platform:hover {
  border-color: #e94560;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(233, 69, 96, 0.3);
  opacity: 1;
}
.profile-page[data-theme="pixel"] .pub-platform__name {
  color: #e94560;
}
.profile-page[data-theme="pixel"] .pub-platform__user {
  color: #a0a0c0;
}
.profile-page[data-theme="pixel"] .pub-game {
  border-radius: 0;
  border: 2px solid rgba(233, 69, 96, 0.3);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
  image-rendering: pixelated;
}
.profile-page[data-theme="pixel"] .pub-game:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 rgba(233, 69, 96, 0.4);
  border-color: #e94560;
}
.profile-page[data-theme="pixel"] .pub-game__name {
  color: #e94560;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
}
.profile-page[data-theme="pixel"] .pub-game__plat {
  color: #a0a0c0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
}

/* ============================================================
   OCEAN DEEP
   ============================================================ */
html.theme-ocean,
body.theme-ocean {
  background: #020b18 !important;
}

.profile-page[data-theme="ocean"] {
  --accent: #00ffd5;
  --border: rgba(0, 180, 255, 0.15);
  background: #020b18;
  background-image:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(0, 60, 120, 0.5) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 180, 255, 0.06) 0%,
      transparent 40%
    );
}

.profile-page[data-theme="ocean"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #00ffd5,
    #0077cc,
    #00ffd5,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="ocean"] .profile-name {
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(135deg, #00b4ff, #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 180, 255, 0.5));
}
.profile-page[data-theme="ocean"] .profile-username {
  color: #00ffd5;
}
.profile-page[data-theme="ocean"] .profile-section__title {
  color: #00ffd5;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.profile-page[data-theme="ocean"] .btn-follow {
  background: linear-gradient(135deg, #00b4ff, #00ffd5);
  color: #000;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.4);
}
.profile-page[data-theme="ocean"] .profile-avatar {
  border-color: #00b4ff;
  box-shadow:
    0 0 20px rgba(0, 180, 255, 0.4),
    0 0 40px rgba(0, 255, 213, 0.1);
}
.profile-page[data-theme="ocean"] .pub-link {
  background: rgba(0, 180, 255, 0.05);
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 14px;
  color: #e0f4ff;
}
.profile-page[data-theme="ocean"] .pub-link:hover {
  background: rgba(0, 180, 255, 0.12);
  border-color: #00b4ff;
  box-shadow:
    0 0 25px rgba(0, 180, 255, 0.4),
    0 0 50px rgba(0, 255, 213, 0.1);
  transform: translateX(4px);
  opacity: 1;
  color: #e0f4ff;
}
.profile-page[data-theme="ocean"] .pub-platform {
  border-radius: 14px;
  border-color: rgba(0, 180, 255, 0.2);
  background: rgba(0, 180, 255, 0.04);
}
.profile-page[data-theme="ocean"] .pub-platform:hover {
  border-color: #00b4ff;
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
  opacity: 1;
}
.profile-page[data-theme="ocean"] .pub-platform__name {
  color: #00b4ff;
}
.profile-page[data-theme="ocean"] .pub-platform__user {
  color: #00ffd5;
}
.profile-page[data-theme="ocean"] .pub-game {
  border-radius: 14px;
  border-color: rgba(0, 180, 255, 0.2);
}
.profile-page[data-theme="ocean"] .pub-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 180, 255, 0.3);
  border-color: #00b4ff;
}
.profile-page[data-theme="ocean"] .pub-game__name {
  color: #00b4ff;
}
.profile-page[data-theme="ocean"] .pub-game__plat {
  color: #00ffd5;
}

/* ============================================================
   INFERNO
   ============================================================ */
html.theme-inferno,
body.theme-inferno {
  background: #0d0000 !important;
}

.profile-page[data-theme="inferno"] {
  --accent: #ffa500;
  --border: rgba(255, 80, 0, 0.2);
  background: #0d0000;
  background-image: radial-gradient(
    ellipse at 50% 100%,
    rgba(180, 20, 0, 0.4) 0%,
    transparent 60%
  );
}

.profile-page[data-theme="inferno"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffa500,
    #ff4500,
    #ffa500,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="inferno"] .profile-name {
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(135deg, #ff4500, #ffa500, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flicker 3s infinite;
  filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.6));
}
.profile-page[data-theme="inferno"] .profile-username {
  color: #ffa500;
}
.profile-page[data-theme="inferno"] .profile-section__title {
  color: #ffa500;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}
.profile-page[data-theme="inferno"] .btn-follow {
  background: linear-gradient(135deg, #ff4500, #cc2200);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(255, 69, 0, 0.5);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
}
.profile-page[data-theme="inferno"] .profile-avatar {
  border-color: #ff4500;
  box-shadow:
    0 0 25px rgba(255, 69, 0, 0.5),
    0 0 50px rgba(255, 165, 0, 0.2);
}
.profile-page[data-theme="inferno"] .pub-link {
  background: rgba(255, 69, 0, 0.06);
  border: 1px solid rgba(255, 80, 0, 0.25);
  border-radius: 8px;
  color: #ffe8d6;
}
.profile-page[data-theme="inferno"] .pub-link:hover {
  background: rgba(255, 69, 0, 0.12);
  border-color: #ff4500;
  box-shadow:
    0 0 25px rgba(255, 69, 0, 0.5),
    0 0 50px rgba(255, 165, 0, 0.2);
  transform: translateX(4px);
  opacity: 1;
  color: #ffe8d6;
}
.profile-page[data-theme="inferno"] .pub-platform {
  border-radius: 8px;
  border-color: rgba(255, 80, 0, 0.25);
  background: rgba(255, 69, 0, 0.05);
}
.profile-page[data-theme="inferno"] .pub-platform:hover {
  border-color: #ff4500;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
  opacity: 1;
}
.profile-page[data-theme="inferno"] .pub-platform__name {
  color: #ff4500;
}
.profile-page[data-theme="inferno"] .pub-platform__user {
  color: #ffa500;
}
.profile-page[data-theme="inferno"] .pub-game {
  border-radius: 8px;
  border-color: rgba(255, 80, 0, 0.25);
}
.profile-page[data-theme="inferno"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.35);
  border-color: #ff4500;
}
.profile-page[data-theme="inferno"] .pub-game__name {
  color: #ffa500;
}
.profile-page[data-theme="inferno"] .pub-game__plat {
  color: #ff4500;
}

/* ============================================================
   SAKURA
   ============================================================ */
html.theme-sakura,
body.theme-sakura {
  background: #0d060e !important;
}

.profile-page[data-theme="sakura"] {
  --accent: #ff6b9d;
  --border: rgba(255, 107, 157, 0.2);
  background: #0d060e;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 107, 157, 0.08) 0%,
    transparent 40%
  );
}

.profile-page[data-theme="sakura"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff6b9d,
    #ffc2d4,
    #ff6b9d,
    transparent
  );
  z-index: 10;
}

/* Pétalas animadas */
.profile-page[data-theme="sakura"]::before {
  content: "🌸  🌸  🌸";
  position: fixed;
  top: 70px;
  right: 1.5rem;
  font-size: 1.2rem;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: petals 5s ease-in-out infinite;
  letter-spacing: 1.5rem;
  line-height: 3;
}
.profile-page[data-theme="sakura"] .profile-name {
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(135deg, #ff6b9d, #ffc2d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.4));
}
.profile-page[data-theme="sakura"] .profile-username {
  color: #ffc2d4;
}
.profile-page[data-theme="sakura"] .profile-section__title {
  color: #ff6b9d;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.profile-page[data-theme="sakura"] .btn-follow {
  background: linear-gradient(135deg, #ff6b9d, #e91e8c);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}
.profile-page[data-theme="sakura"] .profile-avatar {
  border-color: #ff6b9d;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}
.profile-page[data-theme="sakura"] .pub-link {
  background: rgba(255, 107, 157, 0.05);
  border: 1px solid rgba(255, 150, 180, 0.2);
  border-radius: 16px;
  color: #ffe8f0;
}
.profile-page[data-theme="sakura"] .pub-link:hover {
  background: rgba(255, 107, 157, 0.12);
  border-color: #ff6b9d;
  box-shadow: 0 0 25px rgba(255, 107, 157, 0.4);
  transform: translateX(4px) scale(1.01);
  opacity: 1;
  color: #ffe8f0;
}
.profile-page[data-theme="sakura"] .pub-platform {
  border-radius: 16px;
  border-color: rgba(255, 150, 180, 0.2);
  background: rgba(255, 107, 157, 0.04);
}
.profile-page[data-theme="sakura"] .pub-platform:hover {
  border-color: #ff6b9d;
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
  opacity: 1;
}
.profile-page[data-theme="sakura"] .pub-platform__name {
  color: #ff6b9d;
}
.profile-page[data-theme="sakura"] .pub-platform__user {
  color: #ffc2d4;
}
.profile-page[data-theme="sakura"] .pub-game {
  border-radius: 16px;
  border-color: rgba(255, 150, 180, 0.2);
}
.profile-page[data-theme="sakura"] .pub-game:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
  border-color: #ff6b9d;
}
.profile-page[data-theme="sakura"] .pub-game__name {
  color: #ff6b9d;
}
.profile-page[data-theme="sakura"] .pub-game__plat {
  color: #ffc2d4;
}

/* ============================================================
   OBSIDIAN
   ============================================================ */
html.theme-obsidian,
body.theme-obsidian {
  background: #000 !important;
}

.profile-page[data-theme="obsidian"] {
  --accent: #a0aec0;
  background: #000;
}

.profile-page[data-theme="obsidian"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #a0aec0,
    #6366f1,
    #a0aec0,
    transparent
  );
  z-index: 10;
}
.profile-page[data-theme="obsidian"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #fff;
  -webkit-text-fill-color: #fff;
  letter-spacing: 0.04em;
}
.profile-page[data-theme="obsidian"] .profile-username {
  color: #a0a0a0;
}
.profile-page[data-theme="obsidian"] .profile-section__title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.35rem;
}
.profile-page[data-theme="obsidian"] .btn-follow {
  background: #fff;
  color: #000;
  border-radius: 6px;
  font-weight: 900;
}
.profile-page[data-theme="obsidian"] .btn-follow:hover {
  background: #e0e0e0;
  opacity: 1;
}
.profile-page[data-theme="obsidian"] .profile-avatar {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
}
.profile-page[data-theme="obsidian"] .pub-link {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #f0f0f0;
}
.profile-page[data-theme="obsidian"] .pub-link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
  transform: translateX(3px);
  opacity: 1;
  color: #f0f0f0;
}
.profile-page[data-theme="obsidian"] .pub-platform {
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.profile-page[data-theme="obsidian"] .pub-platform:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}
.profile-page[data-theme="obsidian"] .pub-platform__name {
  color: #fff;
}
.profile-page[data-theme="obsidian"] .pub-platform__user {
  color: #a0a0a0;
}
.profile-page[data-theme="obsidian"] .pub-game {
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.08);
}
.profile-page[data-theme="obsidian"] .pub-game:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.profile-page[data-theme="obsidian"] .pub-game__name {
  color: #fff;
}
.profile-page[data-theme="obsidian"] .pub-game__plat {
  color: #a0a0a0;
}

/* ============================================================
   MIDNIGHT
   ============================================================ */
html.theme-midnight,
body.theme-midnight {
  background: #020614 !important;
}

.profile-page[data-theme="midnight"] {
  --accent: #c8d0ff;
  --border: rgba(100, 120, 255, 0.15);
  background: #020614;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(100, 120, 255, 0.08) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(200, 208, 255, 0.04) 0%,
      transparent 35%
    );
}

.profile-page[data-theme="midnight"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #c8d0ff,
    #7b8cff,
    #c8d0ff,
    transparent
  );
  z-index: 10;
}

/* Estrelas */
.profile-page[data-theme="midnight"]::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(
      1px 1px at 10% 15%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 25% 40%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 50% 10%,
      rgba(255, 255, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 70% 60%,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 88% 25%,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 15% 70%,
      rgba(200, 208, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 60% 85%,
      rgba(200, 208, 255, 0.4) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 35% 55%,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 80% 45%,
      rgba(200, 208, 255, 0.6) 0%,
      transparent 100%
    ),
    radial-gradient(
      1px 1px at 45% 30%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 0;
  animation: float-star 4s ease-in-out infinite;
}
.profile-page[data-theme="midnight"] .profile-wrap {
  position: relative;
  z-index: 1;
}
.profile-page[data-theme="midnight"] .profile-name {
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(135deg, #7b8cff, #c8d0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(123, 140, 255, 0.5));
}
.profile-page[data-theme="midnight"] .profile-username {
  color: #c8d0ff;
}
.profile-page[data-theme="midnight"] .profile-section__title {
  color: #c8d0ff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.profile-page[data-theme="midnight"] .btn-follow {
  background: linear-gradient(135deg, #7b8cff, #5560dd);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(123, 140, 255, 0.4);
}
.profile-page[data-theme="midnight"] .profile-avatar {
  border-color: #7b8cff;
  box-shadow:
    0 0 25px rgba(123, 140, 255, 0.4),
    0 0 60px rgba(200, 208, 255, 0.1);
}
.profile-page[data-theme="midnight"] .pub-link {
  background: rgba(123, 140, 255, 0.05);
  border: 1px solid rgba(100, 120, 255, 0.2);
  border-radius: 12px;
  color: #e8ecff;
}
.profile-page[data-theme="midnight"] .pub-link:hover {
  background: rgba(123, 140, 255, 0.12);
  border-color: #7b8cff;
  box-shadow: 0 0 25px rgba(123, 140, 255, 0.35);
  transform: translateX(4px);
  opacity: 1;
  color: #e8ecff;
}
.profile-page[data-theme="midnight"] .pub-platform {
  border-radius: 12px;
  border-color: rgba(100, 120, 255, 0.2);
  background: rgba(123, 140, 255, 0.04);
}
.profile-page[data-theme="midnight"] .pub-platform:hover {
  border-color: #7b8cff;
  box-shadow: 0 0 20px rgba(123, 140, 255, 0.3);
  opacity: 1;
}
.profile-page[data-theme="midnight"] .pub-platform__name {
  color: #7b8cff;
}
.profile-page[data-theme="midnight"] .pub-platform__user {
  color: #c8d0ff;
}
.profile-page[data-theme="midnight"] .pub-game {
  border-radius: 12px;
  border-color: rgba(100, 120, 255, 0.2);
}
.profile-page[data-theme="midnight"] .pub-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(123, 140, 255, 0.25);
  border-color: #7b8cff;
}
.profile-page[data-theme="midnight"] .pub-game__name {
  color: #7b8cff;
}
.profile-page[data-theme="midnight"] .pub-game__plat {
  color: #c8d0ff;
}

/* ============================================================
   ARCTIC
   ============================================================ */
html.theme-arctic,
body.theme-arctic {
  background: #f0f4f8 !important;
}

.profile-page[data-theme="arctic"] {
  --accent: #0077cc;
  --border: rgba(100, 150, 200, 0.2);
  background: #f0f4f8;
  background-image: linear-gradient(180deg, #e8f4ff 0%, #f0f4f8 40%);
}

.profile-page[data-theme="arctic"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #0077cc,
    #00b4ff,
    #0077cc,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="arctic"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #0077cc;
  -webkit-text-fill-color: #0077cc;
}
.profile-page[data-theme="arctic"] .profile-username {
  color: #00aaff;
}
.profile-page[data-theme="arctic"] .profile-bio,
.profile-page[data-theme="arctic"] .profile-tagline {
  color: #3a5060;
}
.profile-page[data-theme="arctic"] .profile-meta,
.profile-page[data-theme="arctic"] .profile-stats__views {
  color: #7090a0;
}
.profile-page[data-theme="arctic"] .profile-stats__followers {
  color: #1a2a3a;
}
.profile-page[data-theme="arctic"] .profile-section__title {
  color: #0077cc;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(0, 100, 180, 0.12);
  padding-bottom: 0.35rem;
}
.profile-page[data-theme="arctic"] .btn-follow {
  background: #0077cc;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.3);
}
.profile-page[data-theme="arctic"] .profile-avatar {
  border-color: #0077cc;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.2);
}
.profile-page[data-theme="arctic"] .pub-link {
  background: #fff;
  border: 1px solid rgba(0, 100, 180, 0.12);
  border-radius: 12px;
  color: #1a2a3a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.profile-page[data-theme="arctic"] .pub-link:hover {
  background: rgba(0, 120, 200, 0.06);
  border-color: #0077cc;
  box-shadow: 0 4px 20px rgba(0, 119, 204, 0.15);
  transform: translateX(3px);
  opacity: 1;
  color: #1a2a3a;
}
.profile-page[data-theme="arctic"] .pub-link__arrow {
  color: #7090a0;
}
.profile-page[data-theme="arctic"] .pub-platform {
  border-radius: 12px;
  border-color: rgba(0, 100, 180, 0.12);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.profile-page[data-theme="arctic"] .pub-platform:hover {
  border-color: #0077cc;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.15);
  opacity: 1;
}
.profile-page[data-theme="arctic"] .pub-platform__name {
  color: #0077cc;
}
.profile-page[data-theme="arctic"] .pub-platform__user {
  color: #7090a0;
}
.profile-page[data-theme="arctic"] .pub-game {
  border-radius: 12px;
  border-color: rgba(0, 100, 180, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.profile-page[data-theme="arctic"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 119, 204, 0.15);
  border-color: #0077cc;
}
.profile-page[data-theme="arctic"] .pub-game__info {
  background: #fff;
}
.profile-page[data-theme="arctic"] .pub-game__name {
  color: #1a2a3a;
}
.profile-page[data-theme="arctic"] .pub-game__plat {
  color: #7090a0;
}

/* ============================================================
   STEAMPUNK
   ============================================================ */
html.theme-steampunk,
body.theme-steampunk {
  background: #0e0900 !important;
}

.profile-page[data-theme="steampunk"] {
  --accent: #e8b84b;
  --border: rgba(200, 150, 50, 0.2);
  background: #0e0900;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(180, 120, 40, 0.02) 0px,
    rgba(180, 120, 40, 0.02) 1px,
    transparent 1px,
    transparent 10px
  );
}

.profile-page[data-theme="steampunk"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #e8b84b,
    #c8861e,
    #e8b84b,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="steampunk"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #e8b84b;
  -webkit-text-fill-color: #e8b84b;
  text-shadow:
    2px 2px 0 rgba(100, 60, 0, 0.8),
    0 0 20px rgba(200, 134, 30, 0.4);
}
.profile-page[data-theme="steampunk"] .profile-username {
  color: #c8861e;
}
.profile-page[data-theme="steampunk"] .profile-section__title {
  color: #e8b84b;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(180, 120, 40, 0.3);
  padding-bottom: 0.35rem;
}
.profile-page[data-theme="steampunk"] .btn-follow {
  background: linear-gradient(135deg, #c8861e, #a06010);
  color: #f0ddb0;
  border-radius: 0;
  border: 1px solid #e8b84b;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.profile-page[data-theme="steampunk"] .btn-follow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.profile-page[data-theme="steampunk"] .profile-avatar {
  border-radius: 4px;
  border: 2px solid #c8861e;
  box-shadow:
    3px 3px 0 rgba(100, 60, 0, 0.6),
    0 0 15px rgba(200, 134, 30, 0.2);
}
.profile-page[data-theme="steampunk"] .pub-link {
  background: rgba(180, 120, 40, 0.06);
  border: 1px solid rgba(180, 120, 40, 0.3);
  border-radius: 0;
  color: #f0ddb0;
  font-weight: 700;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}
.profile-page[data-theme="steampunk"] .pub-link:hover {
  background: rgba(180, 120, 40, 0.12);
  border-color: #e8b84b;
  box-shadow:
    4px 4px 0 rgba(200, 134, 30, 0.4),
    0 0 15px rgba(200, 134, 30, 0.2);
  transform: translate(-2px, -2px);
  opacity: 1;
  color: #f0ddb0;
}
.profile-page[data-theme="steampunk"] .pub-platform {
  border-radius: 0;
  border-color: rgba(180, 120, 40, 0.3);
  background: rgba(180, 120, 40, 0.05);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}
.profile-page[data-theme="steampunk"] .pub-platform:hover {
  border-color: #e8b84b;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-1px, -1px);
  opacity: 1;
}
.profile-page[data-theme="steampunk"] .pub-platform__name {
  color: #e8b84b;
}
.profile-page[data-theme="steampunk"] .pub-platform__user {
  color: #c8861e;
}
.profile-page[data-theme="steampunk"] .pub-game {
  border-radius: 0;
  border-color: rgba(180, 120, 40, 0.3);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}
.profile-page[data-theme="steampunk"] .pub-game:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(200, 134, 30, 0.3);
  border-color: #e8b84b;
}
.profile-page[data-theme="steampunk"] .pub-game__info {
  background: #1a1000;
}
.profile-page[data-theme="steampunk"] .pub-game__name {
  color: #e8b84b;
}
.profile-page[data-theme="steampunk"] .pub-game__plat {
  color: #c8861e;
}

/* ============================================================
   HALLOWEEN
   ============================================================ */
html.theme-halloween,
body.theme-halloween {
  background: #050008 !important;
}

.profile-page[data-theme="halloween"] {
  --accent: #cc44ff;
  --border: rgba(255, 100, 0, 0.2);
  background: #050008;
  background-image: radial-gradient(
    ellipse at 50% 100%,
    rgba(80, 0, 40, 0.5) 0%,
    transparent 60%
  );
}

.profile-page[data-theme="halloween"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #cc44ff,
    #ff6600,
    #cc44ff,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="halloween"] .profile-name {
  font-family: "Orbitron", sans-serif;
  color: #ff6600;
  -webkit-text-fill-color: #ff6600;
  animation: spooky-glow 4s ease-in-out infinite;
  letter-spacing: 0.04em;
}
.profile-page[data-theme="halloween"] .profile-username {
  color: #cc44ff;
}
.profile-page[data-theme="halloween"] .profile-section__title {
  color: #cc44ff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(204, 68, 255, 0.4);
}
.profile-page[data-theme="halloween"] .btn-follow {
  background: linear-gradient(135deg, #ff6600, #cc4400);
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
}
.profile-page[data-theme="halloween"] .profile-avatar {
  border-color: #ff6600;
  box-shadow:
    0 0 25px rgba(255, 102, 0, 0.5),
    0 0 50px rgba(204, 68, 255, 0.2);
}
.profile-page[data-theme="halloween"] .pub-link {
  background: rgba(255, 102, 0, 0.06);
  border: 1px solid rgba(255, 100, 0, 0.25);
  border-radius: 6px;
  color: #f0e0ff;
}
.profile-page[data-theme="halloween"] .pub-link:hover {
  background: rgba(255, 102, 0, 0.12);
  border-color: #ff6600;
  box-shadow:
    0 0 25px rgba(255, 102, 0, 0.4),
    0 0 50px rgba(204, 68, 255, 0.15);
  transform: translateX(4px);
  opacity: 1;
  color: #f0e0ff;
}
.profile-page[data-theme="halloween"] .pub-platform {
  border-radius: 6px;
  border-color: rgba(255, 100, 0, 0.25);
  background: rgba(255, 102, 0, 0.05);
}
.profile-page[data-theme="halloween"] .pub-platform:hover {
  border-color: #ff6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  opacity: 1;
}
.profile-page[data-theme="halloween"] .pub-platform__name {
  color: #ff6600;
}
.profile-page[data-theme="halloween"] .pub-platform__user {
  color: #cc44ff;
}
.profile-page[data-theme="halloween"] .pub-game {
  border-radius: 6px;
  border-color: rgba(255, 100, 0, 0.25);
}
.profile-page[data-theme="halloween"] .pub-game:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow:
    0 8px 30px rgba(255, 102, 0, 0.3),
    0 0 20px rgba(204, 68, 255, 0.2);
  border-color: #ff6600;
}
.profile-page[data-theme="halloween"] .pub-game__info {
  background: #0d0014;
}
.profile-page[data-theme="halloween"] .pub-game__name {
  color: #ff6600;
}
.profile-page[data-theme="halloween"] .pub-game__plat {
  color: #cc44ff;
}

/* ============================================================
   CARBON — Minimalismo executivo, detalhes dourados
   ============================================================ */
@keyframes carbon-shine {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(300%) skewX(-15deg);
  }
}

html.theme-carbon,
body.theme-carbon {
  background: #0c0c0e !important;
}

.profile-page[data-theme="carbon"] {
  --accent: #b8953f;
  background: #0c0c0e;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.008) 0px,
      rgba(255, 255, 255, 0.008) 1px,
      transparent 1px,
      transparent 12px
    );
}

.profile-page[data-theme="carbon"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #b8953f,
    #e8c96a,
    #b8953f,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="carbon"] .profile-name {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0ede8;
  -webkit-text-fill-color: #f0ede8;
}

.profile-page[data-theme="carbon"] .profile-username {
  color: #b8953f;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.profile-page[data-theme="carbon"] .profile-bio {
  color: rgba(240, 237, 232, 0.55);
}

.profile-page[data-theme="carbon"] .profile-section__title {
  color: #b8953f;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 149, 63, 0.2);
  padding-bottom: 0.4rem;
}

.profile-page[data-theme="carbon"] .profile-avatar {
  border-color: rgba(184, 149, 63, 0.4);
  box-shadow:
    0 0 0 1px rgba(184, 149, 63, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.8);
}

.profile-page[data-theme="carbon"] .btn-follow {
  background: transparent;
  border: 1px solid #b8953f;
  color: #b8953f;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.profile-page[data-theme="carbon"] .btn-follow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: rgba(232, 201, 106, 0.15);
  transform: translateX(-100%) skewX(-15deg);
}

.profile-page[data-theme="carbon"] .btn-follow:hover::after {
  animation: carbon-shine 0.6s ease forwards;
}

.profile-page[data-theme="carbon"] .btn-follow:hover {
  background: rgba(184, 149, 63, 0.1);
  box-shadow: 0 0 20px rgba(184, 149, 63, 0.2);
  opacity: 1;
}

.profile-page[data-theme="carbon"] .pub-link {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid rgba(184, 149, 63, 0.5);
  border-radius: 3px;
  color: #f0ede8;
  transition: all 0.2s;
}

.profile-page[data-theme="carbon"] .pub-link:hover {
  background: rgba(184, 149, 63, 0.05);
  border-left-color: #e8c96a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateX(4px);
  opacity: 1;
  color: #f0ede8;
}

.profile-page[data-theme="carbon"] .pub-link__label {
  color: rgba(240, 237, 232, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.profile-page[data-theme="carbon"] .pub-platform {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.profile-page[data-theme="carbon"] .pub-platform:hover {
  background: rgba(184, 149, 63, 0.05);
  border-color: rgba(184, 149, 63, 0.3);
  opacity: 1;
}

.profile-page[data-theme="carbon"] .pub-platform__name {
  color: #f0ede8;
}

.profile-page[data-theme="carbon"] .pub-platform__user {
  color: rgba(184, 149, 63, 0.8);
}

.profile-page[data-theme="carbon"] .pub-game {
  border-color: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.profile-page[data-theme="carbon"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(184, 149, 63, 0.2);
  border-color: rgba(184, 149, 63, 0.3);
}

.profile-page[data-theme="carbon"] .pub-game__name {
  color: #f0ede8;
}

.profile-page[data-theme="carbon"] .pub-game__plat {
  color: rgba(184, 149, 63, 0.8);
}

/* ============================================================
   BLANC — Tema claro luxuoso, tipografia editorial
   ============================================================ */
html.theme-blanc,
body.theme-blanc {
  background: #f5f3ef !important;
}

.profile-page[data-theme="blanc"] {
  --accent: #1a1a1a;
  background: #f5f3ef;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.025) 0%, transparent 50%),
    radial-gradient(
      circle at 100% 100%,
      rgba(0, 0, 0, 0.02) 0%,
      transparent 50%
    );
  color: #1a1a1a;
}

.profile-page[data-theme="blanc"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  z-index: 10;
}

.profile-page[data-theme="blanc"] .profile-name {
  font-family: "Georgia", "Playfair Display", serif;
  font-weight: 700;
  color: #0d0d0d;
  -webkit-text-fill-color: #0d0d0d;
  letter-spacing: -0.02em;
  font-size: 1.8rem;
}

.profile-page[data-theme="blanc"] .profile-username {
  color: #888;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.profile-page[data-theme="blanc"] .profile-bio {
  color: #444;
}

.profile-page[data-theme="blanc"] .profile-section__title {
  color: #1a1a1a;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 0.35rem;
}

.profile-page[data-theme="blanc"] .profile-avatar {
  border-color: #d0cdc8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.profile-page[data-theme="blanc"] .btn-follow {
  background: #1a1a1a;
  color: #f5f3ef;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.73rem;
  border: none;
}

.profile-page[data-theme="blanc"] .btn-follow:hover {
  background: #333;
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-page[data-theme="blanc"] .pub-link {
  background: #fff;
  border: 1px solid #e0ddd8;
  border-radius: 2px;
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.18s;
}

.profile-page[data-theme="blanc"] .pub-link:hover {
  background: #fff;
  border-color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(3px);
  opacity: 1;
  color: #1a1a1a;
}

.profile-page[data-theme="blanc"] .pub-link__label {
  color: #999;
  font-size: 0.72rem;
}

.profile-page[data-theme="blanc"] .pub-platform {
  background: #fff;
  border-color: #e0ddd8;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.profile-page[data-theme="blanc"] .pub-platform:hover {
  border-color: #1a1a1a;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.profile-page[data-theme="blanc"] .pub-platform__name {
  color: #1a1a1a;
}

.profile-page[data-theme="blanc"] .pub-platform__user {
  color: #888;
}

.profile-page[data-theme="blanc"] .pub-game {
  border-color: #e0ddd8;
  border-radius: 2px;
}

.profile-page[data-theme="blanc"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #1a1a1a;
}

.profile-page[data-theme="blanc"] .pub-game__info {
  background: #fff;
}

.profile-page[data-theme="blanc"] .pub-game__name {
  color: #1a1a1a;
}

.profile-page[data-theme="blanc"] .pub-game__plat {
  color: #888;
}

/* ============================================================
   EMERALD — Verde esmeralda escuro, sofisticado e orgânico
   ============================================================ */
html.theme-emerald,
body.theme-emerald {
  background: #060f0a !important;
}

.profile-page[data-theme="emerald"] {
  --accent: #4ecca3;
  background: #060f0a;
  background-image:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(16, 85, 50, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(5, 60, 35, 0.12) 0%,
      transparent 50%
    );
}

.profile-page[data-theme="emerald"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #2d9e6b,
    #4ecca3,
    #2d9e6b,
    transparent
  );
  z-index: 10;
}

.profile-page[data-theme="emerald"] .profile-name {
  font-family: "Cinzel", "Orbitron", serif;
  color: #e8f5ee;
  -webkit-text-fill-color: #e8f5ee;
  letter-spacing: 0.05em;
  text-shadow: 0 0 40px rgba(78, 204, 163, 0.15);
}

.profile-page[data-theme="emerald"] .profile-username {
  color: #4ecca3;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.profile-page[data-theme="emerald"] .profile-bio {
  color: rgba(232, 245, 238, 0.55);
}

.profile-page[data-theme="emerald"] .profile-section__title {
  color: #4ecca3;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(78, 204, 163, 0.2);
  padding-bottom: 0.4rem;
}

.profile-page[data-theme="emerald"] .profile-avatar {
  border-color: rgba(78, 204, 163, 0.3);
  box-shadow:
    0 0 0 1px rgba(78, 204, 163, 0.1),
    0 8px 40px rgba(0, 0, 0, 0.7);
}

.profile-page[data-theme="emerald"] .btn-follow {
  background: rgba(78, 204, 163, 0.1);
  border: 1px solid rgba(78, 204, 163, 0.4);
  color: #4ecca3;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

.profile-page[data-theme="emerald"] .btn-follow:hover {
  background: rgba(78, 204, 163, 0.18);
  border-color: #4ecca3;
  box-shadow:
    0 0 20px rgba(78, 204, 163, 0.2),
    inset 0 0 20px rgba(78, 204, 163, 0.05);
  opacity: 1;
}

.profile-page[data-theme="emerald"] .pub-link {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(78, 204, 163, 0.1);
  border-radius: 4px;
  color: #e8f5ee;
  transition: all 0.2s;
}

.profile-page[data-theme="emerald"] .pub-link:hover {
  background: rgba(78, 204, 163, 0.05);
  border-color: rgba(78, 204, 163, 0.35);
  box-shadow: 0 4px 20px rgba(78, 204, 163, 0.08);
  transform: translateX(4px);
  opacity: 1;
  color: #e8f5ee;
}

.profile-page[data-theme="emerald"] .pub-link__label {
  color: rgba(78, 204, 163, 0.6);
  font-size: 0.72rem;
}

.profile-page[data-theme="emerald"] .pub-platform {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(78, 204, 163, 0.1);
  border-radius: 4px;
}

.profile-page[data-theme="emerald"] .pub-platform:hover {
  background: rgba(78, 204, 163, 0.05);
  border-color: rgba(78, 204, 163, 0.3);
  opacity: 1;
}

.profile-page[data-theme="emerald"] .pub-platform__name {
  color: #e8f5ee;
}

.profile-page[data-theme="emerald"] .pub-platform__user {
  color: rgba(78, 204, 163, 0.7);
}

.profile-page[data-theme="emerald"] .pub-game {
  border-color: rgba(78, 204, 163, 0.1);
  border-radius: 4px;
}

.profile-page[data-theme="emerald"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(78, 204, 163, 0.2);
  border-color: rgba(78, 204, 163, 0.3);
}

.profile-page[data-theme="emerald"] .pub-game__name {
  color: #e8f5ee;
}

.profile-page[data-theme="emerald"] .pub-game__plat {
  color: rgba(78, 204, 163, 0.7);
}

/* ============================================================
   CRIMSON — Vermelho profundo, bold e dramático
   ============================================================ */
@keyframes crimson-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

html.theme-crimson,
body.theme-crimson {
  background: #090406 !important;
}

.profile-page[data-theme="crimson"] {
  --accent: #dc2626;
  background: #090406;
  background-image:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(160, 20, 40, 0.15) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(100, 0, 20, 0.1) 0%,
      transparent 50%
    );
}

.profile-page[data-theme="crimson"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    transparent,
    #8b1a2a,
    #dc2626,
    #c0392b,
    #8b1a2a,
    transparent
  );
  animation: crimson-pulse 3s ease-in-out infinite;
  z-index: 10;
}

.profile-page[data-theme="crimson"] .profile-name {
  font-family: "Rajdhani", "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5e6e8;
  -webkit-text-fill-color: #f5e6e8;
  text-shadow: 0 0 60px rgba(220, 38, 38, 0.12);
}

.profile-page[data-theme="crimson"] .profile-username {
  color: #dc2626;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-page[data-theme="crimson"] .profile-bio {
  color: rgba(245, 230, 232, 0.5);
}

.profile-page[data-theme="crimson"] .profile-section__title {
  color: rgba(220, 38, 38, 0.7);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
  padding-bottom: 0.4rem;
}

.profile-page[data-theme="crimson"] .profile-avatar {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.8);
}

.profile-page[data-theme="crimson"] .btn-follow {
  background: #8b1a2a;
  border: 1px solid #dc2626;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: 3px;
}

.profile-page[data-theme="crimson"] .btn-follow:hover {
  background: #a01f30;
  box-shadow:
    0 0 25px rgba(220, 38, 38, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.profile-page[data-theme="crimson"] .pub-link {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-left: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 3px;
  color: #f5e6e8;
  transition: all 0.2s;
}

.profile-page[data-theme="crimson"] .pub-link:hover {
  background: rgba(220, 38, 38, 0.05);
  border-left-color: #dc2626;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(220, 38, 38, 0.08);
  transform: translateX(4px);
  opacity: 1;
  color: #f5e6e8;
}

.profile-page[data-theme="crimson"] .pub-link__label {
  color: rgba(220, 38, 38, 0.6);
  font-size: 0.72rem;
}

.profile-page[data-theme="crimson"] .pub-platform {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(220, 38, 38, 0.1);
  border-radius: 3px;
}

.profile-page[data-theme="crimson"] .pub-platform:hover {
  background: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.profile-page[data-theme="crimson"] .pub-platform__name {
  color: #f5e6e8;
}

.profile-page[data-theme="crimson"] .pub-platform__user {
  color: rgba(220, 38, 38, 0.7);
}

.profile-page[data-theme="crimson"] .pub-game {
  border-color: rgba(220, 38, 38, 0.1);
  border-radius: 3px;
}

.profile-page[data-theme="crimson"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.3);
}

.profile-page[data-theme="crimson"] .pub-game__name {
  color: #f5e6e8;
}

.profile-page[data-theme="crimson"] .pub-game__plat {
  color: rgba(220, 38, 38, 0.7);
}

/* ============================================================
   RETRO — Azul escuro slate com acentos verde-limão
   Inspirado em interfaces de gaming retro moderno
   ============================================================ */

@keyframes retro-scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

@keyframes retro-glow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

html.theme-retro,
body.theme-retro {
  background: #0b1320 !important;
}

.profile-page[data-theme="retro"] {
  --accent: #4ade80;
  background: #0b1320;
  background-image:
    radial-gradient(
      ellipse at 20% 0%,
      rgba(34, 211, 238, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(74, 222, 128, 0.05) 0%,
      transparent 50%
    );
}

/* Linha decorativa sob o banner */
.profile-page[data-theme="retro"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #22d3ee,
    #4ade80,
    #22d3ee,
    transparent
  );
  animation: retro-glow 2s ease-in-out infinite;
  z-index: 10;
}

/* Scanline sutil sobre o banner */
.profile-page[data-theme="retro"] .profile-banner-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.06) 3px,
    rgba(0, 0, 0, 0.06) 4px
  );
  z-index: 5;
  pointer-events: none;
}

.profile-page[data-theme="retro"] .profile-name {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2f0ff;
  -webkit-text-fill-color: #e2f0ff;
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.profile-page[data-theme="retro"] .profile-username {
  color: #22d3ee;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.profile-page[data-theme="retro"] .profile-bio {
  color: rgba(180, 210, 230, 0.6);
}

.profile-page[data-theme="retro"] .profile-tagline {
  color: #4ade80;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}

.profile-page[data-theme="retro"] .profile-section__title {
  color: #22d3ee;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  padding-bottom: 0.4rem;
}

.profile-page[data-theme="retro"] .profile-avatar {
  border: 2px solid rgba(34, 211, 238, 0.4);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.1),
    0 0 20px rgba(34, 211, 238, 0.15),
    0 8px 40px rgba(0, 0, 0, 0.7);
}

/* Botão follow */
.profile-page[data-theme="retro"] .btn-follow {
  background: transparent;
  border: 1px solid #4ade80;
  color: #4ade80;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.profile-page[data-theme="retro"] .btn-follow:hover,
.profile-page[data-theme="retro"] .btn-follow.btn-follow--following {
  background: rgba(74, 222, 128, 0.12);
  box-shadow: 0 0 15px rgba(74, 222, 128, 0.2);
  color: #4ade80;
  opacity: 1;
}

/* Links */
.profile-page[data-theme="retro"] .pub-link {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-left: 2px solid rgba(74, 222, 128, 0.4);
  border-radius: 3px;
  color: #c8dff0;
}
.profile-page[data-theme="retro"] .pub-link:hover {
  background: rgba(74, 222, 128, 0.05);
  border-left-color: #4ade80;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(74, 222, 128, 0.08);
  transform: translateX(4px);
  opacity: 1;
  color: #e2f0ff;
}
.profile-page[data-theme="retro"] .pub-link__label {
  color: rgba(34, 211, 238, 0.6);
  font-size: 0.72rem;
}

/* Plataformas */
.profile-page[data-theme="retro"] .pub-platform {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(34, 211, 238, 0.12);
  border-radius: 4px;
}
.profile-page[data-theme="retro"] .pub-platform:hover {
  background: rgba(34, 211, 238, 0.05);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(34, 211, 238, 0.08);
  opacity: 1;
}
.profile-page[data-theme="retro"] .pub-platform__name {
  color: #c8dff0;
}
.profile-page[data-theme="retro"] .pub-platform__user {
  color: rgba(34, 211, 238, 0.6);
}

/* Jogos */
.profile-page[data-theme="retro"] .pub-game {
  border-color: rgba(34, 211, 238, 0.1);
  border-radius: 4px;
}
.profile-page[data-theme="retro"] .pub-game:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.3);
}
.profile-page[data-theme="retro"] .pub-game__name {
  color: #c8dff0;
}
.profile-page[data-theme="retro"] .pub-game__plat {
  color: rgba(34, 211, 238, 0.6);
}

/* Stats bar */
.profile-page[data-theme="retro"] .profile-stats__value {
  color: #4ade80;
  font-family: "JetBrains Mono", monospace;
}
.profile-page[data-theme="retro"] .profile-stats__label {
  color: rgba(34, 211, 238, 0.5);
}

/* ============================================================
   CARD — Layout horizontal estilo Steam/card com banner alto
   ============================================================ */

html.theme-card,
body.theme-card {
  background: #0d1117 !important;
}

.profile-page[data-theme="card"] {
  --accent: #58a6ff;
  background: #0d1117;
}

/* Banner mais alto */
.profile-page[data-theme="card"] .profile-banner-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.profile-page[data-theme="card"] .profile-banner {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.profile-page[data-theme="card"] .profile-banner--placeholder {
  height: 220px;
  background: linear-gradient(135deg, #161b22, #1c2128);
}

/* Gradiente escuro na parte inferior do banner */
.profile-page[data-theme="card"] .profile-banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #0d1117 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Layout do wrap — avatar sobe sobre o banner */
.profile-page[data-theme="card"] .profile-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

/* Cabeçalho horizontal */
.profile-page[data-theme="card"] .profile-head {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-top: -52px;
  position: relative;
  z-index: 10;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #21262d;
}

/* Avatar maior e com borda */
.profile-page[data-theme="card"] .profile-avatar-wrap {
  flex-shrink: 0;
}

.profile-page[data-theme="card"] .profile-avatar {
  width: 86px !important;
  height: 86px !important;
  border-radius: 50% !important;
  border: 3px solid #0d1117 !important;
  box-shadow: 0 0 0 2px #58a6ff !important;
  object-fit: cover;
}

/* Info do perfil em linha */
.profile-page[data-theme="card"] .profile-head__info {
  flex: 1;
  min-width: 0;
  padding-bottom: 0.25rem;
}

.profile-page[data-theme="card"] .profile-head__namerow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.profile-page[data-theme="card"] .profile-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #e6edf3;
  -webkit-text-fill-color: #e6edf3;
  letter-spacing: 0.01em;
}

.profile-page[data-theme="card"] .profile-username {
  font-size: 0.78rem;
  color: #58a6ff;
  letter-spacing: 0.03em;
}

.profile-page[data-theme="card"] .profile-tagline {
  font-size: 0.83rem;
  color: #8b949e;
  margin-top: 0.15rem;
}

.profile-page[data-theme="card"] .profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #8b949e;
  margin-top: 0.3rem;
}

/* Stats bar horizontal compacta */
.profile-page[data-theme="card"] .profile-stats-bar {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #21262d;
  margin-bottom: 1rem;
}

.profile-page[data-theme="card"] .profile-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
}

.profile-page[data-theme="card"] .profile-stat__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e6edf3;
}

.profile-page[data-theme="card"] .profile-stat__label {
  font-size: 0.75rem;
  color: #8b949e;
}

/* Seções */
.profile-page[data-theme="card"] .profile-section__title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b949e;
  border-bottom: 1px solid #21262d;
  padding-bottom: 0.4rem;
  margin-bottom: 0.75rem;
}

/* Bio */
.profile-page[data-theme="card"] .profile-bio {
  font-size: 0.88rem;
  color: #8b949e;
  line-height: 1.6;
}

/* Botão seguir */
.profile-page[data-theme="card"] .btn-follow {
  background: #238636;
  border: 1px solid rgba(240, 246, 252, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 0.35rem 0.9rem;
}

.profile-page[data-theme="card"] .btn-follow:hover,
.profile-page[data-theme="card"] .btn-follow.btn-follow--following {
  background: #2ea043;
  opacity: 1;
}

/* Links */
.profile-page[data-theme="card"] .pub-link {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #c9d1d9;
}

.profile-page[data-theme="card"] .pub-link:hover {
  background: #1c2128;
  border-color: #58a6ff;
  transform: none;
  box-shadow: none;
  opacity: 1;
  color: #58a6ff;
}

.profile-page[data-theme="card"] .pub-link__label {
  color: #8b949e;
  font-size: 0.72rem;
}

/* Plataformas */
.profile-page[data-theme="card"] .pub-platform {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
}

.profile-page[data-theme="card"] .pub-platform:hover {
  background: #1c2128;
  border-color: #58a6ff;
  box-shadow: none;
  opacity: 1;
}

.profile-page[data-theme="card"] .pub-platform__name {
  color: #c9d1d9;
}
.profile-page[data-theme="card"] .pub-platform__user {
  color: #58a6ff;
  font-size: 0.72rem;
}

/* Jogos */
.profile-page[data-theme="card"] .pub-game {
  border-color: #30363d;
  border-radius: 6px;
}

.profile-page[data-theme="card"] .pub-game:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border-color: #58a6ff;
}

.profile-page[data-theme="card"] .pub-game__name {
  color: #c9d1d9;
  font-size: 0.78rem;
}
.profile-page[data-theme="card"] .pub-game__plat {
  color: #58a6ff;
}

/* Conquistas (badges) */
.profile-page[data-theme="card"] .profile-badge {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #c9d1d9;
}

@media (max-width: 520px) {
  .profile-page[data-theme="card"] .profile-head {
    margin-top: -40px;
  }
  .profile-page[data-theme="card"] .profile-avatar {
    width: 68px !important;
    height: 68px !important;
  }
  .profile-page[data-theme="card"] .profile-stats-bar {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
