*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

a {
  color: #d4a037;
  text-decoration: none;
}

a:hover {
  color: #f0c15a;
}

.banex-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.banex-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.banex-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.banex-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.banex-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  font-weight: 500;
}

.banex-main {
  min-height: 60vh;
}

.banex-hero {
  padding: 72px 0 56px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(212, 160, 55, 0.12), transparent 55%),
    #0b0b0b;
}

.banex-hero--compact {
  padding: 56px 0 48px;
}

.banex-hero__logo {
  margin-bottom: 20px;
}

.banex-hero__tagline {
  color: #d4a037;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin: 0 0 12px;
}

.banex-hero__title {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 600;
}

.banex-hero__desc {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.banex-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.banex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.banex-btn--primary {
  background: #d4a037;
  color: #111;
}

.banex-btn--primary:hover {
  background: #f0c15a;
  color: #111;
}

.banex-btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.banex-btn--ghost:hover {
  border-color: #d4a037;
  color: #d4a037;
}

.banex-recent {
  padding: 24px 0 72px;
}

.banex-section-title {
  text-align: center;
  color: #fff;
  margin: 0 0 8px;
  font-size: 24px;
}

.banex-section-sub {
  text-align: center;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.55);
}

.banex-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.banex-post-list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.banex-post-list__item a {
  font-weight: 600;
}

.banex-post-list__item time {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.banex-footer__links {
  margin-top: 10px;
}

.banex-footer__links a {
  margin: 0 6px;
}

.banex-recent__more {
  text-align: center;
  margin-top: 28px;
}

.banex-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 640px) {
  .banex-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .banex-nav {
    gap: 12px;
  }
}
