body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #eef2f7, #dfe6ed);
  color: #2c3e50;
  margin: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-box {
  background: linear-gradient(to bottom right, #ffffff, #f0f4f8);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.section-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.section-box h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #3498db;
}

.plugin-description {
  background-color: #ffffff;
  padding: 1.5rem;
  border-left: 5px solid #3498db;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.plugin-description p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.panel {
  display: none;
  background-color: #ffffff;
  border-left: 4px solid #3498db;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

pre {
  background-color: #f4f4f4;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 6px;
}

ul {
  margin-left: 1.5rem;
}