/* ==========================================================================
   Casino landing page template — clean, semantic CSS
   Swap the CSS variables below to re-skin the whole template.
   ========================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-greek-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-greek-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-greek-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-greek-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-greek-800.woff2") format("woff2");
}

:root {
  /* ---- brand palette: edit these to re-skin the template ---- */
  --bg: #060b1f;
  --surface: #10173a;
  --surface-2: #171f4a;
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --accent: #ff7a1a;
  --accent-hover: #ff8f3d;

  --radius: 10px;
  --radius-lg: 16px;
  --container: 1230px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 19px;
}

p {
  margin: 0 0 16px;
}

.gcc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.gcc-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}

.gcc-skip-link:focus {
  left: 0;
}

/* ---- buttons ---- */
.gcc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gcc-btn-solid {
  background: var(--accent);
  color: #fff;
}

.gcc-btn-solid:hover {
  background: var(--accent-hover);
}

.gcc-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.gcc-btn-outline:hover {
  border-color: var(--text);
}

.gcc-btn-lg {
  height: 56px;
  padding: 0 32px;
  font-size: 17px;
}

/* ---- header ---- */
.gcc-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.gcc-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.gcc-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.gcc-logo img {
  width: 150px;
  margin-bottom: 0;
}

.gcc-main-nav {
  flex: 1;
}

.gcc-main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.gcc-main-nav a {
  font-size: 15px;
  font-weight: 500;
}

.gcc-main-nav a:hover {
  color: var(--accent);
}

.gcc-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gcc-header-actions .gcc-btn {
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.gcc-nav-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.gcc-nav-toggle span,
.gcc-nav-toggle span::before,
.gcc-nav-toggle span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gcc-nav-toggle span {
  top: 10px;
}

.gcc-nav-toggle span::before {
  content: "";
  top: -8px;
}

.gcc-nav-toggle span::after {
  content: "";
  top: 8px;
}

.gcc-nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.gcc-nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(8px) rotate(45deg);
}

.gcc-nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- hero ---- */
.gcc-hero {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.gcc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gcc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 31, 0.55) 0%, rgba(6, 11, 31, 0.85) 100%);
}

.gcc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 0;
}

.gcc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.gcc-hero-eyebrow {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-muted);
}

.gcc-hero-title {
  margin: 0 0 28px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
}

/* ---- category pills ---- */
.gcc-categories {
  border-bottom: 1px solid var(--border);
}

.gcc-categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
}

.gcc-category-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.gcc-category-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- main content ---- */
main {
  padding: 40px 0 70px;
}

.gcc-breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.gcc-breadcrumbs a:hover {
  color: var(--accent);
}

.gcc-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
}

.gcc-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 30px 0 50px;
}

.gcc-toc-title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 17px;
}

.gcc-toc ol {
  counter-reset: toc;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 24px;
}

.gcc-toc > ol > li {
  counter-increment: toc;
  font-size: 15px;
}

.gcc-toc > ol > li > a::before {
  content: counter(toc) ". ";
  color: var(--accent);
  font-weight: 700;
}

.gcc-toc a:hover {
  color: var(--accent);
}

.gcc-toc ul {
  margin-top: 8px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gcc-toc ul li {
  font-size: 14px;
  color: var(--text-muted);
}

.gcc-toc ul li::before {
  content: "– ";
}

.gcc-content-section {
  padding-top: 44px;
  border-top: 1px solid var(--border);
  margin-top: 44px;
  scroll-margin-top: 90px;
}

.gcc-content-section:first-of-type {
  border-top: none;
  margin-top: 0;
}

/* ---- inline article figures ---- */
.gcc-content-section figure {
  margin: 24px 0;
  text-align: center;
}

.gcc-content-section figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 0 auto;
}

.gcc-content-section figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.gcc-content-section figure.gcc-figure-narrow {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .gcc-content-section figure.gcc-figure-narrow {
    max-width: 280px;
  }
}

/* ---- tables ---- */
.gcc-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

th {
  background: var(--surface-2);
  font-weight: 700;
  white-space: nowrap;
}

tr:last-child td {
  border-bottom: none;
}

/* ---- pros / cons ---- */
.gcc-pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gcc-pros,
.gcc-cons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}

.gcc-check-list li,
.gcc-cross-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
}

.gcc-check-list li:last-child,
.gcc-cross-list li:last-child {
  margin-bottom: 0;
}

.gcc-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: 700;
}

.gcc-cross-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ff5c5c;
  font-weight: 700;
}

/* ---- generic info list (term: description) ---- */
.gcc-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.gcc-info-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-muted);
}

.gcc-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.gcc-info-list strong {
  color: var(--text);
}

/* ---- numbered steps ---- */
.gcc-steps-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gcc-steps-list li {
  counter-increment: steps;
  position: relative;
  padding: 14px 20px 14px 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
}

.gcc-steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- FAQ ---- */
.gcc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gcc-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.gcc-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gcc-faq-item summary::-webkit-details-marker {
  display: none;
}

.gcc-faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.gcc-faq-item[open] summary::after {
  content: "\2212";
}

.gcc-faq-item p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---- scroll to top ---- */
.gcc-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 90;
}

.gcc-scroll-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- footer ---- */
.gcc-site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
}

.gcc-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.gcc-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.gcc-footer-nav a {
  font-size: 14px;
  color: var(--text-muted);
}

.gcc-footer-nav a:hover {
  color: var(--text);
}

.gcc-app-links {
  display: flex;
  gap: 12px;
}

.gcc-app-badge img {
  width: 140px;
  height: auto;
}

.gcc-compliance-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
}

.gcc-compliance-badges img {
  height: 40px;
  width: auto;
  margin-bottom: 0;
  opacity: 0.85;
}

.gcc-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 18px;
  text-align: center;
}

.gcc-copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .gcc-main-nav {
    position: fixed;
    top: 73px;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    background: var(--bg);
    border-left: 1px solid var(--border);
    padding: 30px 24px;
    transform: translateX(100%);
    overflow-y: auto;
  }

  .gcc-main-nav.gcc-open {
    transform: translateX(0);
  }

  .gcc-main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
  }

  .gcc-header-actions {
    margin-left: auto;
  }

  .gcc-header-actions .gcc-btn-outline,
  .gcc-header-actions .gcc-btn-solid {
    display: none;
  }

  .gcc-main-nav .gcc-header-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .gcc-main-nav .gcc-header-actions-mobile .gcc-btn {
    width: 100%;
  }

  .gcc-nav-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .gcc-header-actions-mobile {
    display: none;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 28px;
  }

  .gcc-hero {
    padding: 44px 0;
  }

  .gcc-hero-title {
    font-size: 32px;
  }

  .gcc-toc {
    padding: 20px;
  }

  .gcc-footer-top {
    justify-content: center;
    text-align: center;
  }
}
