@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");

/* Generated by pipeline/step4 — do not copy from source site */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: #151c25;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #22c55e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo img {
  width: auto;
  max-width: min(220px, 55vw);
  max-height: 48px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.site-nav a:not(.btn) {
  color: #ffffff;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

a.btn-primary,
.btn-primary {
  background: #22c55e;
  color: #111111;
}

a.btn-primary:hover,
.btn-primary:hover {
  filter: brightness(1.08);
  text-decoration: none;
  color: #111111;
}

.site-main {
  padding: 2rem 0 3rem;
}

.content-body h1,
.content-body h2,
.content-body h3 {
  line-height: 1.25;
  margin: 1.5rem 0 0.75rem;
}

.content-body h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.content-body h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.35rem;
}

.content-body p {
  margin: 0 0 1rem;
}

.content-body ul,
.content-body ol {
  margin: 0 0 1rem 1.25rem;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.content-body th,
.content-body td {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.content-body th {
  background: rgba(255, 255, 255, 0.06);
}

.cta-inline {
  margin: 1.75rem 0;
  text-align: center;
}

.cta-inline .btn {
  min-width: min(100%, 220px);
}

.game-grid-section {
  margin: 0 0 2rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.game-grid-item {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.15s ease;
}

.game-grid-item:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.game-grid-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: #ffffff;
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.75;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
  }

  .mobile-cta-bar .btn {
    width: 100%;
  }

  .site-nav .btn-primary {
    display: none;
  }
  body {
    padding-bottom: calc(44px + 1.5rem);
  }
}

@media (min-width: 768px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-body table {
    display: table;
  }
}

@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
