/* tutorial-link.css */
.tutorial-link-box {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.tutorial-link {
  display: inline-block;
  background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
  color: #222;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(255,204,51,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tutorial-link:hover {
  background: linear-gradient(135deg, #ffcc33 0%, #ffb347 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,204,51,0.25);
}
