.collection-section.looking-for {
  margin-top: 48px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 28px 32px 32px 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.looking-title {
  text-align: center;
  color: #b60000;
  font-size: 1.7em;
  margin: 0 0 18px 0;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.looking-list {
  list-style: none;
  padding: 0 0 24px 0;
  margin: 0 auto;
  max-width: 400px;
  color: #333;
  font-size: 1.08em;
  text-align: center;
  margin-bottom: 22px;
  margin-top: 0;
  line-height: 1.5;
  font-weight: 400;
}
.looking-list li {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  padding: 8px 16px;
}
.looking-list .pokeball-img {
  width: 28px;
  height: 28px;
  margin-right: 14px;
}
.collection-section.blue .collapsible-header {
  background: #b2ebf2;
  color: #0077b6;
}

.collection-section.crystal .collapsible-header {
  background: #a3ccd1;
  color: #f0f0f0;
}
.collection-section.white .collapsible-header {
  background: #2e2e2e;
  color: #f0f0f0;
}
.collection-section.red .collapsible-header {
  background: #ffb2b2;
  color: #b60000;
}
.collection-section.purple .collapsible-header {
  background: #e0b2ff;
  color: #7c3aed;
}
.collection-section.green .collapsible-header {
  background: #b2ffb2;
  color: #228B22;
}
.collection-section.gray .collapsible-header {
  background: #e0e0e0;
  color: #444;
}
.collection-section.darkyellow .collapsible-header {
  background: #ffe680;
  color: #bfa600;
}
.collection-section.darkblue .collapsible-header {
  background: #b2c6ff;
  color: #003366;
}
.collection-section.yellow .collapsible-header {
  background: #fff9b2;
  color: #bfa600;
}
.collection-section.darkerblue .collapsible-header {
  background: #372949;
  color: #7d6b94;
}
.collection-section.pink .collapsible-header {
  background: #ffd6f9;
  color: #c2185b;
}
.collection-section.goldwhite .collapsible-header {
  background: #ad8e04;
  color: #f4f3f5;
}
.collection-section.prism .collapsible-header {
  background: #130747;
  color: #b1a508;
}
.collection-section.sunrise .collapsible-header {
  background: #a5387b;
  color: #cabf20;
}
body {
  font-family: Arial, sans-serif;
  background: #f8f8fc;
  margin: 0;
  padding: 0 0 40px 0;
}
h1 {
  text-align: center;
  margin-top: 24px;
}

.banner-silvarion-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 12px 0;
}
.banner-silvarion-img {
  width: 90%;
  max-width: 900px;
  height: auto;
  border-radius: 50% / 25%;
  object-fit: cover;
  padding: 0;
  display: block;
}
.desc {
  text-align: center;
  margin-bottom: 32px;
  color: #444;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.desc {
  text-align: center;
  margin-bottom: 32px;
  color: #444;
}
.collection-section {
  max-width: 900px;
  margin: 32px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.collapsible-header {
  width: 100%;
  background: linear-gradient(90deg, #e0f7fa, #b2ebf2);
  color: #0077b6;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.collection-section:nth-child(3) .collapsible-header {
  background: linear-gradient(90deg, #ffe0e0, #ffb2b2);
  color: #b60000;
}
.collapsible-content {
  display: block;
  background: #f9f9f91a;
  padding: 24px;
}

.pokemon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  justify-items: center;
}
.pokemon-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 12px 8px;
  text-align: center;
  width: 110px;
}
.pokeball-img {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
}
.pokemon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 6px;
}
.pokemon-name {
  font-size: 1em;
  color: #333;
  margin-top: 2px;
}
.arrow {
  font-size: 1.2em;
  margin-left: 8px;
}
