* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    padding: 2rem;
    background: #f0f0f0;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
  }

  .transform-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .example-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
  }

  .example {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .box {
    width: 100px;
    height: 100px;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
  }

  .translate:hover {
    transform: translate(50px, 50px);
  }

  .rotate:hover {
    transform: rotate(45deg);
  }

  .scale:hover {
    transform: scale(1.5);
  }

  .skew:hover {
    transform: skew(20deg, 10deg);
  }

  .multiple:hover {
    transform: rotate(45deg) scale(1.2) translate(20px, 20px);
  }

  code {
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: monospace;
  }

  .description {
    text-align: center;
  }