.banner-table-wrapper {
    max-width: 1000px;
    margin: 30px auto;
    border: 2px solid #ff0000;
    border-radius: 4px;
    overflow: hidden;
    background: #250000;
  }
  
  /* tulisan atas tabel */
  .banner-title {
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    padding: 12px;
    background: linear-gradient(90deg, #ca0000, #c29b00);
    text-shadow: 2px 2px #000;
    color: #ffffff;
  }
  
  /* efek kedap kedip */
  .blink-text {
    animation: blink 2.2s infinite;
  }
  
  @keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
  }
  
  .banner-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .banner-table td {
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.15);
  }
  
  .banner-table img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  
  .banner-table img:hover {
    transform: scale(1.05);
  }
  .hk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  
  .hk-table th,
  .hk-table td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: center;
    background-color: #fff;
  }
  
  .hk-table thead th {
    background: #00ff88;
    color: #fff;
  }
  
  .hk-table tbody tr:nth-child(even) {
    background: #f7f7f7;
  }
  .bank-wrapper {
    background: #a10000;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
    margin: auto;
  }
  
  .bank-title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  
  .bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    align-items: center;
  }
  
  .bank-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .bank-item img {
    max-height: 32px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.1);
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background: #00ff6a;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,255,106,0.8);
  }
  