.pod-container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 0 20px;
    grid-template-areas: 
      "main-pod main-pod main-pod main-pod main-pod main-pod" 
      "dict-screenshot-pod dict-screenshot-pod card-screenshot-pod card-screenshot-pod stats-screenshot-pod stats-screenshot-pod";
  }

  @media (max-width: 768px) {
    .pod-container {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 0 16px;
      grid-template-areas: 
        "main-pod" 
        "card-screenshot-pod" 
        "stats-screenshot-pod" 
        "dict-screenshot-pod";
    }
  }
  
  .main-pod {
    grid-area: main-pod;
    text-align: center;
    padding: 50px;
    /* background-color: #3cf; */
  }
  
  .main-pod h2 {
    padding-top: 15px;
    padding-bottom: 25px;
  }
  
  .screenshot-pod img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .dict-screenshot-pod {
    grid-area: dict-screenshot-pod;
  }
  
  .card-screenshot-pod {
    grid-area: card-screenshot-pod;
  }
  
  .stats-screenshot-pod {
    grid-area: stats-screenshot-pod;
  }
  
  .app-store-badge {
    background-image: url("/images/app-store-badge.svg");
    width: 165px;
    height: 52px;
    border-radius: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
    background-color: #000;
    display: inline-block;
    margin: 0 5px;
    border: 1px solid #37464f;
  }
  
  .google-play-badge {
    background-image: url("/images/google-play-badge.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
    background-color: #000;
    width: 165px;
    height: 52px;
    border-radius: 26px;
    display: inline-block;
    margin: 0 5px;
    border: 1px solid #37464f;
  }
  
  .pod {
    /* background-color: #1c2c33; */
    border-radius: 12px;
    /* padding: 24px; */
    margin: 0;
  }
