body.db-home {
  background: #18181c;
  color: #f3f3f3;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.db-home-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.db-logo-row {
  margin-bottom: 12px;
}
.db-logo {
  height: 64px;
  margin-bottom: 8px;
}
.db-title {
  color: #ff2d55;
  font-size: 2.6em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 0 16px #ff2d55, 0 0 2px #fff;
}
.db-tagline {
  text-align: center;
  color: #b3b3b3;
  font-size: 1.15em;
  margin-bottom: 24px;
}
.db-discord-btn {
  background: #5865f2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(88,101,242,0.15);
  margin-bottom: 40px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.db-discord-btn:hover {
  background: #4752c4;
}
.db-why {
  color: #ff2d55;
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 32px;
  margin-top: 0;
}
.db-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 32px;
}
.db-feature-card {
  background: #23232b;
  border: 2px solid #ff2d55;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(255,45,85,0.08);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.db-feature-card:hover {
  box-shadow: 0 4px 24px rgba(255,45,85,0.18);
  border-color: #fff;
}
.db-feature-icon {
  font-size: 2.2em;
  margin-bottom: 12px;
  color: #ff2d55;
}
.db-feature-title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
}
.db-feature-desc {
  color: #b3b3b3;
  font-size: 1em;
  text-align: center;
  margin-bottom: 18px;
}
.db-feature-btn {
  background: #ff2d55;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,45,85,0.12);
  transition: background 0.2s, color 0.2s;
}
.db-feature-btn:hover {
  background: #fff;
  color: #ff2d55;
}
.db-footer {
  color: #b3b3b3;
  text-align: center;
  padding: 18px 0;
  margin-top: 48px;
  font-size: 1em;
}

/* Widgets Gallery Styles */
.db-widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px auto;
}
.db-widget-card {
  background: #23232b;
  border: 2px solid #ff2d55;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(255,45,85,0.08);
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.db-widget-card:hover {
  box-shadow: 0 4px 24px rgba(255,45,85,0.18);
  border-color: #fff;
}
.db-widget-preview {
  width: 100%;
  height: 80px;
  background: #18181c;
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2d55;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255,45,85,0.10);
}
.db-widget-title {
  font-size: 1.15em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
  text-align: center;
}
.db-widget-desc {
  color: #b3b3b3;
  font-size: 1em;
  text-align: center;
  margin-bottom: 14px;
}

/* Widget Config Styles */
.db-widget-config {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.db-widget-config label {
  color: #fff;
  font-size: 1em;
  margin-bottom: 2px;
}
.db-widget-config input[type="text"],
.db-widget-config input[type="number"],
.db-widget-config select {
  background: #18181c;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 1em;
}
.db-widget-config input[type="color"] {
  width: 40px;
  height: 32px;
  border: none;
  background: none;
  margin-left: 8px;
}
.db-widget-config button.db-btn {
  margin-top: 8px;
  align-self: flex-end;
}
