body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,0,0,0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255,0,0,0.08), transparent 25%),
    linear-gradient(135deg, #050505, #0a0a0a, #111);
    
  background-attachment: fixed;
  color: #fff;
  overflow-x: hidden;
}

.boss-section {
  padding: 120px 50px 50px;
}



/* TITULO */
.titulo-boss {
  text-align: center;
  font-size: 3rem;
  color: #ff2b2b;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255,43,43,0.8);
  font-family: "Poppins", sans-serif;
}

/* GALERIA */
.boss-galeria {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.boss-card {
  flex: 1 1 200px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgba(255,0,0,0.3);
  background: #0a0a0a;
  box-shadow: 0 0 14px rgba(255,43,43,0.5);
  transition: 0.3s ease;
  min-height: 200px;
}

.boss-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,43,43,0.8);
}

.boss-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: 0.3s ease;
}

.boss-card:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

.boss-nome {
  position: relative;
  right: 17px;
  bottom: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  text-shadow: 0 0 10px rgba(255,43,43,0.9);
}

/* PAINEIS */
.boss-info,
.boss-drops {
  margin-bottom: 35px;
}

.boss-info h2,
.boss-drops h2 {
  color: #ff2b2b;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,43,43,0.7);
}

/* TABELAS */
.boss-info table,
.boss-drops table {
  width: 100%;
  border-collapse: collapse;
  color: #ffdddd;
  font-family: "Poppins", sans-serif;
}

.boss-info th,
.boss-info td,
.boss-drops th,
.boss-drops td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,0,0,0.2);
}

.boss-info th,
.boss-drops th {
  color: #ff2b2b;
  text-shadow: 0 0 8px rgba(255,43,43,0.7);
}

.boss-info tr:hover td,
.boss-drops tr:hover td {
  background: rgba(255,0,0,0.08);
}

.boss-info table {
  text-align: center;
}

.boss-info th,
.boss-info td {
  text-align: center;
}

.IC {
  position: relative;
  right: 120px;
}

.rate {
  position: relative;
  text-align: center;
  right: 120px;
}

.rateforcent {
  position: relative;
  text-align: center;
  right: 118px;
}

.painel-box h2{
    font-size: 38px;
}

.itens-raros{
    margin-top: 30px;
    width: 100%;
}

.raros-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.raro-card{
    width: 500px;
    background: rgba(0,0,0,0.6);
    border: 1px solid #a00000;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.raro-card:hover{
    transform: translateY(-5px);
    border-color: red;
    box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.raro-card img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.raro-info{
    padding: 20px;
    text-align: center;
}

.raro-info h3{
    color: #ff3c3c;
    margin-bottom: 10px;
    font-size: 24px;
}

.raro-info p{
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}


/* HORÁRIOS */
.boss-horarios {
  margin-bottom: 35px;
}

.boss-horarios h2 {
  color: #ff2b2b;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,43,43,0.7);
}

.boss-horarios table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.boss-horarios th,
.boss-horarios td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,0,0,0.2);
}

.boss-horarios th {
  color: #ff2b2b;
  text-shadow: 0 0 8px rgba(255,43,43,0.7);
}

.boss-horarios tr:hover td {
  background: rgba(255,0,0,0.08);
}

/* RESPONSIVO */
@media(max-width: 1100px) {
  .boss-galeria {
    flex-direction: column;
  }

  .boss-card img {
    height: 450px;
  }
}