body {
    margin: 0;
    text-align: center;
    padding: 20px;
  }
  
  #p5-container {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    margin: 50px auto;
    display: block;
  }
  
  #p5-container canvas {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  h1, h2, p {
    text-align: center;
    padding: 0 10px;
  }

  .bdsm-stats {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
  }

  .bdsm-stats h3 {
    margin-top: 0;
    font-size: 1.5em;
  }

  .stats-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    text-align: left;
    margin: 20px 0;
  }

  @media (max-width: 600px) {
    .stats-list {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }

  .stat-item {
    padding: 8px;
    border-bottom: 1px solid #444;
  }

  .percent {
    font-weight: bold;
    color: #ff69b4;
    min-width: 50px;
    display: inline-block;
  }

  .bdsm-stats a {
    color: #ff69b4;
    text-decoration: none;
  }

  .bdsm-stats a:hover {
    text-decoration: underline;
  }