@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  color: #0d0d0d;
  font-family: "DM Sans", "Archivo", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  color: #267CB9;
  text-decoration: none;
}
a:hover, a:focus {
  color: #069;
  text-decoration: underline;
}

hr {
  border: 0;
  background: #d0d0d0;
  height: 1px;
  margin: 0 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Text", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #0d0d0d;
  margin: 0 0 1rem;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.45rem;
  color: #393939;
}

h3 {
  font-size: 1.2rem;
  color: #494949;
}

h4 {
  font-size: 1.05rem;
  color: #494949;
}

h5 {
  font-size: 0.95rem;
  color: #494949;
}

h6 {
  font-size: 0.85rem;
  color: #494949;
}

h1, h2, h3 {
  line-height: 1.1;
}

h1 a, h2 a {
  color: #0d0d0d;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: #222;
}

em {
  font-style: italic;
}

small {
  font-size: 0.75rem;
}

.content ul,
.content ol,
article ul,
article ol {
  list-style: revert;
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.content ul li,
.content ol li,
article ul li,
article ol li {
  margin-bottom: 0.25rem;
  line-height: 1.7;
}

blockquote {
  border-left: 1px solid #d0d0d0;
  margin: 0 0 1rem;
  padding: 0 0 0 2rem;
  font-style: italic;
  color: #767676;
}

code {
  font-family: Monaco, "Lucida Console", monospace;
  font-size: 0.88rem;
  color: #333333;
  background: #f8f8f8;
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

pre {
  font-family: Monaco, "Lucida Console", monospace;
  font-size: 0.88rem;
  color: #333333;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 8px 15px;
  margin: 0 0 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
}

th, td {
  text-align: left;
  padding: 5px 10px;
  border-bottom: 1px solid #d0d0d0;
}

th {
  color: #444;
  font-weight: 600;
}

dt {
  color: #444;
  font-weight: 700;
}

.notation {
  display: block;
  padding-left: 12px;
  margin-block-end: 1em;
}
.notation .quote {
  float: left;
  font-size: 2.5rem;
  padding-right: 6px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0d0d0d;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 56px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-nav__brand:hover {
  text-decoration: none;
}

.site-nav__name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.site-nav__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

.site-nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  text-decoration: none;
}
.site-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: opacity 0.2s ease;
}
.site-nav__toggle:hover span {
  opacity: 0.7;
}

.site-footer {
  background: #0d0d0d;
  color: #ccc;
  margin-top: 2rem;
  padding: 3.5rem 0 2.5rem;
}
.site-footer a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  align-items: start;
}
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  font-family: "DM Sans", "Archivo", Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-about .footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-about p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #999;
  margin: 0;
}

.footer-social h4 {
  text-align: center;
}
.footer-social .social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.footer-social .social-icons a {
  color: #888;
  font-size: 1.4rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social .social-icons a:hover {
  color: #ffffff;
  transform: scale(1.15);
}

.footer-links h4 {
  text-align: right;
}
@media (max-width: 640px) {
  .footer-links h4 {
    text-align: left;
  }
}
.footer-links ul {
  text-align: right;
  list-style: none;
  padding: 0;
}
@media (max-width: 640px) {
  .footer-links ul {
    text-align: left;
  }
}
.footer-links ul li {
  margin-bottom: 0.45rem;
}
.footer-links ul li a,
.footer-links ul li span {
  font-size: 0.82rem;
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links ul li a:hover,
.footer-links ul li span:hover {
  color: #ffffff;
}
.footer-links ul li.copy {
  color: #555;
  font-size: 0.75rem;
  margin-top: 0.9rem;
}

.footer-bottom {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #444;
}

body {
  padding-top: calc(56px + 1rem);
}

.page-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
}

.content {
  width: 100%;
}
.content img {
  max-width: 100%;
  height: auto;
  margin: 0 0 1rem;
}
.content .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 0 0 1rem;
}
.content .video-container .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.content .notation {
  display: block;
  padding-left: 12px;
  margin-block-end: 1em;
  border-left: 2px solid #d0d0d0;
}
.content .notation .quote {
  float: left;
  font-size: 2.5rem;
  padding-right: 6px;
  line-height: 1;
}

.section-label {
  text-align: center;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 2rem;
  font-family: "DM Sans", "Archivo", Helvetica, Arial, sans-serif;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header img {
  display: block;
  max-width: 100%;
  margin: 0 auto 1rem;
}
.page-header p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #767676;
}
.page-header strong {
  color: #0d0d0d;
}

@media (max-width: 640px) {
  .page-wrapper {
    padding: 2rem 2rem;
  }
}
@media (max-width: 480px) {
  body {
    padding-top: calc(56px + 2rem);
  }
}
.wh-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
}

.wh-game-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wh-image-frame {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f2f2f2;
}
.wh-image-frame a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.wh-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}
.wh-game-card:hover .wh-zoom-img {
  transform: scale(1.1);
}

.wh-details-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
  flex-grow: 1;
}

.wh-info-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.wh-game-title {
  margin: 0;
  font-family: "DM Sans", "Archivo", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0d0d0d;
}

.wh-seating-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wh-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wh-dot-filled {
  background-color: #0d0d0d;
  color: #ffffff;
  font-size: 0.85rem;
}

.wh-dot-empty {
  background-color: transparent;
  border: 2px dashed #0d0d0d;
}

.wh-status-pill {
  background: #0d0d0d;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.wh-action-group {
  text-align: right;
  flex-shrink: 0;
}

.wh-sync-time {
  display: block;
  font-size: 0.7rem;
  color: #767676;
  margin-bottom: 2px;
}

.wh-check-btn {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d0d0d;
  text-decoration: none;
  border-bottom: 2px solid #0d0d0d;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.wh-check-btn:hover {
  opacity: 0.6;
  text-decoration: none;
}

@media (max-width: 480px) {
  .wh-details-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .wh-action-group {
    text-align: left;
    width: 100%;
    margin-top: 10px;
  }
  .wh-image-frame {
    height: 220px;
  }
}
.resources {
  max-width: 860px;
  margin: 0 auto;
}
.resources .section {
  margin-bottom: 3rem;
}
.resources h2 {
  text-align: center;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 0.75rem;
}
.resources .group-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d0d0d0;
  padding: 0.75rem 0 0.25rem;
}
.resources a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  color: #333333;
  transition: color 0.2s ease;
}
.resources a:last-child {
  border-bottom: none;
}
.resources a::after {
  content: "↗";
  font-size: 0.75rem;
  color: #d0d0d0;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: color 0.2s ease;
}
.resources a:hover {
  color: #0d0d0d;
  background: rgba(38, 124, 185, 0.08);
}
.resources a:hover::after {
  color: #767676;
}
.resources a span.badge {
  margin-left: auto;
  margin-right: 0.5rem;
}
.resources .badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e1f5ee;
  color: #0f6e56;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.highlight table td {
  padding: 5px;
}

.highlight table pre {
  margin: 0;
}

.highlight .cm {
  color: #999988;
  font-style: italic;
}

.highlight .cp {
  color: #999999;
  font-weight: bold;
}

.highlight .c1 {
  color: #999988;
  font-style: italic;
}

.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}

.highlight .c, .highlight .cd {
  color: #999988;
  font-style: italic;
}

.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}

.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}

.highlight .ge {
  color: #000000;
  font-style: italic;
}

.highlight .gr {
  color: #aa0000;
}

.highlight .gh {
  color: #999999;
}

.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}

.highlight .go {
  color: #888888;
}

.highlight .gp {
  color: #555555;
}

.highlight .gs {
  font-weight: bold;
}

.highlight .gu {
  color: #aaaaaa;
}

.highlight .gt {
  color: #aa0000;
}

.highlight .kc {
  color: #000000;
  font-weight: bold;
}

.highlight .kd {
  color: #000000;
  font-weight: bold;
}

.highlight .kn {
  color: #000000;
  font-weight: bold;
}

.highlight .kp {
  color: #000000;
  font-weight: bold;
}

.highlight .kr {
  color: #000000;
  font-weight: bold;
}

.highlight .kt {
  color: #445588;
  font-weight: bold;
}

.highlight .k, .highlight .kv {
  color: #000000;
  font-weight: bold;
}

.highlight .mf {
  color: #009999;
}

.highlight .mh {
  color: #009999;
}

.highlight .il {
  color: #009999;
}

.highlight .mi {
  color: #009999;
}

.highlight .mo {
  color: #009999;
}

.highlight .m, .highlight .mb, .highlight .mx {
  color: #009999;
}

.highlight .sb {
  color: #d14;
}

.highlight .sc {
  color: #d14;
}

.highlight .sd {
  color: #d14;
}

.highlight .s2 {
  color: #d14;
}

.highlight .se {
  color: #d14;
}

.highlight .sh {
  color: #d14;
}

.highlight .si {
  color: #d14;
}

.highlight .sx {
  color: #d14;
}

.highlight .sr {
  color: #009926;
}

.highlight .s1 {
  color: #d14;
}

.highlight .ss {
  color: #990073;
}

.highlight .s {
  color: #d14;
}

.highlight .na {
  color: #008080;
}

.highlight .bp {
  color: #999999;
}

.highlight .nb {
  color: #0086B3;
}

.highlight .nc {
  color: #445588;
  font-weight: bold;
}

.highlight .no {
  color: #008080;
}

.highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}

.highlight .ni {
  color: #800080;
}

.highlight .ne {
  color: #990000;
  font-weight: bold;
}

.highlight .nf {
  color: #990000;
  font-weight: bold;
}

.highlight .nl {
  color: #990000;
  font-weight: bold;
}

.highlight .nn {
  color: #555555;
}

.highlight .nt {
  color: #000080;
}

.highlight .vc {
  color: #008080;
}

.highlight .vg {
  color: #008080;
}

.highlight .vi {
  color: #008080;
}

.highlight .nv {
  color: #008080;
}

.highlight .ow {
  color: #000000;
  font-weight: bold;
}

.highlight .o {
  color: #000000;
  font-weight: bold;
}

.highlight .w {
  color: #bbbbbb;
}

.highlight {
  background-color: #f8f8f8;
}

/*# sourceMappingURL=main.css.map */