* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #1e1e2e;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
h1 {
  font-size: 2.5rem;
  color: #ffcc00;
}
.transform-section {
  background: #2b2b3b;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.example-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.example {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff8c00, #ff2d55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.translate:hover { transform: translate(30px, 30px); }
.rotate:hover { transform: rotate(30deg); }
.scale:hover { transform: scale(1.3); }
.skew:hover { transform: skew(15deg, 10deg); }
.multiple:hover { transform: rotate(30deg) scale(1.2) translate(15px, 15px); }
code {
  background: #3a3a4a;
  padding: 0.5rem;
  border-radius: 5px;
  font-family: monospace;
  color: #ffcc00;
}