:root {
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --ink: #1c1520;
  --ink-soft: #4a3f47;
  --ink-muted: #7a6e76;
  --wine: #5c1a33;
  --wine-light: #7a2848;
  --coral: #d4624a;
  --sage: #3d6b52;
  --sage-light: #e8f0eb;
  --border: #e2dbd3;
  --white: #ffffff;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(28, 21, 32, 0.06);
  --shadow-md: 0 8px 28px rgba(28, 21, 32, 0.1);
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  background: var(--wine);
  color: #f5ebe8;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
}

.topbar i {
  color: #f0b8a8;
  margin-right: 0.35rem;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--wine);
  color: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--wine);
  background: var(--cream-dark);
}

.nav-links a.active {
  color: var(--wine);
  background: #f3e8ec;
}

.nav-toggle {
  display: none;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.15rem;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--wine);
  background: #f3e8ec;
}

.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.hero-eyebrow i {
  color: var(--coral);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero-heading em {
  font-style: italic;
  color: var(--wine);
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-fill {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

.btn-fill:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-line:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.hero-panel-head i {
  font-size: 1rem;
  color: var(--coral);
}

.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-panel-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-panel-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.hero-panel-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-panel-note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--cream-dark);
  padding: 1rem;
  border-radius: var(--radius);
  line-height: 1.5;
}

.hero-panel-note i {
  color: var(--sage);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  background: #f3e8ec;
  color: var(--wine);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-card:nth-child(2) .hero-card-icon {
  background: var(--sage-light);
  color: var(--sage);
}

.hero-card:nth-child(3) .hero-card-icon {
  background: #fdf0ed;
  color: var(--coral);
}

.hero-card:nth-child(4) .hero-card-icon {
  background: var(--cream-dark);
  color: var(--ink-soft);
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.hero-card-text {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.section-container,
.content-container,
.legal-container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.section-eyebrow-light {
  color: #f0d4dc;
}

.section-eyebrow-light i {
  color: var(--coral);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-title-light {
  color: var(--cream);
}

.section-text {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-section {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  scroll-margin-top: var(--nav-h);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.about-aside {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.about-aside-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 1.25rem;
}

.about-game-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-game-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: border-color 0.15s, background 0.15s;
}

.about-game-link:hover {
  border-color: var(--wine);
  background: #f3e8ec;
}

.about-game-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--wine);
  color: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-game-link strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.about-game-link span span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.about-aside-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.disclaimer-section {
  background: var(--wine);
  padding: 4rem 0;
  scroll-margin-top: var(--nav-h);
}

.disclaimer-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.disclaimer-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.disclaimer-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.disclaimer-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--sage);
  color: var(--cream);
  font-size: 1.25rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.disclaimer-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.disclaimer-card-text {
  font-size: 0.92rem;
  color: #f0e4e8;
  line-height: 1.65;
}

.content-page {
  background: var(--cream);
  padding: 3rem 0 4rem;
  min-height: 50vh;
}

.content-container {
  padding-top: 0;
  padding-bottom: 0;
}

.content-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.content-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 40rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.content-block {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.65rem;
}

.content-block p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.content-game-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-game-list a {
  color: var(--wine);
  font-weight: 600;
}

.content-game-list a:hover {
  text-decoration: underline;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-intro {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.page-games .games-section {
  padding-top: 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 42rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card i {
  color: var(--wine);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-card a {
  color: var(--wine);
  font-weight: 600;
}

.legal-page {
  background: var(--cream);
  padding: 3rem 0 4rem;
  min-height: 50vh;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.legal-breadcrumb a {
  color: var(--wine);
  font-weight: 600;
}

.legal-breadcrumb i {
  font-size: 0.65rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wine);
  margin: 1.75rem 0 0.65rem;
}

.legal-body p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  max-width: 46rem;
}

.legal-body a {
  color: var(--wine);
  font-weight: 600;
}

.legal-link-list {
  list-style: none;
  margin: 0.5rem 0 1rem;
}

.legal-link-list a {
  color: var(--wine);
  font-weight: 600;
}

.legal-footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.site-footer {
  background: var(--ink);
  color: #c4b8be;
  padding: 3.5rem 0 0;
}

.footer-container {
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo i {
  color: var(--coral);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 22rem;
}

.footer-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-disclaimers p {
  font-size: 0.8rem;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-disclaimers i {
  color: var(--coral);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-disclaimers strong {
  color: var(--cream);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-heading-support {
  margin-top: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #c4b8be;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0;
}

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--coral);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #e8d8de;
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding: 1.25rem 0 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #9a8d94;
  line-height: 1.5;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 21, 32, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: #f3e8ec;
  color: var(--wine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.modal-content {
  text-align: left;
  margin-bottom: 1.25rem;
}

.modal-content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.modal-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: left;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.modal-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.modal-btn {
  width: 100%;
  justify-content: center;
}

.modal-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-footnote {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.modal-footnote a {
  color: var(--wine);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--ink);
  color: #e8dde2;
  padding: 1rem 1.25rem;
  border-top: 3px solid var(--coral);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.cookie-banner-text i {
  color: var(--coral);
  margin-right: 0.4rem;
}

.cookie-banner-text a {
  color: #f0d4dc;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-email-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.contact-email-block > i {
  font-size: 2rem;
  color: var(--wine);
  margin-top: 0.25rem;
}

.contact-email-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wine);
}

.contact-email-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
  line-height: 1.55;
}

.game-play-page {
  background: var(--cream);
  padding: 3rem 0 4rem;
}

.game-play-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.game-play-disclaimer {
  background: #f3e8ec;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.game-play-disclaimer h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-play-disclaimer p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.play-game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.play-balance {
  font-weight: 700;
  color: var(--wine);
  font-size: 1rem;
}

.play-balance i {
  margin-right: 0.35rem;
  color: var(--coral);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.slot-machine {
  background: var(--wine);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.slot-reels {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.slot-reel {
  width: 80px;
  height: 80px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--wine);
}

.slot-machine.spinning .slot-reel {
  opacity: 0.85;
}

.play-message {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  min-height: 1.4em;
}

.play-action {
  width: 100%;
  justify-content: center;
}

.play-actions-row {
  display: flex;
  gap: 0.75rem;
}

.play-actions-row .play-action {
  flex: 1;
}

.bj-table {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.bj-hand h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.bj-hand + .bj-hand {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bj-card {
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.bj-empty {
  opacity: 0.5;
}

.roulette-wheel {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: conic-gradient(
    var(--wine) 0deg 90deg,
    var(--ink) 90deg 180deg,
    var(--sage) 180deg 270deg,
    var(--coral) 270deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--ink);
}

.roulette-wheel.spinning {
  animation: wheel-spin 1.2s ease-out;
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}

.roulette-result {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.roulette-result .red {
  color: #c0392b;
}

.roulette-result .black {
  color: var(--ink);
}

.roulette-result .green {
  color: var(--sage);
}

.roulette-placeholder {
  color: var(--ink-muted);
}

.roulette-bets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.roulette-bet {
  padding: 0.65rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink);
}

.roulette-bet.active {
  border-color: var(--wine);
  background: #f3e8ec;
  color: var(--wine);
}

.roulette-bet:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 21, 32, 0.45);
  border: none;
  cursor: pointer;
  z-index: 90;
}

.games-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: var(--nav-h);
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.games-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.games-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.games-eyebrow i {
  color: var(--wine);
}

.games-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.games-intro {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.game-card-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.game-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-type {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--wine);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
}

.game-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex-grow: 1;
}

.game-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.game-card-name a {
  color: var(--ink);
  transition: color 0.15s;
}

.game-card-name a:hover {
  color: var(--wine);
}

.btn-play {
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  padding: 0.75rem 1.35rem;
  font-size: 0.88rem;
  margin-top: auto;
}

.btn-play:hover {
  background: #c45540;
  border-color: #c45540;
}

@media (max-width: 1024px) {
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid .game-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .hero-panel {
    max-width: 28rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: block;
  }

  .mobile-nav {
    z-index: 110;
  }

  .hero-container {
    padding: 2.5rem 1.25rem 3rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .games-container {
    padding: 3rem 1.25rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .games-grid .game-card:last-child {
    max-width: none;
  }

  .game-card-body {
    align-items: stretch;
  }

  .btn-play {
    width: 100%;
    justify-content: center;
  }

  .disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .about-section,
  .disclaimer-section {
    padding: 3rem 0;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-accept {
    width: 100%;
    justify-content: center;
  }

  .roulette-bets {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-actions-row {
    flex-direction: column;
  }

  .contact-email-block {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 68px;
  }

  .logo-headline {
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
