.lmaze-lb-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  font-family: "Segoe UI", system-ui, sans-serif;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #eee;
}
.lmaze-lb-header {
  background: #2c3e50;
  color: #fff;
  padding: 25px;
  text-align: center;
}
.lmaze-lb-header h2 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}
.lmaze-user-status {
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
}
.lmaze-lb-body {
  padding: 20px;
}
.lmaze-lb-title {
  text-align: center;
  color: #555;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.lmaze-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}
.lmaze-tab {
  background: #f4f6f8;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  color: #666;
  font-weight: 600;
  transition: all 0.2s;
}
.lmaze-tab:hover {
  background: #e0e0e0;
}
.lmaze-tab.active {
  background: var(--lmaze-btn-bg, #007bff);
  color: var(--lmaze-btn-text, #ffffff);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.lmaze-table-wrap {
  overflow-x: auto;
  min-height: 200px;
  transition: opacity 0.3s;
}
.lmaze-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.lmaze-table th {
  background: #f8f9fa;
  color: #888;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 12px;
  text-align: left;
}
.lmaze-table td {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.lmaze-table tr:last-child td {
  border-bottom: none;
}
.lmaze-table tr:hover {
  background-color: #f9fbff;
}
.lmaze-rank-1 {
  background-color: #fffde7;
}
.lmaze-rank-2 {
  background-color: #f5f5f5;
}
.lmaze-rank-3 {
  background-color: #fff8f0;
}
.lmaze-rank-1 .lmaze-col-rank {
  color: #f1c40f;
  font-weight: bold;
  font-size: 1.1em;
}
.lmaze-col-time {
  font-family: monospace;
  font-weight: 600;
  color: #555;
}
.lmaze-col-name {
  font-weight: 600;
}
.lmaze-form-area {
  padding: 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
  text-align: center;
}
.lmaze-inline-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}
.lmaze-inline-form input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex: 1;
}
.lmaze-btn {
  background: var(--lmaze-btn-bg, #007bff);
  color: var(--lmaze-btn-text, #ffffff);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: filter 0.2s;
}
.lmaze-btn:hover {
  filter: brightness(0.9);
}
.lmaze-reward-box {
  margin: 20px auto;
  max-width: 90%;
  padding: 20px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: lmazeSlideDown 0.5s ease-out;
}
.lmaze-reward-icon {
  font-size: 3rem;
}
.lmaze-reward-content h4 {
  margin: 0 0 5px 0;
  color: #2e7d32;
}
.lmaze-reward-content p {
  margin: 0 0 10px 0;
  color: #444;
}
.lmaze-btn-dl {
  display: inline-block;
  text-decoration: none;
  background: #2e7d32;
  color: white;
}
.lmaze-btn-dl:hover {
  background: #1b5e20;
  color: white;
}
@keyframes lmazeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
