@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  cursor: none !important;
}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  background-image: url('componentes/imagem_fundo.png');
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.7);
  z-index: 0;
  animation: bgMove 20s infinite alternate linear;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile {
  background: linear-gradient(135deg, #0a0a23 0%, #185a9d 100%);
  opacity: 0.95;
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 40px 32px;
  text-align: center;
  animation: fadeIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.avatar-decor {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  pointer-events: none;
  z-index: 2;
}
.avatar:hover {
  transform: scale(1.08) rotate(-3deg);
}

h1, .profile h1 {
  color: #fff;
  text-shadow: 0 0 8px #fff, 0 0 18px #a83232;
  animation: glowPulse 2.2s infinite alternate;
  font-size: 2.4rem;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 0 0 8px 0;
}
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px #fff, 0 0 18px #a83232;
  }
  100% {
    text-shadow: 0 0 18px #fff, 0 0 32px #a83232;
  }
}

.desc {
  color: #d1d1d1;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.city {
  color: #a0e7e5;
  font-size: 1rem;
  margin-bottom: 18px;
  display: block;
}

/* Badges Container */
.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}

.badge {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none !important;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

/* Efeito de brilho */
.badge .shine {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.badge:hover .shine {
  left: 100%;
}

.badge:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(67, 206, 162, 0.3);
  border-color: var(--badge-color, #43cea2);
  background: rgba(67, 206, 162, 0.1);
}

/* Cores personalizadas para badges específicas */
.badge[data-badge-id="vip"]:hover {
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.1);
}

.badge[data-badge-id="verified"]:hover {
  border-color: #1DA1F2;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
  background: rgba(29, 161, 242, 0.1);
}

.badge[data-badge-id="premium"]:hover {
  border-color: #FF6B6B;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  background: rgba(255, 107, 107, 0.1);
}

.badge img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.badge:hover img {
  transform: scale(1.2);
}

/* Tooltip */
.badge {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.badge::after {
  content: '';
  opacity: 0;
  transition: opacity 0.2s;
}

/* Seta do tooltip */
.badge::before {
  content: '';
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.badge:hover::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #232526;
  color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 1;
  pointer-events: none;
  z-index: 999;
}

.badge:hover::before {
  opacity: 1;
  visibility: visible;
  bottom: 120%;
}

/* Animação de entrada dos badges */
@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge {
  animation: badgeFadeIn 0.6s ease forwards;
  animation-delay: calc(var(--badge-index, 0) * 0.1s);
}

/* Responsivo para badges */
@media (max-width: 480px) {
  .badges-container {
    gap: 6px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    justify-content: center;
  }
  
  .badge {
    width: 32px;
    height: 32px;
  }
  
  .badge img {
    width: 18px;
    height: 18px;
  }
  
  .badge::after {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

@media (max-width: 360px) {
  .badges-container {
    gap: 4px;
    padding: 0;
    justify-content: center;
  }
  
  .badge {
    width: 28px;
    height: 28px;
  }
  
  .badge img {
    width: 16px;
    height: 16px;
  }
}

.overlay-enter {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 20, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.overlay-enter span {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.32);
  padding: 36px 54px;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: rgba(0,0,0,0.25);
  padding: 40px 50px;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.overlay-text {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

.overlay-buttons {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.btn-sim, .btn-nao {
  padding: 10px 25px;
  font-size: 1rem;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  border: none;
  border-radius: 12px;
  cursor: none !important;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-sim {
  background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
  color: #fff;
}

.btn-sim:hover {
  background: linear-gradient(135deg, #3bb890 0%, #14508a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 206, 162, 0.4);
}

.btn-nao {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: #fff;
}

.btn-nao:hover {
  background: linear-gradient(135deg, #e63939 0%, #b30000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

.volume-mixer {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 10;
  background: linear-gradient(135deg, #2d0b0b 0%, #a83232 100%);
  opacity: 0.95;
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.volume-mixer:hover {
  opacity: 1;
}
.volume-mixer input[type="range"] {
  display: none;
  width: 120px;
  accent-color: #43cea2;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
  box-shadow: 0 1px 6px rgba(67,206,162,0.15);
  transition: background 0.4s;
}
.volume-mixer:hover input[type="range"] {
  display: block;
  margin-left: 10px;
}
.volume-mixer input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #43cea2;
  box-shadow: 0 2px 8px rgba(67,206,162,0.25);
  transition: border 0.3s;
}
.volume-mixer input[type="range"]:active::-webkit-slider-thumb {
  border: 3px solid #185a9d;
}
.volume-mixer input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #43cea2;
  box-shadow: 0 2px 8px rgba(67,206,162,0.25);
  transition: border 0.3s;
}
.volume-mixer input[type="range"]:active::-moz-range-thumb {
  border: 3px solid #185a9d;
}
.volume-mixer input[type="range"]::-ms-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #43cea2;
  box-shadow: 0 2px 8px rgba(67,206,162,0.25);
  transition: border 0.3s;
}
.volume-mixer input[type="range"]:active::-ms-thumb {
  border: 3px solid #185a9d;
}
.volume-mixer input[type="range"]:focus {
  outline: none;
  background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
}

.icon-volume {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
}
.links button {
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0;
  font-size: 1.2rem;
  cursor: none !important;
  transition: background 0.3s, transform 0.2s;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.links button:hover {
  background: #43cea2;
  transform: scale(1.08);
}
.links button img, .links button svg {
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #a83232);
  transition: filter 0.3s, transform 0.2s;
}
.links button:hover img, .links button:hover svg {
  filter: drop-shadow(0 0 12px #fff) drop-shadow(0 0 24px #a83232);
  transform: scale(1.15);
}
.links img {
  width: 28px;
  height: 28px;
}

.opaco {
  opacity: 0.4;
  transition: opacity 0.3s;
}
.opaco:hover {
  opacity: 1;
}

/* Barra de volume animada */

@media (max-width: 700px) {
  .container {
    flex-direction: column;
    padding: 0 8px;
  }
  .volume-mixer {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
  }
}

/* Estilos específicos para telefones */
@media (max-width: 480px) {
  body, html {
    font-size: 14px;
  }
  
  .profile {
    padding: 30px 20px;
    margin: 10px;
    border-radius: 20px;
  }
  
  .avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
  
  .avatar-decor {
    width: 90px;
    top: -8px;
  }
  
  h1, .profile h1 {
    font-size: 1.8rem;
    margin: 0 0 6px 0;
  }
  
  .desc {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .city {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .links {
    margin-top: 15px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .links button {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  
  .links img {
    width: 24px;
    height: 24px;
  }
  
  /* Overlay responsivo */
  .overlay-content {
    padding: 30px 25px;
    gap: 25px;
  }
  
  .overlay-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  
  .overlay-buttons {
    gap: 10px;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  
  .btn-sim, .btn-nao {
    padding: 10px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  
  /* Volume mixer responsivo */
  .volume-mixer {
    top: 15px;
    left: 15px;
    padding: 8px 12px;
    border-radius: 12px;
  }
  
  .volume-mixer input[type="range"] {
    width: 80px;
  }
  
  /* Background responsivo */
  .background {
    filter: blur(4px) brightness(0.6);
  }
}

/* Estilos para telas muito pequenas */
@media (max-width: 360px) {
  .profile {
    padding: 25px 15px;
  }
  
  .avatar {
    width: 90px;
    height: 90px;
  }
  
  .avatar-decor {
    width: 70px;
  }
  
  h1, .profile h1 {
    font-size: 1.6rem;
  }
  
  .links {
    gap: 10px;
  }
  
  .links button {
    width: 45px;
    height: 45px;
  }
  
  .links img {
    width: 22px;
    height: 22px;
  }
  
  .overlay-text {
    font-size: 1.4rem;
  }
  
  .btn-sim, .btn-nao {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

/* Orientação landscape em telefones */
@media (max-width: 700px) and (orientation: landscape) {
  .profile {
    padding: 20px 25px;
    margin: 5px;
  }
  
  .avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .avatar-decor {
    width: 60px;
    top: -15px;
  }
  
  h1, .profile h1 {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
  }
  
  .desc {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  
  .city {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .links {
    margin-top: 12px;
    gap: 10px;
  }
  
  .links button {
    width: 40px;
    height: 40px;
  }
  
  .links img {
    width: 20px;
    height: 20px;
  }
  
  .overlay-content {
    padding: 20px 30px;
    gap: 20px;
  }
  
  .overlay-text {
    font-size: 1.3rem;
  }
  
  .overlay-buttons {
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .btn-sim, .btn-nao {
    padding: 10px 25px;
    font-size: 1rem;
    width: auto;
    margin: 0;
  }
}

/* Melhorias de acessibilidade para touch */
@media (max-width: 700px) {
  .links button,
  .btn-sim,
  .btn-nao {
    min-height: 44px; /* Tamanho mínimo recomendado para touch */
    touch-action: manipulation; /* Melhora resposta ao toque */
  }
  
  .volume-mixer {
    min-height: 44px;
  }
  
  /* Melhor contraste para telas pequenas */
  .profile {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  }
  
  .overlay-content {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
}

/* Remover .custom-cursor temporariamente */
#volumeIcon {
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.2s;
}
#volumeIcon.muted {
  opacity: 1;
}

/* Glow normal para times de futebol */
.badge-team {
  box-shadow: 0 0 12px 2px var(--badge-color, #fff), 0 2px 8px rgba(0,0,0,0.18);
}
.badge-team:hover {
  box-shadow: 0 0 24px 6px var(--badge-color, #fff), 0 4px 16px rgba(0,0,0,0.25);
  border-color: var(--badge-color, #fff);
}

/* Badge de amor com efeito de corações animados */
.badge-love {
  overflow: visible;
  box-shadow: 0 0 16px 4px #ff4f81, 0 2px 8px rgba(0,0,0,0.18);
  position: relative;
}
.badge-love .hearts-effect {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 3;
}
.badge-love .hearts-effect .heart {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: none;
  font-size: 14px;
  opacity: 0.8;
  animation: floatHeart 1.2s linear forwards;
}
@keyframes floatHeart {
  0% {
    transform: translate(-50%, -50%) scale(0.7) rotate(-10deg);
    opacity: 0.8;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -90px) scale(1.2) rotate(10deg);
    opacity: 0;
  }
}

/* Campos extras do perfil */
.profile-extra {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 10px 0 0 0;
  flex-wrap: wrap;
}
.profile-team {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #fff;
  font-size: 1.08rem;
  text-shadow: 0 0 8px #e32c2c, 0 0 16px #fff2;
  padding: 4px 14px 4px 8px;
  border-radius: 16px;
  background: rgba(227,44,44,0.10);
  box-shadow: 0 0 12px 2px #e32c2c44;
}
.team-logo {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  filter: drop-shadow(0 2px 4px #e32c2c88);
  object-fit: contain;
}
.profile-love {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #ff4f81;
  font-size: 1.08rem;
  background: rgba(255,79,129,0.10);
  border-radius: 16px;
  padding: 4px 14px 4px 8px;
  box-shadow: 0 0 12px 2px #ff4f8144;
  position: relative;
  overflow: visible;
}
.love-emoji {
  font-size: 20px;
  margin-right: 7px;
  animation: lovePulse 1.2s infinite alternate;
}
@keyframes lovePulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 #ff4f81); }
  100% { transform: scale(1.18); filter: drop-shadow(0 0 8px #ff4f81); }
}

.love-name {
  color: #ff4f81;
  border-radius: 6px;
  padding: 2px 10px;
  letter-spacing: 0.15em;
  transition: none;
  cursor: default;
  user-select: none;
  pointer-events: none;
}
.profile-love:hover .love-name,
.profile-love:focus .love-name {
  color: #ff4f81;
}

.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  background: url('componentes/cursor.png') center center no-repeat;
  background-size: contain;
  border: none;
  box-shadow: none;
  transform: translate(-50%, -50%);
  opacity: 1;
  mix-blend-mode: normal;
  display: block !important;
}
body, html {
  cursor: none !important;
}
.copy-nick {
  cursor: pointer !important;
}
.custom-cursor.hide {
  opacity: 0;
}
@media (max-width: 700px) {
  .custom-cursor { display: none !important; }
}

button, a, input, textarea, select, .btn-sim, .btn-nao, [tabindex] {
  cursor: none !important;
}
.custom-cursor {
  display: block !important;
}
body.cursor-pointer .custom-cursor {
  display: block !important;
}

.volume-mixer, .volume-mixer *,
.badge, .badge *,
.profile-love, .profile-love *,
.profile-team, .profile-team *,
.badges-container, .badges-container * {
  cursor: none !important;
} 

.minecraft-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 24px 32px 18px 32px;
  margin: 32px auto 0 auto;
  max-width: 260px;
  opacity: 0.97;
}

.mc-block {
  width: 100%;
  background: rgba(20, 20, 30, 0.92);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 0 0 2px #23252644;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 16px 0 10px 0;
  transition: box-shadow 0.2s;
}
.mc-block:last-child { margin-bottom: 0; }
.mc-block-head {
  background: linear-gradient(120deg, #232526 60%, #185a9d 100%);
  flex: 0 0 auto;
  min-width: unset;
  max-width: unset;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  padding-right: 18px;
}
.mc-block-nick {
  background: linear-gradient(120deg, #232526 60%, #43cea2 100%);
}
.mc-block-cape {
  background: linear-gradient(120deg, #232526 60%, #15ff00 100%);
}
.mc-block:hover {
  box-shadow: 0 4px 24px 2px #43cea2cc, 0 2px 12px rgba(0,0,0,0.22);
}
.mc-head {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  background: #222;
}
.mc-nick {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 8px #43cea2, 0 0 18px #185a9d;
  letter-spacing: 1px;
}
.mc-cape {
  width: 70px;
  height: 120px;
  border-radius: 8px;
  margin-top: 4px;
  background: #222;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.mc-cape-label {
  color: #ffd700;
  font-size: 0.95rem;
  margin-top: 4px;
  font-weight: bold;
  text-shadow: 0 0 8px #232526;
} 

.mc-block-head-cape {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
.mc-block-head-cape .mc-head {
  margin-bottom: 0;
}
.mc-block-head-cape .mc-nick {
  margin: 0 12px;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .mc-block-head-cape {
    flex-direction: column;
    gap: 8px;
  }
  .mc-block-head-cape .mc-nick {
    margin: 0;
    font-size: 1.05rem;
  }
} 

.mc-area-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 700px) {
  .mc-area-flex {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.mc-block-head, .mc-block-cape {
  flex: 1 1 0;
  min-width: 120px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} 