body {
    background: #0b0c10;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
  }
  
  h1 {
    color: #e63946;
  }
  
  .pyramid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
  }
  
  .side {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .amount {
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 5px;
    width: 150px;
    text-align: center;
    font-size: 18px;
  }
  
  .red {
    background-color: #ffdddd;
    color: #c00000;
    border: 2px solid #c00000;
  }
  
  .gold {
    background-color: #fff4c2;
    color: #b8860b;
    border: 2px solid #b8860b;
  }
  .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
    max-width: 700px;
  }
  
  .box {
    background-color: #1f2833;
    color: white;
    border: 2px solid #66fcf1;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
  }
  
  .box:hover {
    transform: scale(1.1);
    background-color: #45a29e;
  }
    