body {
    margin: 0;
    font-family: 'Prompt', sans-serif;
    background-image: url('img/new/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    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(0, 102, 255, 0.2);
    border-radius: 24px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(0, 102, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .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, #6BB6FF 0%, #5AA3F0 25%, #4A90E2 50%, #3A7DD0 75%, #2E6AB8 100%);
    border: none;
    border-radius: 20px;
    margin: 16px auto;
    padding: 10px 0;
    width: 100%;
    max-width: 350px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(0, 212, 255, 0.6),
                0 0 40px rgba(0, 191, 255, 0.4),
                0 0 60px rgba(74, 144, 226, 0.3);
    font-size: 1.2em;
    letter-spacing: 1px;
    position: relative;
    animation: highlight-glow-blue 2s ease-in-out infinite alternate;
  }
  @keyframes highlight-glow-blue {
    0% {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                  0 0 20px rgba(0, 212, 255, 0.6),
                  0 0 40px rgba(0, 191, 255, 0.4),
                  0 0 60px rgba(107, 182, 255, 0.3);
    }
    100% {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                  0 0 30px rgba(0, 212, 255, 0.9),
                  0 0 60px rgba(0, 191, 255, 0.7),
                  0 0 90px rgba(107, 182, 255, 0.5);
    }
  }
  .highlight-bar .online-number {
    display: inline-block;
    font-size: 1.25em;
    color: #00E5FF;
    font-weight: bold;
  }
  .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;
    text-decoration: none;
  }
  @keyframes btn-pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7), 0 2px 8px rgba(220, 53, 69, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7), 0 2px 8px rgba(220, 53, 69, 0.4); }
  }
  @keyframes btn-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7), 0 2px 8px rgba(40, 167, 69, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7), 0 2px 8px rgba(40, 167, 69, 0.4); }
  }
  .btn-main {
    background: linear-gradient(135deg, #DC3545 0%, #C82333 100%);
    color: #ffffff;
    border: 2px solid #DC3545;
    animation: btn-pulse-red 2s infinite;
  }
  .btn-main:hover {
    background: linear-gradient(135deg, #C82333 0%, #DC3545 100%);
    color: #ffffff;
    transform: scale(1.03);
    animation: btn-hover 0.4s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.8);
  }
  @keyframes btn-hover {
    0% { transform: scale(1); }
    60% { transform: scale(1.08); }
    100% { transform: scale(1.03); }
  }
  .btn-contact {
    background: linear-gradient(135deg, #28A745 0%, #218838 100%);
    color: #ffffff;
    border: 2px solid #28A745;
    animation: btn-pulse-green 2s infinite;
  }
  .btn-contact:hover {
    background: linear-gradient(135deg, #218838 0%, #28A745 100%);
    color: #ffffff;
    transform: scale(1.03);
    animation: btn-hover 0.4s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.8);
  }
  .withdraw-list {
    background: linear-gradient(135deg, #1a1a1a 60%, #0d0d0d 100%);
    border-radius: 16px;
    margin: 0;
    width: 98%;
    max-width: 100%;
    padding: 16px 0 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    border: 2px solid #0066FF;
    position: relative;
  }
  .withdraw-list h3 {
    margin: 0 0 18px 0;
    background: linear-gradient(90deg, #0066FF 0%, #0040CC 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, #2d2d2d 60%, #1a1a1a 100%);
    border-radius: 12px;
    margin: 0 12px 12px 12px;
    padding: 14px 18px;
    border: 1.5px solid #0066FF;
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 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(0, 102, 255, 0.4);
    border-color: #0066FF;
  }
  .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: #cccccc;
  }
  .withdraw-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 100px;
    justify-content: flex-end;
  }
  .withdraw-amount {
    color: #0066FF;
    font-weight: bold;
    font-size: 1.18em;
    text-shadow: 1px 1px 6px rgba(0, 102, 255, 0.5);
  }
  .withdraw-status {
    color: #0066FF;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .status-icon {
    color: #0066FF;
    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: #0066FF;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 102, 255, 0.5);
  }
  .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: #ffffff;
    background: linear-gradient(135deg, #0066FF 0%, #0040CC 100%);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 1.1em;
    font-weight: bold;
    border: 1px solid #0066FF;
  }
  .partners {
    text-align: center;
    margin: 32px 0 12px 0;
  }
  .partners .title {
    font-size: 1.2em;
    color: #0066FF;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
  }
  .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: #cccccc;
    font-size: 0.95em;
    margin: 32px 0 12px 0;
  }
  .footer a {
    color: #cccccc;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.2s;
  }
  .footer a:hover {
    color: #0066FF;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
  }

  @media (max-width: 600px) {
    .container {
      max-width: 100vw;
      padding: 12px 2vw 0 2vw;
      border-radius: 0;
      margin: 0 !important;
      padding: 0 !important;
    }
    .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;
    }
  }
