/* Quick Tips Overlay Styles - Dark Mode */

.tips-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.tips-modal {
  background: #252525;
  border: 1px solid #333;
  max-width: 400px;
  width: 100%;
  padding: 32px;
  font-family: 'Crimson Pro', Georgia, serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.tips-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px 0;
  text-align: center;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.tips-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #333;
}

.tips-item:last-child {
  border-bottom: none;
}

.tips-icon {
  width: 28px;
  height: 28px;
  background: #6ab0ff;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

.tips-text {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #e5e5e5;
  padding-top: 2px;
}

.tips-dismiss {
  width: 100%;
  padding: 14px 28px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.2rem;
  background-color: #e5e5e5;
  color: #1a1a1a;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tips-dismiss:hover {
  background-color: #fff;
}
