  body {
      font-family: Arial, sans-serif;
      margin: 20px;
      background: #fff;
    }

   #rsp-result {
    display: flex;
    justify-content: center; /* 수평 가운데 정렬 */
    align-items: center;      /* 수직 가운데 정렬 (선택사항) */
    gap: 50px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .rsp-result h3 {
      margin-bottom: 10px;
    }

    .rsp-computer {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .rsp-computer li {
      width: 250px;
      height: 250px;
      border-radius: 10px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      display: none;
      cursor: pointer;
      border: 2px solid #ccc;
    }

    .rsp-computer li.on {
      display: block;
      border: 4px solid #2196f3;
    }

    .user-choice li.s {
      background-image: url('./images/game_com_s.png');
    }

    .user-choice li.r {
      background-image: url('./images/game_com_r.png');
    }

    .user-choice li.p {
      background-image: url('./images/game_com_p.png');
    }

    .com-choice li.s {
      background-image: url('./images/game_com2_s.png');
    }

    .com-choice li.r {
      background-image: url('./images/game_com2_r.png');
    }

    .com-choice li.p {
      background-image: url('./images/game_com2_p.png');
    }

    #rsp-select ul {
      list-style: none;
      padding: 0;
      display: flex;
      gap: 10px;
      margin-top: 10px;
      justify-content: center;
    }

    #rsp-select ul li {
      cursor: pointer;
      padding: 15px 20px;
      background: #eee;
      border-radius: 5px;
      font-size: 20px;
      user-select: none;
    }

    #rsp-select ul li.on {
      background: #2196f3;
      color: #fff;
    }

    .auto-selcect {
      margin-top: 10px;
      text-align: center;
    }

    #startGame {
      padding: 15px 30px;
      font-size: 20px;
      border-radius: 5px;
      cursor: pointer;
    }

    #result-text {
      font-size: 28px;
      font-weight: bold;
      text-align: center;
      margin-top: 20px;
    }

    /* 모달 스타일 */
    #result-modal {
      display: none;
      position: fixed;
      top: 15%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border: 2px solid #2196f3;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      z-index: 1000;
    }

    #modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.1);
      z-index: 999;
    }

    #modal-text {
      font-size: 24px;
      font-weight: bold;
      margin-top: 20px;
    }

    #modal-close {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 5px;
    }

    #win-effect {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 2000;
    }

    .star {
      position: absolute;
      width: 20px;
      height: 20px;
      background: radial-gradient(circle, #fff 0%, #ffcc00 60%, transparent 100%);
      border-radius: 50%;
      animation: sparkle 1s ease-out forwards;
      opacity: 0;
    }

    .btn-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
    }

    .btn-wrap button {
      padding: 15px 30px;
      font-size: 18px;
      height: 60px;
      border-radius: 5px;
      cursor: pointer;
    }

    #soundToggle {
      background: #f0f0f0;
      border: 1px solid #ccc;
    }

    #startGame {
      background: #2196f3;
      color: #fff;
      border: none;
    }

    #rsp-select {
      max-width: 400px;
      margin: 20px auto;
      background: #f8fafc;
      border: 2px solid #e2e8f0;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    /* 선택 버튼 */
    #rsp-select ul {
      list-style: none;
      padding: 0;
      margin: 0 0 15px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

    #rsp-select li {
      flex: 1;
      background: linear-gradient(145deg, #ffffff, #edf2f7);
      border: 2px solid #cbd5e1;
      border-radius: 10px;
      padding: 12px 0;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      user-select: none;
    }

    #rsp-select li:hover {
      background: linear-gradient(145deg, #e0f2fe, #bae6fd);
      border-color: #38bdf8;
      transform: scale(1.05);
    }

    /* 자동선택 및 포인트 */
    .auto-selcect {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .auto_select_btn {
      background: linear-gradient(90deg, #60a5fa, #3b82f6);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .auto_select_btn:hover {
      background: linear-gradient(90deg, #2563eb, #1d4ed8);
      transform: scale(1.05);
    }

    .auto-selcect label {
      font-weight: 600;
      color: #334155;
    }

    #bat_p {
      padding: 6px 10px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      font-size: 0.95rem;
    }

    .dt_list_box {
    margin-top: 10px;
    background: #fff;
}

#dt_list {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d1d1d1;
}

.dt_list .line_bottom th {
  border-bottom: 1px solid #e1e1e1 !important;
}

.dt_list th {
  height: 55px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #d1d1d1;
  background: #f5f5f5;
}

.dt_list .line_left {
  font-size: 14px;
  border-left: 1px solid #e1e1e1;
}

.dt_list td:first-child {
  border-left: none;
  position: relative;
}

.dt_list td {
  height: 55px;
  text-align: center;
  border-top: 1px solid #efefef;
  border-left: 1px solid #efefef;
}

.dt_more {
  position: relative;
  text-align: center;
  line-height: 55px;
  background: #f5f5f5;
  margin-top: 10px;
  margin-bottom: 10PX;
  letter-spacing: -1px;
  height: 55px;
  font-size: 13px;
}

.paging a {
  display: inline-block;
  padding: 5px 10px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
}
.paging a:hover {
  background: #f2f2f2;
}
.paging a[style*="font-weight:bold"] {
  background: #2196f3;
  color: #fff;
  border-color: #2196f3;
}

.dt_list td {
    height: 55px;
    text-align: center;
    border-top: 1px solid #efefef;
    border-left: 1px solid #efefef;
    font-size: 12px;
}

    @keyframes sparkle {
      0% {
        transform: scale(0.3);
        opacity: 1;
      }

      50% {
        transform: scale(1);
        opacity: 0.8;
      }

      100% {
        transform: scale(0.2);
        opacity: 0;
        top: -50px;
      }
    }