#sidebar {
    float: left;
    width: 200px;
    margin-right: 15px;
}

#sidebar #sidebar-account {
    background-image: linear-gradient(145deg, #cc2100a3 25%, #e23e02 50%, hwb(118deg 0% 100% / 38.82%) 75%);
    display: block;
    border-radius: 20px;
    border: 4px double #7a2609;
    margin-bottom: 10px;
}

#sidebar #sidebar-account div {
    text-align: center;
    list-style: none;
    padding: 5px 0;
    display: block;
    width: 100%;
    margin: 0;
}

#sidebar #sidebar-account .admin a {
    font-size: 16px;
    text-decoration: none;
    color: orange;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px; /* Exemplo de padding */
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    display: inline-block;
}


#sidebar #sidebar-account .admin a:hover {
    color: rgb(4, 254, 67);
}

#sidebar #sidebar-account .account a {
    font-size: 18px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    display: inline-block;
    color: #90EE90;
}

#sidebar #sidebar-account .account a:hover {
    color: #00cffd;
}

#sidebar #sidebar-account .state a {
    font-size: 11px;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
    display: inline-block;
}

#sidebar #sidebar-account .state a:hover {
    color: #00cffd;
}

#sidebar #sidebar-misc {
    text-align: center;
    margin-top: 30px;
    color: #fff;
}

#sidebar #sidebar-misc a:not(.martel) {
    font-size: 10px;
    color: #419AFF;
}

#sidebar .bar {
    background: url('../images/bar.gif') center center no-repeat;
    text-align: center;
    display: block;
    margin: 3px 0;
    height: 4px;
    width: 100%;
}

.category-header {
      position: relative;
      text-align: center;
      padding: 16px 0px;
      color: #ffe3a1;
      font-size: 18px;
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      background: linear-gradient(
        120deg,
        #2b0000,
        #7a1200,
        #ff5100,
        #7a1200,
        #2b0000
      );
      background-size: 400% 400%;
      animation: flamesMove 6s ease-in-out infinite;
      box-shadow:
        0 0 12px #ff510080,
        0 0 25px #ff510040,
        inset 0 0 15px #7a0c00;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 4px;
    }

.category-header, .menu-category *,
.category-header * {
    user-select: none !important;
    -webkit-user-select: none !important; /* Safari */
    -moz-user-select: none !important; /* Firefox */
    -ms-user-select: none !important; /* IE10+/Edge */
}

    /* Formato com recorte para cima e para baixo */
.top-bottom-button {
  clip-path: polygon(
    10% 0%, 20% 0%, 25% 10%,
    75% 10%, 80% 0%, 90% 0%,
    100% 15%, 100% 85%,
    90% 100%, 80% 100%, 75% 90%,
    25% 90%, 20% 100%, 10% 100%,
    0% 85%, 0% 15%
  );
}


.category-header:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 18px #ff5100cc,
    0 0 30px #ff510080,
    inset 0 0 20px #9c1c00;
}

/* Formato 1 */
.top-button {
    border-top: 3px solid #ff5100;
  clip-path: polygon(
    10% 0%, 90% 0%, 
    100% 15%, 100% 85%, 
    90% 100%, 80% 100%, 
    75% 90%, 25% 90%, 
    20% 100%, 10% 100%, 
    0% 85%, 0% 15%
  );
}

/* Formato 2 (variação) */
.bottom-button {
    border-bottom: 3px solid #ff5100;
  clip-path: polygon(
    10% 0%, 20% 0%, 25% 10%, 
    75% 10%, 80% 0%, 90% 0%, 
    100% 15%, 100% 85%, 
    90% 100%, 10% 100%, 
    0% 85%, 0% 15%
  );
}

@keyframes flamesMove {
    0% {
    background-position: 0% 50%;
    }
    50% {
    background-position: 100% 50%;
    }
    100% {
    background-position: 0% 50%;
    }
}

@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.category-header>span {
  position: relative;
  z-index: 2;
}

.category-content {
  display: none;
  padding: 15px;
  margin-top: -2px;
  background: rgba(0, 0, 0, 0.6); /* fundo translúcido */
  backdrop-filter: blur(3px); /* efeito vidro fosco opcional */
  border: 1px solid #831e00;
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 14px;
  clip-path: none; /* remove os recortes */
  box-shadow: inset 0 0 5px #200000;
  transition: all 0.3s ease-in-out;
}

.menu-category {
  position: relative;
  background: #190a0c;
  border-left: 2px solid #ff5100;
  border-right: 2px solid #ff5100;
  padding: 4px 10px;
  color: #ffe3a1;
  justify-self: center;
  width: 133px;
  font-weight: bold;
  margin-top: -4px;
  text-align: center;
  overflow: visible;
}

/* Ponta para cima */
.menu-category::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  height: 7px;
  width: 125px;
  background: #190a0c;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  z-index: 10;
}

/* Ponta para baixo */
.menu-category::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  height: 7px;
  width: 125px;
  background: #190a0c;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%);
  z-index: 10;
}

/* Quando quiser remover as pontas */
.menu-category.sem-pontas::before,
.menu-category.sem-pontas::after {
  display: none;
  content: none;
}

.menu-category.sem-pontas {
  border-bottom: 2px solid #ff5100;
}

.menu-category > a {
  position: relative;
  text-align: center;
  padding: 8px 0;
  display: block;
  margin: 4px 0;
  font-size: 13px;
  text-shadow: 0px 0px 13px rgb(110, 6, 6), -1px -1px 0 #222, 1px -1px 0 #222, -1px 1px 0 #222, 1px 1px 0 #222;
  background: linear-gradient(90deg, #742509, #ff3c00);
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  transition: 0.2s ease;
  box-shadow: 0 0 5px #200000 inset;
}

.menu-category > a:hover {
  background: linear-gradient(90deg, #ff4d00, #ff2200);
  box-shadow: 0 0 8px #ff3c00;
}

.menu-category a {
  color: #fff;

}

.menu-category a:hover {
  text-decoration: none;
}
 