body {
    margin: 0;
    font-family: 'Prompt', sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #4a0000 50%, #2d1810 100%);
    color: #fff;
    min-height: 100vh;
  }
  .container {
    max-width: 700px;
    width: 100%;
    margin: auto;
    padding: 24px 8px 0 8px;
    box-shadow: 0 8px 32px 0 rgba(200, 0, 0, 0.4);
    border-radius: 24px;
    background: rgba(30, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner { text-align: center; margin-top: 24px; }
  .banner img {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    box-shadow: 0 4px 24px #0005;
  }
  .highlight-bar {
    background: linear-gradient(90deg, #8B0000 0%, #DC143C 50%, #B22222 100%);
    border-radius: 20px;
    margin: 16px auto;
    padding: 10px 0;
    width: 100%;
    max-width: 350px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 16px #DC143C88, 0 0 8px #FFD700;
    font-size: 1.2em;
    letter-spacing: 1px;
    position: relative;
    animation: highlight-glow 2s infinite alternate;
  }
  @keyframes highlight-glow {
    0% { box-shadow: 0 2px 16px #DC143C88, 0 0 8px #FFD700; }
    100% { box-shadow: 0 4px 32px #FF6347AA, 0 0 16px #FFD700; }
  }
  .highlight-bar .online-number {
    display: inline-block;
    animation: online-pulse 1.2s infinite alternate;
    font-size: 1.25em;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 8px #FFD700, 0 0 2px #FFF;
  }
  @keyframes online-pulse {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
  }
  .btn-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 12px auto 12px auto;
    width: 100%;
    max-width: 400px;
  }
  .btn-row .btn-main, .btn-row .btn-contact {
    flex: 1 1 0;
    margin: 0;
    max-width: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-main, .btn-contact {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 12px auto;
    padding: 16px 0;
    border: none;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px #0004;
    font-family: 'Prompt', sans-serif;
    animation: btn-pulse 2s infinite;
    text-decoration: none;
  }
  @keyframes btn-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.8), 0 2px 8px rgba(139, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(220, 20, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.8), 0 2px 8px rgba(139, 0, 0, 0.4); }
  }
  .btn-main {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #B22222 100%);
    color: #ffffff;
    border: 2px solid #FFD700;
  }
  .btn-main:hover {
    background: linear-gradient(135deg, #DC143C 0%, #FF6347 50%, #FFD700 100%);
    color: #000;
    transform: scale(1.03);
    animation: btn-hover 0.4s;
    text-decoration: none;
    border: 2px solid #8B0000;
  }
  @keyframes btn-hover {
    0% { transform: scale(1); }
    60% { transform: scale(1.08); }
    100% { transform: scale(1.03); }
  }
  .btn-contact {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%);
    color: #000;
    border: 2px solid #8B0000;
  }
  .btn-contact:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #8B0000;
    transform: scale(1.03);
    animation: btn-hover 0.4s;
    text-decoration: none;
    border: 2px solid #DC143C;
  }
  .withdraw-list {
    background: linear-gradient(135deg, #2d0a0a 60%, #4a1a1a 100%);
    border-radius: 16px;
    margin: 0;
    width: 98%;
    max-width: 100%;
    padding: 16px 0 10px 0;
    box-shadow: 0 4px 24px rgba(139, 0, 0, 0.5);
    overflow: hidden;
    border: 2px solid #FFD700;
    position: relative;
  }
  .withdraw-list h3 {
    margin: 0 0 18px 0;
    background: linear-gradient(90deg, #FFD700 0%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.35em;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: left;
    padding-left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .withdraw-list h3::before {
    content: '💸';
    font-size: 1.2em;
    margin-right: 4px;
  }
  #withdraw-items {
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: height 0.3s;
    height: calc(68px * 5.5); /* 4 คือ SHOW_COUNT, 68px คือความสูงแต่ละรายการโดยประมาณ */
    min-height: 0;
  }
  .withdraw-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #4a1a1a 60%, #661a1a 100%);
    border-radius: 12px;
    margin: 0 12px 12px 12px;
    padding: 14px 18px;
    border: 1.5px solid #FFD700;
    color: #fff;
    box-shadow: 0 2px 12px rgba(139, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
  }
  .withdraw-item:hover {
    transform: scale(1.025);
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.4);
    border-color: #DC143C;
  }
  .withdraw-item::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    /* background: linear-gradient(180deg, #FFC300 0%, #00BFFF 100%); */
    border-radius: 8px 0 0 8px;
  }
  .withdraw-info {
    display: flex;
    align-items: center;
  }
  .bank-icon {
    width: 44px;
    height: 44px;
    margin-right: 14px;
    border-radius: 10px;
    background: #fff;
    padding: 3px;
    box-shadow: 0 2px 8px #0002;
    z-index: 1;
  }
  .withdraw-name {
    font-weight: bold;
    font-size: 1.08em;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }
  .withdraw-meta {
    font-size: 0.92em;
    color: #B0C4DE;
  }
  .withdraw-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 100px;
    justify-content: flex-end;
  }
  .withdraw-amount {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.18em;
    text-shadow: 1px 1px 6px rgba(139, 0, 0, 0.8);
  }
  .withdraw-status {
    color: #00FF99;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .status-icon {
    color: #00FF99;
    font-size: 1.1em;
    animation: pulse 1.2s infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1;}
    50% { transform: scale(1.2); opacity: 0.7;}
    100% { transform: scale(1); opacity: 1;}
  }
  .withdraw-item.slide-up {
    transform: translateY(-50px);
    opacity: 0;
  }
  .withdraw-item:last-child { border-bottom: none; }
  .big-win {
    text-align: center;
    margin: 32px 0 12px 0;
    font-size: 2em;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(139, 0, 0, 0.8);
  }
  .guarantee { text-align: center; color: #fff; margin-bottom: 12px; }
  .receipts { text-align: center; margin-bottom: 24px; }
  .receipts img { width: 60px; margin: 0 4px; border-radius: 8px; }
  .one-user-section {
    text-align: center;
    margin: 32px 0 12px 0;
  }
  .one-user-section img {
    width: 98%;
    max-width: 700px;
    border-radius: 16px;
    box-shadow: 0 4px 24px #0005;
  }
  .one-user-section .desc {
    font-size: 1.3em;
    color: #fff;
    font-weight: bold;
    margin: 8px 0;
  }
  .one-user-section .subdesc {
    color: #fff;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 1.1em;
    border: 1px solid #FFD700;
  }
  .partners {
    text-align: center;
    margin: 32px 0 12px 0;
  }
  .partners .title {
    font-size: 1.2em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(139, 0, 0, 0.6);
  }
  .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
  }
  .partners-logos img {
    width: 100%;
    border-radius: 6px;
    padding: 2px 6px;
  }
  .footer {
    text-align: center;
    color: #B0C4DE;
    font-size: 0.95em;
    margin: 32px 0 12px 0;
  }
  .footer a {
    color: #B0C4DE;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.2s;
  }
  .footer a:hover {
    color: #FFC300;
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .container {
      max-width: 100vw;
      padding: 12px 2vw 0 2vw;
      border-radius: 0;
    }
    .banner img, .highlight-bar, .btn-main, .btn-contact, .withdraw-list {
      max-width: 100vw;
    }
    .withdraw-list {
      padding: 12px 4px 4px 4px;
      max-width: 100vw;
    }
    .withdraw-item {
      padding: 10px 6px;
      font-size: 0.97em;
    }
    .bank-icon {
      width: 32px;
      height: 32px;
      margin-right: 7px;
    }
    .big-win {
      font-size: 1.3em;
    }
    .one-user-section img {
      width: 95%;
      max-width: 95vw;
    }
    .partners-logos img {
      height: 100%;
      padding: 1px 3px;
    }
    .withdraw-list h3 { font-size: 1.1em; padding-left: 10px; }
    .withdraw-item { margin: 0 2px 8px 2px; padding: 10px 6px; }
    .withdraw-name { max-width: 90px; }
    .btn-row {
      flex-direction: column;
      gap: 10px;
      max-width: 100vw;
      align-items: center;
    }
    .btn-row .btn-main, .btn-row .btn-contact {
      width: 100%;
      max-width: 350px;
    }
    #withdraw-items {
      height: calc(82px * 4); /* 4 แถวพอดี */
      min-height: 0;
    }
  }