:root {
  --background: #f3f6f3;
  --surface: #ffffff;
  --surface-soft: #eef3ef;
  --foreground: #1a2320;
  --heading: #16372d;
  --muted: #4d5f57;
  --primary: #1f7a5b;
  --primary-strong: #176248;
  --border: #d9e5dd;
  --padding: 2rem;
  --padding-sm: 1rem;
  --padding-xs: 0.5rem;
  --container-width-mobile: 39rem;
  --container-width-desktop: 74rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.8rem;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  color: var(--foreground);
  background: linear-gradient(180deg, #f5f8f5 0%, #f1f5f2 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

p,
h2,
h3 {
  margin-bottom: var(--padding-sm);
}

h2,
h3 {
  margin-top: var(--padding);
  color: var(--heading);
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin-left: var(--padding);
  margin-bottom: var(--padding-xs);
}

section,
.ctas {
  margin-bottom: var(--padding);
}

header,
footer {
  background: #1a6248;
  color: #fff;
}

header {
  margin-bottom: var(--padding);
  padding-top: 1.45rem;
  padding-bottom: 1.45rem;
  box-shadow: 0 3px 10px rgba(17, 39, 31, 0.14);
}
header a {
  display: block;
}
header h1 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: var(--padding-xs);
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  line-height: 1.3;
}
header img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  header h1 {
    flex-direction: column;
    gap: 0.6rem;
  }
}

footer {
  margin-top: var(--padding);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-simple {
  text-align: center;
}
.footer-simple p {
  margin-bottom: 0;
}
.footer-simple p + p {
  margin-top: 0.45rem;
}

details {
  padding: var(--padding-sm) var(--padding-sm) 0 var(--padding-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}
details summary {
  cursor: pointer;
  margin-bottom: var(--padding-sm);
}
details summary strong {
  padding-left: var(--padding-xs);
}
details p:last-child {
  padding-bottom: var(--padding-sm);
}

.container {
  width: 100%;
  max-width: var(--container-width-mobile);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: var(--container-width-desktop);
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

.content a {
  color: var(--primary);
}
.content a:hover {
  color: var(--primary-strong);
}

.text-center {
  text-align: center;
}

.table-wrap {
  width: 100%;
  margin-bottom: var(--padding-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  background: var(--surface);
  box-shadow: 0 4px 10px rgba(19, 37, 30, 0.07);
}

.table {
  width: 100%;
  min-width: 36rem;
  border-spacing: 0;
  border-collapse: separate;
  margin-bottom: 0;
}
.table th,
.table td {
  text-align: left;
  padding: 0.72rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table th {
  background: linear-gradient(180deg, #edf6f1 0%, #e4f0e9 100%);
  color: var(--heading);
  font-size: 0.79rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.table td {
  background: var(--surface);
}
.table tbody tr:nth-child(even) td {
  background: #f7fbf8;
}
.table tbody tr:hover td {
  background: #eff7f2;
}
.table tr:last-child td {
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .table {
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .table th,
  .table td {
    font-size: 0.9rem;
    padding: 0.66rem 0.72rem;
  }
}

.cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 10px rgba(19, 37, 30, 0.07);
  padding: var(--padding-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-sm);
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .cta {
    flex-direction: column;
    align-items: stretch;
  }
}
.cta:last-child {
  margin-bottom: 0;
}
.cta h3 {
  margin-bottom: 0.3rem;
}
.cta li {
  font-size: 0.875rem;
  margin-bottom: 0.1875rem;
}
.cta .casino-intro {
  width: min(100%, 18.75rem);
}
.cta .casino-intro .casino-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.375rem;
}
.cta .casino-intro .casino-bonus {
  font-size: 1.2rem;
  color: var(--heading);
}
.cta .casino-features1 {
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.cta .casino-features1 li {
  list-style: none;
  margin-bottom: 0;
  color: var(--primary);
  background: #f4f8f5;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(19, 37, 30, 0.08);
}
.cta .casino-features2 {
  width: min(100%, 20rem);
  margin-left: 0;
  margin-bottom: 0;
  display: grid;
}
.cta .casino-features2 li {
  list-style: none;
  margin-bottom: 0;
  color: var(--foreground);
  padding: 0 0.75rem 0.55rem 1.7rem;
  position: relative;
}
.cta .casino-features2 li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0.75rem;
  top: 0.4rem;
}
.cta .cta-action {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cta .cta-action {
    width: 100%;
  }
}

.logo {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 3px 8px rgba(19, 37, 30, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius);
}

.btn {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  color: #fff;
  padding: 0.8rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-width: 11.5rem;
  display: inline-block;
  text-align: center;
  transition: 0.25s ease all;
  box-shadow: 0 3px 8px rgba(19, 37, 30, 0.14);
}
.btn:hover {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  border: 1px solid var(--primary-strong);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.62rem 0.95rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 8px rgba(19, 37, 30, 0.2);
}
.to-top:hover {
  background: var(--primary-strong);
}
.to-top:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .logo {
    margin: 0 auto;
  }
  .to-top {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
