:root {
  --navy: #002b59;
  --deep: #003b75;
  --blue: #07569f;
  --panel: #064b8e;
  --orange: #ff7800;
  --orange-hover: #ff9000;
  --cyan: #42b8ff;
  --white: #ffffff;
  --text: #dbeeff;
  --muted: #8fb9db;
  --line: rgba(106, 190, 255, 0.24);
  --radius: 12px;
  --shadow: 0 12px 28px rgba(0, 16, 42, 0.28);
  --font-main: Arial, Helvetica, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(180deg, #003a73 0%, #004987 24%, #003568 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}
/* Top Bar */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 42, 86, 0.97);
  box-shadow: 0 4px 18px #00152f;
  border-bottom: 1px solid var(--line);
}
.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--white);
}
.logo i {
  font-style: normal;
  color: var(--orange);
}
.actions {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(#ff9000, #ff6500);
  box-shadow:
    0 4px 0 #bd4c00,
    0 0 16px rgba(255, 124, 0, 0.43);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  background: linear-gradient(#ffa01a, #ff7300);
  transform: translateY(-1px);
}
.btn.secondary {
  background: linear-gradient(#0a67b9, #075099);
  box-shadow: 0 3px 0 #003e78;
}
.btn.secondary:hover {
  background: linear-gradient(#0c72cc, #085aa9);
}
/* Centered Headings - No bars or symbols */
.general-h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 15px 0;
  text-align: center;
}
.general-h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 15px 0;
  text-align: center;
}
.general-h2::before,
.general-h2::after,
.general-h3::before,
.general-h3::after {
  display: none !important;
  content: none !important;
}
.general-h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin: 10px 0;
  text-align: center;
}
.general-p {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}
/* Hero Section - Intro and Full Width Banner */
.hero {
  padding: 24px 0 10px;
}
.heroIntro {
  margin-bottom: 20px;
  text-align: left;
}
.heroIntro .general-h1 {
  margin-bottom: 14px;
  text-align: left;
}
.heroIntro .general-p {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 16px;
}
.heroMainFull {
  width: 100%;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  padding: 32px;
  background:
    radial-gradient(
      circle at 85% 45%,
      rgba(33, 164, 255, 0.45),
      transparent 45%
    ),
    linear-gradient(135deg, #062654, #0755a8 65%, #07346d);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.heroBannerTitle {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.heroBannerSub {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 650px;
}
/* Category Quick Links */
.quick {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 12px 0 8px;
}
.quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 5px;
  border-radius: 9px;
  background: linear-gradient(#0b63b3, #075297);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition: background 0.2s ease;
}
.quick a:hover {
  background: linear-gradient(#0c6fc9, #085dab);
}
.quick b {
  font-size: 20px;
  color: #63c8ff;
}
/* Internal navigation */
.toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 4px;
}
.toc a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 43, 89, 0.72);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.toc a:hover,
.toc a:focus-visible {
  background: #075da9;
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
} /* Search Bar */
.searchbar {
  display: flex;
  gap: 8px;
  margin: 5px 0 16px;
}
.search {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  background: #0a5aa6;
  color: #baddf5;
  font-size: 14px;
  border: 1px solid var(--line);
}
.filter {
  padding: 12px 18px;
  background: #075099;
  border: 1px solid #1976c5;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}
/* Section Layouts */
.section {
  padding: 18px 0;
      width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
}
.section.alt {
  background: rgba(0, 43, 89, 0.4);
  border-block: 1px solid var(--line);
}
.titleRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 16px;
}
/* Top Games Cards */
.gameRail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gameCard {
  background: linear-gradient(150deg, #07569f, #043c78);
  border: 1px solid rgba(90, 185, 255, 0.25);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  text-align: center;
  min-height: 180px;
}
.gameCard strong {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
  display: block;
}
.gameCard small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.gameCard .stat-line {
  font-size: 12px;
  color: #aadaff;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.gameCard .btn {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  width: 100%;
}
/* Content Card Blocks */
.card {
  background: linear-gradient(145deg, #07569f, #043c78);
  border: 1px solid rgba(90, 185, 255, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.card ul,
.card ol {
  color: var(--text);
  margin: 12px 0;
  padding-left: 20px;
}
.card li {
  margin: 6px 0;
}
/* Tables */
.tableWrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #1979c7;
  background: #043c78;
  margin: 14px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(110, 192, 255, 0.16);
  font-size: 14px;
}
th {
  background: #0960aa;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 800;
}
td {
  color: #e0f2ff;
}
tbody tr:hover {
  background: #07549a;
}
.specTable td:first-child {
  font-weight: 700;
  color: var(--white);
  width: 40%;
  background: rgba(0, 0, 0, 0.15);
}
/* Centered CTA Wrapper */
.cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 16px 0;
  text-align: center;
}
/* Grid lists */
.gridList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.gridList li {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
}
/* FAQ Details */
.faqStack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.faqCard {
  background: #064987;
  border: 1px solid rgba(90, 185, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
}
.faqCard .general-h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
.faqCard .general-p {
  margin-bottom: 0;
  color: var(--text);
}
/* Footer */
footer {
  padding: 25px 0;
  background: #00294f;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.legal strong {
  color: var(--white);
}
/* Responsive Breakpoints */
@media (max-width: 900px) {
  .quick {
    grid-template-columns: repeat(3, 1fr);
  }
  .gameRail {
    grid-template-columns: repeat(3, 1fr);
  }
  .gridList {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .topbar {
    height: 60px;
  }
  .logo {
    font-size: 22px;
  }
  .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
  }
  .heroMainFull {
    padding: 20px 14px;
    min-height: 180px;
  }
  .heroBannerTitle {
    font-size: 28px;
  }
  .heroBannerSub {
    font-size: 14px;
  }
  .quick {
    grid-template-columns: repeat(3, 1fr);
  }
  .gameRail {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
