@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Manrope:wght@400;500;700;800&display=swap");
:root {
  --bg: #070707;
  --bg-soft: #121212;
  --ink: #f0e8dd;
  --muted: #c4b4a7;
  --line: #3a2727;
  --primary: #c81823;
  --primary-deep: #7c1017;
  --accent: #8c2121;
  --card: #121212;
  --shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 6% 8%, rgba(200, 24, 35, 0.2), transparent 34%), radial-gradient(circle at 92% 12%, rgba(98, 20, 20, 0.18), transparent 36%), linear-gradient(180deg, #090909 0%, var(--bg) 48%, #060606 100%);
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(14px, 4vw, 52px);
  border-bottom: 1px solid rgba(200, 24, 35, 0.28);
  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(10px);
}
.brand img { width: 170px; }
.top-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.top-nav a { text-decoration: none; font-weight: 800; font-size: 14px; color: #b89c8d; }
.top-nav a:hover { color: #fff; }
.header-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(123, 15, 21, 0.28);
  animation: pulse-cta 1.7s ease-in-out infinite;
}
.play-here-wrap { margin: 20px 0 0; }
.play-here-btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-deep));
  box-shadow: 0 10px 24px rgba(123, 15, 21, 0.36);
  animation: pulse-play 1.7s ease-in-out infinite;
}

@keyframes pulse-play {
  0% { transform: scale(1); box-shadow: 0 10px 24px rgba(123, 15, 21, 0.36); }
  50% { transform: scale(1.03); box-shadow: 0 14px 34px rgba(123, 15, 21, 0.46); }
  100% { transform: scale(1); box-shadow: 0 10px 24px rgba(123, 15, 21, 0.36); }
}

@keyframes pulse-cta {
  0% { transform: scale(1); box-shadow: 0 10px 22px rgba(123, 15, 21, 0.28); }
  50% { transform: scale(1.03); box-shadow: 0 14px 30px rgba(123, 15, 21, 0.44); }
  100% { transform: scale(1); box-shadow: 0 10px 22px rgba(123, 15, 21, 0.28); }
}
.page-shell {
  width: min(1080px, calc(100% - 28px));
  margin: 28px auto 70px;
  display: grid;
  gap: 18px;
}
.page-shell > section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 34px);
}
.page-shell > section:first-child {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.58)), linear-gradient(120deg, rgba(200, 24, 35, 0.24), rgba(90, 16, 16, 0.24)), var(--card);
  color: #fff;
}
.page-shell > section:first-child p { color: rgba(255, 240, 230, 0.92); max-width: 74ch; }
h1, h2, h3 { font-family: "Cinzel", Georgia, serif; letter-spacing: 0; }
h1 { margin: 0 0 16px; line-height: 0.95; font-size: clamp(34px, 7vw, 74px); }
h2 { margin: 0 0 14px; color: #ffb4b9; line-height: 1.1; font-size: clamp(25px, 4.4vw, 42px); }
h3 { margin: 22px 0 10px; color: #ffd2d5; line-height: 1.2; font-size: clamp(20px, 3.4vw, 30px); }
p, li, td, th { color: var(--muted); line-height: 1.7; }
p,
li,
td,
th,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}
.page-shell > section:first-child h1,
.page-shell > section:first-child h2,
.page-shell > section:first-child h3 { color: #fff; }
.inline-media { margin: 16px 0 20px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.35); }
.inline-media img { width: 100%; max-height: 380px; object-fit: cover; }
.hero-media { margin-top: 8px; }
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  min-width: 0;
  table-layout: fixed;
  background: var(--bg-soft);
  border-radius: 10px;
  overflow: hidden;
}
th, td { text-align: left; vertical-align: top; border: 1px solid #3c2a2a; padding: 12px 13px; }
th { color: #fff; background: linear-gradient(135deg, #b81620, #7a1017); }
ul, ol { padding-left: 22px; }
li + li { margin-top: 8px; }
.page-shell section:nth-last-child(2) article,
.page-shell section:last-child > div { border-top: 1px solid #3a2727; margin-top: 14px; padding-top: 14px; }
.faq-item { border-top: 1px solid #3a2727; padding-top: 14px; margin-top: 14px; }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(18px, 3vw, 24px);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.faq-question span:last-child { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: #9e1b25; font-weight: 900; }
.faq-answer { margin-top: 10px; }
.faq-answer[hidden] { display: none; }
.site-footer { padding: 26px 14px 34px; text-align: center; border-top: 1px solid #3a2727; background: #070707; }
.site-footer p { margin: 8px 0; color: #b8a59a; font-weight: 700; }

.media-section h2 {
  margin-bottom: 16px;
}

.media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-grid img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.payment-grid img {
  width: 148px;
  height: 76px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #574242;
  background: #fff;
}

.trust-grid a {
  width: 148px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #574242;
  background: #fff;
}

.trust-grid img {
  max-height: 100%;
}

.provider-grid img {
  width: 132px;
  height: 56px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #574242;
  background: #fff;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 58px;
    padding: 10px 12px;
  }
  .brand img { width: 108px; }
  .top-nav { display: none; }
  .header-cta { min-height: 36px; font-size: 13px; padding: 0 12px; white-space: nowrap; }
  .page-shell { width: calc(100% - 16px); margin: 16px auto 44px; gap: 12px; }
  .page-shell > section { border-radius: 14px; padding: 16px; }
  h1 { font-size: clamp(30px, 9vw, 48px); line-height: 1; }
  h2 { font-size: clamp(24px, 6.6vw, 34px); }
  h3 { font-size: clamp(19px, 5.2vw, 26px); }
  p, li, td, th { line-height: 1.55; }
  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }
  table {
    border: 0;
    background: transparent;
  }
  thead {
    display: none;
  }
  tbody {
    display: grid;
    gap: 10px;
  }
  tr {
    border: 1px solid #3c2a2a;
    border-radius: 10px;
    background: #141414;
    overflow: hidden;
  }
  td {
    border: 0;
    border-top: 1px solid #2f2222;
    padding: 10px 10px 10px 42%;
    min-width: 0;
    position: relative;
    white-space: normal;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
  }
  tr td:first-child {
    border-top: 0;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(42% - 14px);
    color: #f3c5c8;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.35;
  }
  .play-here-btn { width: 100%; min-height: 48px; }
  .media-grid { justify-content: center; }
  .payment-grid img,
  .trust-grid a {
    width: 132px;
  }
  .provider-grid img {
    width: 118px;
    height: 50px;
  }
}

@media (max-width: 520px) {
  .site-header { padding: 8px 10px; }
  .brand img { width: 96px; }
  .header-cta { min-height: 34px; font-size: 11px; padding: 0 9px; }
  .page-shell { width: calc(100% - 12px); margin: 12px auto 34px; }
  .inline-media { margin: 12px 0 14px; }
  td {
    padding: 9px 9px 9px 44%;
    font-size: 12px;
  }
  td::before {
    width: calc(44% - 12px);
    left: 9px;
    top: 9px;
    font-size: 11px;
  }
  .payment-grid img,
  .trust-grid a {
    width: 122px;
    height: 62px;
  }
  .provider-grid img {
    width: 108px;
    height: 46px;
  }
}
