
body {
  font-family: Arial, sans-serif;
  padding: 30px;
  width: 350px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;

  /* === BACKGROUND IMAGE BARU === */
  background-image: url("https://i.gyazo.com/f80868f3a9fabf88206d0941733c7747.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: white;
}

h1 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;

  /* GRADIENT HITAM â†’ MERAH */
  background: linear-gradient(180deg, #ff0000 100%, #b00000 100%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ff0000;
  background-clip: text;
  color: #ff0000;
}

.card {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 10px;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.card-text {
  z-index: 1;
  width: 100%;
  text-align: center;
}

button {
    padding: 8px 12px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: black;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 6px -1px white;
}

.btn-link {
  display: inline-block;
  padding: 8px 12px;
  min-width: 100px; /* Lebarkan tombol minimum */
  text-align: center;
  border: none;
  border-radius: 5px;
  background: #ffed00;
  color: #000000;
  font-weight: bold;
  box-shadow: 0 2px 6px -1px white;
  text-decoration: none;
}

button:hover {
  background: black;
}

header {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 200px; /* Batasi ukuran maksimum logo */
  height: auto;    /* Menjaga aspek rasio */
}

h3 {
  display: block;
  font-size: 1.17em;
  margin: 10px 0;
  font-weight: bold;
  text-align: center;

  /* GRADIENT HITAM â†’ MERAH */
  background: linear-gradient(180deg, #ff0000 100%, #ff0000 100%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ff0000;
  background-clip: text;
  color: #ff0000;

  /* ANIMASI KEDIP */
  animation: blinkGlow 1.4s infinite ease-in-out;
}

/* KEDIP HALUS + GLOW */
@keyframes blinkGlow {
  0% {
    opacity: 1;
    text-shadow: 0 0 4px rgb(255, 255, 255);
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 10px rgb(255, 255, 255);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 4px rgb(255, 255, 255);
  }
}

.player-card {
  background-color: blue;
}

.tie-card {
  background-color: #28a745;
}

.banker-card {
  background-color: red;
}

.label {
  font-size: 16px;
}

.odds {
  font-size: 14px;
}

.actions {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.btns {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.history-container {
  text-align: center;
  margin-top: 10px;
}

.history {
  background-color: black;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 5px;
  white-space: nowrap;
  border-radius: 8px;
  height: 40px;
  box-shadow: 0 2px 6px -1px white;
}

.circle {
  min-width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.player {
  background-color: blue;
}

.banker {
  background-color: red;
}

.tie {
  background-color: green;
}

.columns-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 5px;
}
header img.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Kontainer tombol */
.btns {
  margin: 20px 0;
}

/* Tombol login */
.btn-link {
  background-color: #ff0000;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}

/* Grid game icon */
.grid-6cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin: 20px;
  padding: 0 10px;
}

/* Tombol Next/Reset */
.actions {
  margin: 20px 0;
}

.actions button {
  padding: 10px 15px;
  margin: 5px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  background-color: #ff0000;
  color: #fff;
  cursor: pointer;
}

/* Kotak history */
.history-container {
  margin: 20px 10px;
}

.history {
  border: 1px solid #ffffff;
  min-height: 60px;
  border-radius: 10px;
  padding: 10px;
}
.container {
  width: 100%;
  max-width: 400px;
  padding: 20px 15px;
  box-sizing: border-box;
  text-align: center;
}

.logo {
  max-width: 200px;
  margin: 0 auto 20px;
  display: block;
}

.btns {
  margin-bottom: 20px;
}

.btn-link {
  background-color: #ff0000;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
}

h1 {
  font-size: 20px;
  margin-bottom: 15px;
}

.grid-6cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.grid-6cols button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.grid-6cols img {
  width: 100%;
  border-radius: 8px;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.actions button {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  background-color: #222;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 5px #888;
}

.history-container {
  margin-top: 20px;
}

.history {
  border: 1px solid #ff0000;
  min-height: 60px;
  border-radius: 10px;
  padding: 10px;
}

.bc-guide-box {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 18px 16px;
  margin: 20px auto;
  max-width: 680px;
  color: #ffffff;
}

.bc-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ff5252;
}

.bc-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: center;
}

.bc-subtitle {
  font-size: 15px;
  margin: 14px 0 8px;
  color: #ffd200;
}

.bc-list {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ===== TABLE ===== */
.bc-table-wrapper {
  overflow-x: auto;
}

.bc-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0,0,0,0.55);
  border-radius: 10px;
  font-size: 13px;
}

.bc-table th,
.bc-table td {
  padding: 9px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.bc-table th {
  background: linear-gradient(135deg, #ff2a2a, #ff9800);
  color: #000;
  font-weight: bold;
}

.bc-highlight {
  background: rgba(0,255,150,0.25);
  font-weight: bold;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .bc-guide-box {
    padding: 14px 12px;
  }

  .bc-title {
    font-size: 16px;
  }

  .bc-desc,
  .bc-list,
  .bc-table {
    font-size: 12px;
  }
}
