* {
    margin: 0;
    padding: 0;
}

.card {
    background-color: rgba(0, 0, 0, 0.8); /* Adiciona transparência ao fundo do card */
    width: 400px;
    height: 500px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 150px #050505;
    z-index: 2;
    transition: transform 0.5s ease-out;
}


.second {
    background-color: rgba(0, 0, 0, 0.8); /* Define a cor de fundo com transparência */
    width: 400px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all .5s ease-in-out;
    opacity: 0.7; /* Define o nível de transparência */
}

.container {
    display: flex;
    justify-content: space-between; /* Alinha os cards lado a lado */
    align-items: center; /* Alinha os cards verticalmente */
    min-height: 100vh;
}

@media (max-width: 960px) {
    .container {
        flex-direction: column; /* Muda para empilhar os cards verticalmente em telas menores */
    }
}
.showcase {
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 1000px;
}

.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    box-shadow: inset 120px 100px 250px #000000, inset -120px -100px 250px #000000;
}

.adjust {
    padding: 16px;
}

.text-white {
    font-size: 20px;
    font-weight: 600;
}

.biel {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    font-weight: 500;
    color: #474747;
}

.looser {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: 600;
    color: #0091ff;
}

/* Additional styles to move the card */
.card.move-left {
    transform: translate(-60%, -50%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.card.move-right {
    transform: translate(60%, -50%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.card.move-up {
    transform: translate(-50%, -60%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.card.move-down {
    transform: translate(-50%, 60%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.text-social {
    color: white;
    text-align: left;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 0px;
    letter-spacing: 1.3px;

}

.social {
    float: left;
    margin: 14px;
}

.youtube {
    margin-left: 5px;
}

.btn {
    height: 60px;
    width: 200px;
    margin: 0rem;
    padding: 0;
    border: none;
    box-shadow: none;
    float: left;
    border-radius: 5px;
    margin-top: 5px;
    text-transform: none;
}

.text-server {
    font-size: 16px;
    margin-top: 16px;
    font-weight: 500;
    color: #fff;
    float: left;
}

body {
    background-color: black !important;
    transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
}





.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #f00000 !important;
}


/* The actual popup */

.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #ff0000;
    color: #ff0000 !important;
    text-align: center;
    border-radius: 3px;
    padding: 2px 0;
    position: absolute !important;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    font-size: 13px;
}


/* Popup arrow */

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}




.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s;
}




@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feature-l {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.feature-l .sa {
    display: inline-block;
    float: left;
    margin: 0 1rem 0 0;
}

.feature-l h1,
.feature-l p {
    height: auto;
}

.discrim {
    font-weight: 400 !important;
    font-style: italic !important;
    font-family: inherit !important;
    color: #ffffff !important;
    font-size: 13.5px !important;
}

.second h4 {
    color: #c9c9c9;
    font-weight: 900 !important;
    font-size: 13px;
    margin-bottom: 10px;
    padding-left: 8px;
    padding-top: 7px;
    text-transform: uppercase;
}

.second p {
    color: rgba(255, 255, 255, .3);
    font-size: 15px;
    padding-left: 8px;
    padding-bottom: 20px;
}

.second hr {
    background-color: rgba(255, 255, 255, .1);
    width: 300px;
    margin: 0 !important;
      transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

@media (max-width: 960px) {
    body {

    }

    .showcase {

    }

    .card {
        width: 400px !important;

    }

    .second {
        width: 400px !important;

    }

    .second hr {
        width: 250px;

    }

    .second a {
        margin-left: 5.2px;

    }

    .aligner2-0 {
        display: none;

    }
}


@media(min-width: 960px) {
    .none {
        display: none;
    }

}


.vertical-align {
    vertical-align: middle;
    width: 30px;
    height: 30px;

}

.second a {
    position: relative;
    border-radius: 3px;
    padding: 13px 14px 13px 13px;
    width: 240px;
    border: 1px solid;
    border-color: hsla(0, 0%, 100%, 0.06);
    transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.second span {
    font-size: 16px;
    font-weight: 500;
    margin-left: 1px;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    color: #f2f2f2;
    padding: 0 3px 0 0;
      transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.aligner {
    padding: 0 20px 0 0 !important;
      transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.aligner1-0 {
    padding: 0 7.5px 0 0 !important;
      transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.aligner2-0 {
    padding: 0 70px 0 0 !important;
      transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}
      .swal2-popup.swal2-toast {
        flex-direction: row;
        align-items: center;
        width: auto;
        padding: 0.6252em;
        overflow-y: hidden;
        background: #ff0000;
        box-shadow: 0 0 0.625em #ff2424;
      }

.rocksl {
    position: relative;
    justify-content: center;
    align-items: center;
    display: block;
    margin-left: center;
    margin-right: auto;
color: #f5f5f5;
}

.rockslofy {
    position: relative;
    justify-content: center;
    align-items: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
color: #878787;
}

.pfph img { 
    z-index: 1;
    width: 130px;
    height: 130px;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    border: 7px solid #18191b;
    transition-duration: 0.4s;
    transition-property: transform;
}

.pfph img:hover { 
    transform: scale(1.1);
}

.badd {
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.media-controls {
    margin-top: 5%;
    animation: fadein-bottom 3s;
    -moz-animation: fadein-bottom 3s;
    -webkit-animation: fadein-bottom 3s;
    -o-animation: fadein-bottom 3s;
}

.button {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    color: rgb(0, 0, 0);
    transition: transform 0.5s, color 0.5s;
}

.button:hover {
    color: var(--text-highlighted);
    -ms-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

.animation-hover {
    transition: color 0.25s;
}


.play::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f04b";
}

.pause::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f04c";
}

.mute::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f6a9";
}

.unmute::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f028";
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    pointer-events: none;
}

.card.move-left {
    transform: translate(-60%, -50%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.card.move-right {
    transform: translate(60%, -50%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.card.move-up {
    transform: translate(-50%, -60%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.card.move-down {
    transform: translate(-50%, 60%) perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.1);
}


#video {
  background-color: rgba(0, 0, 0, 0.322);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* antes era 0.07 */
}
#myVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5; /* Altere a opacidade conforme desejado */
}
/* Badges do Discord carregados pela API */
.badd {
    gap: 6px;
    min-height: 28px;
    flex-wrap: wrap;
}

.discord-badge {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.18));
    transition: transform 180ms ease, filter 180ms ease;
}

.discord-badge:hover {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

.badd.is-empty::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
}

/* Melhorias v2 - Discord API, badges e responsividade */
:root {
  --discord-blurple: #222222;
  --card-glow: rgba(0,0,0,0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  /* removed decorative purple radial gradients */
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.70));
}

.card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(5, 5, 10, 0.82) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 90px rgba(0,0,0,0.70) !important;
}

.feature-l {
  text-align: center;
}

.pfph {
  display: inline-grid;
  place-items: center;
  padding: 4px;
  border-radius: 50%;
  /* removed purple gradient ring around avatar */
  background: none !important;
  box-shadow: none !important;
}

.profile-img {
  width: 112px !important;
  height: 112px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 4px solid rgba(0,0,0,0.85);
  background: #111;
}

#Name {
  display: grid;
  gap: 5px;
  justify-items: center;
  margin-top: 10px;
}

#global {
  display: block;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 0.2px;
  line-height: 1.15;
}

#name {
  display: block;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  color: rgba(255,255,255,0.72) !important;
}

.discord-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #80848e;
  box-shadow: 0 0 10px currentColor;
}

.discord-status.is-online .status-dot { background: #23a55a; }
.discord-status.is-idle .status-dot { background: #f0b232; }
.discord-status.is-dnd .status-dot { background: #f23f43; }
.discord-status.is-offline .status-dot { background: #80848e; }

.badd {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.discord-badge-item {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.discord-badge-item.is-api {
  border-color: rgba(88,101,242,0.35);
}

.discord-badge-item.is-manual {
  border-color: rgba(255,255,255,0.11);
}

.discord-badge-item:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
}

.discord-badge {
  width: 23px !important;
  height: 23px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.20));
}

.discord-badge-empty {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}

.second {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0, 0, 0, 0.48) !important;
}

.card-body h4 {
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0.4px;
}

.card-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 12px;
  color: #fff !important;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.card-body a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

@media (max-width: 520px) {
  body {
    overflow: auto !important;
  }

  .container {
    min-height: 100vh;
    padding: 18px 12px;
  }

  .card,
  .second {
    width: min(400px, calc(100vw - 24px)) !important;
  }

  .profile-img {
    width: 96px !important;
    height: 96px !important;
  }

  #global {
    font-size: 20px !important;
  }

  .mc-line {
    gap: 4px !important;
  }

  .mc-name,
  .mc-tag,
  .mc-clan {
    font-size: 12px !important;
  }

}
