.bstc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  /* Remove this line to use WordPress default font */
  /* font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; */
}

/* Hero */
.bstc-phero {
  text-align: center;
  padding: 40px 0 20px;
}

.bstc-phero h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a1e2f;
}

.bstc-phero h1 .bstc-highlight {
  color: #c0392b;
}

.bstc-phero p {
  font-size: 16px;
  color: #4a5b6b;
  margin-top: 8px;
  font-weight: 500;
}

.bstc-image-wrap {
  text-align: center;
  margin: 20px 0 10px;
}

.bstc-image-wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 3px solid #c0392b;
}

.bstc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px 16px;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  background: #ffffff;
  transition: 0.18s;
  text-decoration: none;
  color: #0a1e2f;
  text-align: center;
}

.bstc-tile:hover {
  transform: translateY(-4px);
  border-color: #c0392b;
  box-shadow: 0 16px 34px -22px rgba(192, 57, 43, 0.3);
}

.bstc-tile.hot {
  border-color: rgba(192, 57, 43, 0.5);
  background: #fdf0ee;
  animation: bstc-hotpulse 2.4s ease-in-out infinite;
}

.bstc-tile.hot:hover {
  border-color: #c0392b;
}

@keyframes bstc-hotpulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.25); }
  50% { box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.4), 0 0 0 6px rgba(192, 57, 43, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .bstc-tile.hot {
    animation: none;
    box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.3);
  }
}

.bstc-ticon {
  width: 44px;
  height: 44px;
}

.bstc-ticon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: #0a1e2f;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bstc-tile .bstc-ticon svg .bstc-accent {
  stroke: #c0392b;
  fill: #c0392b;
}

.bstc-tlabel {
  font-size: 13px;
  font-weight: 700;
  color: #0a1e2f;
  line-height: 1.2;
}

/* Sections */
.bstc-sec {
  font-size: 22px;
  font-weight: 800;
  color: #c0392b;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 16px;
}

.bstc-sec svg {
  width: 24px;
  height: 24px;
  stroke: #c0392b;
  fill: none;
  stroke-width: 2;
  flex: none;
}

.bstc-tblwrap {
  overflow-x: auto;
}

.bstc-tbl {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.bstc-tbl thead {
  background: #0a1e2f;
  color: #ffffff;
}

.bstc-tbl th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

.bstc-tbl td {
  padding: 13px 18px;
  border-bottom: 1px solid #e8edf2;
  font-size: 14.5px;
}

.bstc-tbl tbody tr:last-child td {
  border-bottom: none;
}

.bstc-tbl tbody tr:hover {
  background: #f8fafc;
}

.bstc-tbl a {
  color: #c0392b;
  text-decoration: none;
}

.bstc-tbl a:hover {
  text-decoration: underline;
}

.bstc-coming {
  color: #c0392b;
  font-weight: 700;
  background: #fdf0ee;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
}

@media (max-width: 560px) {
  .bstc-phero h1 {
    font-size: 28px;
  }
  .bstc-tbl th,
  .bstc-tbl td {
    padding: 10px 14px;
    font-size: 13px;
  }
}