.downloadList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0;
  text-align:center;
}
  


.downloadList li {
  list-style: none;
background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 150, 0.3);

  padding: 20px;
  box-sizing: border-box;
}

.downloadList li dl {
  display: block;
  gap: 20px;
  align-items: center;
}

.downloadList li dl dt img {
  width: 128px;
  height: 128px;
  border-radius: 17px;
}

.downloadList li dl dd.tit {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.downloadList li dl dd.txt01,
.downloadList li dl dd.txt02 {
  font-size: 14px;
  color: #ccc;
  text-align: center;
  display: block; 
  margin-top: 4px;
}


.downloadList li dl dd.btn {
  margin-top: 10px;
}

.downloadList li dl dd.btn a {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  height: 50px;
  line-height: 50px;
 background-color: #ffdd99;
    color: #000;
  text-align: center;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  padding: 0 20px 0px 20px;
font-weight:bold;
}

.downloadList li dl dd.btn a:hover {
  background: #dcdcf7;  
   transition-duration: 0.8s;
}
  
  .downloadList p {
    font-weight:bold;
    font-size:24px !important; color:#fff;
    margin-top:10px;
  }

 .button-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    justify-items: center;
    margin-top: 20px;
  }

  .bt {
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    color: #666666;
    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    text-align: center;
    width: 100%;
        background: #eaeaea;
  }

  .bt:hover {
    background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  }

  .bt:active {
    position: relative;
    top: 1px;
  }

  .bt-copy {
    font-size: 18px;
    padding: 10px 25px;
    margin-left: 40px;
    margin-top: 2px;
    margin-bottom:20px;
  }

  .copy-button-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
  }

.custom-tab-container {
        display: flex;
        justify-content: center;
margin-top:20px;
    }

    .custom-tabs {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(25, 22, 18, 0.8));
        border-right: 2px solid rgba(255, 215, 150, 0.3);
        padding: 10px;
    }

    .custom-tab {
        padding: 14px 20px;
       background: rgba(0, 0, 0, 0.1);
        color: #d4b17a;
        border: 1px solid rgba(255, 215, 150, 0.3);
        transition: background 0.3s, color 0.3s;

        text-align: center;
        width: 200px;
        margin-bottom: 5px;
        cursor: pointer;
    }

    .custom-tab:hover {
        background: rgba(65, 55, 40, 0.9);
        color: #ffdd99;
    }

    .custom-tab.active {
        background: rgba(65, 55, 40, 0.9);
        color: #fff;
        font-weight: bold;
        border-left: 4px solid #ffdd99;
    }

    .custom-content-container {
        padding-left: 20px;
        width: 100%;
        min-width: 400px;
        flex-grow: 1;
    }

    .custom-content {
        display: none;
        text-align: left;
        width: 100%;
        min-height: 200px;
    }

    .custom-content.active {
        display: block;
    }