body {
      font-family: Arial, sans-serif;
      margin: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      background-color: #1e1333;
      color: brown;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(7, 80px);
      grid-template-rows: repeat(4, 70px);
      position: relative;
      user-select: none;
    }

    .cell {
      width: 80px;
      height: 70px;
      background: #3d3857;
      clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
      );
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      margin-bottom: -22px; 
      transition: background 0.3s;
      position: relative;
      border: 1px solid #aaa;
      box-sizing: border-box;
    }

    .cell[data-row='1'],
    .cell[data-row='3'] {
      margin-left: 40px;
    }

    .champion-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      width: 600px;
    }

    .champion {
      width: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 2px solid #ccc;
      border-radius: 8px;
      overflow: hidden;
      cursor: grab;
      transition: border-color 0.3s;
    }

    .champion:hover {
      border-color: #666;
    }

    .champion img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      pointer-events: none;
      user-select: none;
    }

    .champion p {
      margin: 0;
      padding: 2px 0;
      font-size: 0.55rem;
      text-align: center;
      color: inherit;
      background-color: #3d3857;
      width: 100%;
    }

    .cell img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      pointer-events: none;
      user-select: none;
      border-radius: 4px;
    }

    .traits-panel {
      width: 300px;
    }

    .traits-panel h3 {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .trait {
      margin-bottom: 5px;
      padding: 6px 10px;
      background: #ccc;
      border-radius: 5px;
      font-weight: normal;
      transition: background 0.3s;
    }

    .trait.active {
      background: #cd7f32; 
      font-weight: bold;
      color: white;
      box-shadow: 0 0 6px #cd7f32;
    }