* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #111, #000);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #222;
}

header h1 {
  color: #00bcd4;
  font-size: 24px;
}

/* LAYOUT */
.container {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 20px;
  padding: 20px;
}

/* SIDEBARS */
.sidebar {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  padding: 15px;
  border-radius: 8px;
}

.sidebar h2 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #00bcd4;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid #222;
  cursor: pointer;
}

.sidebar li:hover {
  color: #00bcd4;
}

/* CONTEÚDO */
.main h2 {
  margin-bottom: 15px;
}

/* GRID DE ANIMES */
.anime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

/* CARD */
.anime-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anime-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.anime-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.anime-card h3 {
  padding: 10px;
  font-size: 15px;
  text-align: center;
}

/* LINK */
a {
  text-decoration: none;
  color: inherit;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
}