/* Base */
*,
*::before,
*::after { box-sizing: border-box; }
html { font-size: 62.5%; }
body {
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Ubuntu,Arial,'Helvetica Neue',sans-serif;
  background: #212132;
  color: #fff;
  line-height: 1.6;
  font-size: 1.9rem; /* Increased base font size */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout */
.o-container { max-width: 1140px; margin: 0 auto; }
.o-wrapper { padding: 0 16px; }

/* Header */
.c-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(37,37,54,.96);
  backdrop-filter: saturate(120%) blur(4px);
  border-bottom: 1px solid #2c2c44;
}
.c-header__content {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
}
.c-header__logo img { height: 36px; }

.c-header__buttons { display: flex; gap: 12px; }

/* Buttons */
.o-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  box-shadow: 0 4px 0 rgba(0,0,0,.6);
  transition: transform .08s ease, box-shadow .08s ease, opacity .2s ease;
  font-size: 1.5rem;
}
.o-btn:hover { transform: translateY(-1px); }
.o-btn:active { transform: translateY(1px); }

.o-btn_pink { background: #cd1835; box-shadow: 0 3px 0 #871628, 0 4px 4px #000; }
.o-btn_green { background: #62c23c; box-shadow: 0 3px 0 #3c7028, 0 4px 4px #000; }

/* Hero */
.c-hero { position: relative; }
.c-hero__img { width: 100%; object-fit: cover; min-height: 160px; }
.c-hero__caption {
  width: 100%;
  padding: 12px 16px;
  background: #4b2c7f; /* purple strip under banner */
  color: #ffd84a;
  font-weight: 900; text-align: center; letter-spacing: .5px;
}

/* Content */
h1 { font-size: 3rem; margin: 22px 0 10px; }
p { margin: 10px 0; }

.c-ofsite {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  background: #2a2a46; border-radius: 12px; padding: 14px 16px; margin: 14px 0;
}
.c-ofsite__check { margin: 0; font-weight: 600; }
.c-ofsite__date { color:#ffd84a; font-weight: 900; }
.c-ofsite__btn { margin-left: auto; }

/* Table */
.c-table__wrapper { overflow-x: auto; margin: 16px 0 24px; }
table { width: 100%; border-collapse: collapse; background: #161626; border: 1px solid #2d2d43; }
caption { text-align: left; font-weight: 800; padding: 12px 10px; color:#17eada; }
th, td { padding: 12px 10px; vertical-align: top; }
th { width: 280px; color:#9a9ac7; text-align: left; border-right: 1px solid #2d2d43; }
tr + tr td, tr + tr th { border-top: 1px solid #2d2d43; }

/* Footer */
.c-footer { margin-top: 30px; padding: 24px 0; background: #1a1a29; color: #9a9ac7; font-size: 1.4rem; }

/* Responsive */
@media (max-width: 768px) {
  .c-header__logo img { height: 30px; }
  h1 { font-size: 2.6rem; }
  .o-btn { font-size: 1.4rem; padding: 8px 18px; }
  th { width: 220px; }
}
