/* domendomen — Slots Casino - Jackpot Mania */
:root {
  --bg-deep: #0a0810;
  --bg-panel: #12101c;
  --bg-elevated: #1a1628;
  --border: rgba(244, 201, 105, 0.18);
  --text: #e8e4f0;
  --muted: #9a92b0;
  --accent: #f4c969;
  --accent-dim: #c9a227;
  --glow: rgba(244, 201, 105, 0.12);
  --radius: 18px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(244, 201, 105, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(90, 70, 180, 0.12), transparent 50%);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ffe08a;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #0a0810;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 8, 16, 0.88);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--accent);
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.lead strong {
  color: var(--text);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-play {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 201, 105, 0.2);
}

.btn-play img {
  display: block;
  height: auto;
  max-width: 200px;
  width: 100%;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hero-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  aspect-ratio: 16 / 9;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.home-snapshot {
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(26, 22, 40, 0.95), rgba(18, 16, 28, 0.6));
  border-left: 4px solid var(--accent-dim);
}

.snapshot-head {
  margin-bottom: 1.25rem;
}

.snapshot-head .section-title {
  margin-bottom: 0.5rem;
}

.snapshot-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
}

.snapshot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

@media (max-width: 700px) {
  .snapshot-cols {
    grid-template-columns: 1fr;
  }
}

.snapshot-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.snapshot-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.snapshot-list li:last-child {
  border-bottom: none;
}

.snapshot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.snapshot-list strong {
  color: var(--text);
  font-weight: 600;
}

.snapshot-aside {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.snapshot-aside p {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.snapshot-aside a {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
  text-decoration: none;
}

.snapshot-aside a:hover {
  text-decoration: underline;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-item h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.ribbon {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  margin-bottom: 2.5rem;
  scrollbar-width: thin;
}

.ribbon-item {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0.9;
}

.ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(244, 201, 105, 0.35);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 700px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-panel);
}

.gallery img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

.gallery figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.page-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose ul {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose ul {
  padding-left: 1.35rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  color: var(--text);
}

.inline-cta {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-panel));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inline-cta p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 2rem 1.25rem;
  background: rgba(18, 16, 28, 0.6);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-brand:hover {
  color: var(--accent);
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

body {
  display: flex;
  flex-direction: column;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.img-contain {
  object-fit: contain;
}
