/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --burgundy-dark: #4a0e0e;
  --burgundy-medium: #6b1a1a;
  --burgundy-light: #8b2a2a;
  --burgundy-accent: #a03a3a;
  --text-primary: #f5f5f5;
  --text-secondary: #d4d4d4;
  --text-muted: #a0a0a0;
  --border-color: #5a1a1a;
  --bg-overlay: rgba(74, 14, 14, 0.95);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--burgundy-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
header {
  background-color: var(--burgundy-medium);
  border-bottom: 2px solid var(--border-color);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.header-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.header-nav a:hover {
  background-color: var(--burgundy-accent);
  color: #fff;
}

.header-nav a.active {
  background-color: var(--burgundy-accent);
  color: #fff;
}

/* Burger Menu Button */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  z-index: 1001;
  width: fit-content;
  height: fit-content;
  margin-left: auto;
}

.burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Header Nav Wrapper */
.header-nav-wrapper {
  display: block;
  justify-self: center;
}

.header-nav-wrapper.active {
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0.75rem 2rem;
  background-color: var(--burgundy-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.breadcrumbs-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-link:hover {
  color: var(--text-primary);
}

.breadcrumbs-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Footer Logo */
.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img {
  opacity: 0.8;
}

/* Bonus Button in Header */
.header-bonus-button {
  display: inline-block;
  background-color: var(--burgundy-accent);
  color: var(--text-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: auto;
}

.header-bonus-button:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Demo Game Container */
.demo-game-container {
  position: relative;
  width: 100%;

  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  background-color: var(--burgundy-medium);
  aspect-ratio: 16 / 9;
}

.demo-game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(74, 14, 14, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-game-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-game-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.demo-game-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  min-width: 200px;
  text-align: center;
}

.demo-game-play-button {
  background-color: var(--burgundy-accent);
  color: var(--text-primary);
}

.demo-game-play-button:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.demo-game-demo-button {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.demo-game-demo-button:hover {
  background-color: var(--text-primary);
  color: var(--burgundy-dark);
}

/* APK Intro Wrapper */
.apk-intro-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2rem 0;
}

.apk-intro-text {
  flex: 1;
}

.apk-intro-text p {
  margin-bottom: 0;
}

/* APK Download Section */
.apk-download-section {
  flex: 0 0 450px;
  height: 100%;
  text-align: center;
  padding: 2rem;
  background-color: var(--burgundy-medium);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.apk-download-section img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: var(--burgundy-dark);
  padding: 1rem;
  object-fit: contain;
}

.apk-download-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.apk-download-button {
  display: none;
  background-color: var(--burgundy-accent);
  color: var(--text-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.apk-download-button:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.apk-download-button.visible {
  display: inline-block;
}

/* Casino Banner Content */
.casino-banner-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: linear-gradient(135deg, var(--burgundy-medium) 0%, var(--burgundy-light) 100%);
  border-radius: 12px;
  border: 2px solid var(--burgundy-accent);
  margin: 2rem 0;
  flex-wrap: wrap;
  box-shadow: 0 8px 25px rgba(160, 58, 58, 0.4), 0 0 20px rgba(160, 58, 58, 0.2);
  position: relative;
  overflow: hidden;
}

.casino-banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(160, 58, 58, 0.1) 0%, rgba(139, 42, 42, 0.1) 100%);
  pointer-events: none;
  z-index: 0;
}

.casino-banner-content > * {
  position: relative;
  z-index: 1;
}

.casino-banner-content-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.casino-banner-content-brand img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.casino-banner-content-brand p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.casino-banner-content-brand p strong {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.casino-banner-content > div:not(.casino-banner-content-brand) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.casino-banner-content > div:not(.casino-banner-content-brand) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem;
}

.casino-banner-content > div:not(.casino-banner-content-brand) p {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: rgba(74, 14, 14, 0.3);
  border-radius: 8px;
  border-left: 3px solid var(--burgundy-accent);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.casino-banner-content > div:not(.casino-banner-content-brand) p:hover {
  background-color: rgba(74, 14, 14, 0.5);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.casino-banner-button {
  background-color: var(--burgundy-accent);
  color: var(--text-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  flex-shrink: 0;
  align-self: center;
}

.casino-banner-button:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

/* Content Card Wrapper */
.content-card {
  background-color: var(--burgundy-medium);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.content-card:last-child {
  margin-bottom: 0;
}

/* Sections inside content cards */
.content-card section {
  margin-bottom: 0;
}

.content-card section + section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.content-card section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Standalone sections (before grouping) */
section {
  margin-bottom: 3rem;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

li {
  margin-bottom: 0.5rem;
}

/* APK Installation Steps */
.apk-installation-section {
  position: relative;
}

.apk-installation-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 2rem 0;
  padding: 0;
}

.apk-installation-steps li {
  counter-increment: step-counter;
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(160, 58, 58, 0.15) 0%, rgba(139, 42, 42, 0.15) 100%);
  border-left: 4px solid var(--burgundy-accent);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.apk-installation-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--burgundy-accent) 0%, var(--burgundy-light) 100%);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(160, 58, 58, 0.4);
  border: 2px solid var(--burgundy-light);
}

.apk-installation-steps li:hover {
  background: linear-gradient(135deg, rgba(160, 58, 58, 0.25) 0%, rgba(139, 42, 42, 0.25) 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-left-color: var(--burgundy-light);
}

.apk-installation-steps li:hover::before {
  box-shadow: 0 6px 15px rgba(160, 58, 58, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* Content Keyword Links */
.content-keyword-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 2px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 200, 0, 0.1) 100%);
  padding: 2px 4px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.content-keyword-link:hover {
  color: #ffed4e;
  border-bottom-color: #ffed4e;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 200, 0, 0.15) 100%);
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
  transform: translateY(-1px);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--burgundy-medium);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: var(--burgundy-light);
}

th {
  padding: 1rem;
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
}

td {
  padding: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

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

tr:hover {
  background-color: var(--burgundy-accent);
}

dl {
  margin: 1.5rem 0;
}

dt {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

dd {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Banner Styles */
.banner {
  width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Footer Styles */
footer {
  background-color: var(--burgundy-medium);
  border-top: 2px solid var(--border-color);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-block;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.footer-logos img {
  width: 100px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logos img:hover {
  opacity: 1;
}

/* 404 Page Styles */
.error-404 {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-404 h1 {
  font-size: 6rem;
  margin-bottom: 1rem;
  color: var(--burgundy-accent);
}

.error-404 p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 120px;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--burgundy-accent);
  color: var(--text-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.scroll-to-top.visible {
  display: flex;
}

/* FAQ Accordion Styles */
.faq-accordion dt {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 2rem;
  transition: color 0.3s ease;
}

.faq-accordion dt:hover {
  color: var(--burgundy-accent);
}

.faq-accordion dt::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-accordion dt.active::after {
  transform: rotate(45deg);
}

.faq-accordion dd {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.faq-accordion dt.active + dd {
  max-height: 500px;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

/* Bonus Banner */
.bonus-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--burgundy-medium);
  border-top: 2px solid var(--border-color);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 998;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.bonus-banner.visible {
  display: flex;
}

.bonus-banner.hidden {
  transform: translateY(100%);
}

.bonus-banner-text {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.bonus-banner-button {
  background-color: var(--burgundy-accent);
  color: var(--text-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.bonus-banner-button:hover {
  background-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Laptop - max 1024px */
@media (max-width: 1024px) {
  .apk-download-section{
    max-width: 350px;
  }

  .header-container {
    padding: 0 1rem;
  }

  .header-nav {
    gap: 1.5rem;
  }

  .header-nav a {
    font-size: 0.95rem;
    padding: 0.45rem 0.9rem;
  }

  main {
    padding: 1.5rem;
  }

  .scroll-to-top {
    bottom: 110px;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .content-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .content-card section + section {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

/* Tablet - max 768px */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
  }

  .header-logo img {
    height: 45px;
  }

  .burger-menu {
    display: flex;
  }

  .header-nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--burgundy-medium);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .header-nav-wrapper.active {
    max-height: 300px;
    padding: 1rem 0;
  }

  .header-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 1rem;
  }

  .header-nav li {
    width: 100%;
  }

  .header-nav a {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }

  .header-nav li {
    width: 100%;
  }

  .header-nav .header-bonus-button {
    display: block;
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    background-color: var(--burgundy-accent);
    font-weight: 600;
  }

  /* Hide bonus button in header on mobile */
  .header-container > .header-bonus-button {
    display: none !important;
  }

  .breadcrumbs {
    padding: 0.75rem 1rem;
  }

  .header-bonus-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .demo-game-container {
    margin: 1.5rem auto;
    border-radius: 8px;
  }

  .demo-game-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-width: 180px;
  }

  .apk-intro-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .apk-download-section {
    
    flex: 1;
    padding: 1.5rem;
    margin: 0 auto;
  }

  .casino-banner-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
  }

  .casino-banner-content-brand {
    width: 100%;
  }

  .casino-banner-content > div:not(.casino-banner-content-brand) {
    width: 100%;
    align-items: center;
  }

  .casino-banner-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    align-self: center;
  }

  .apk-installation-steps li {
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 0.95rem;
  }

  .apk-installation-steps li::before {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    left: 0.75rem;
  }

  .apk-download-section img {
    max-width: 90px;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .apk-download-section p {
    font-size: 1.1rem;
  }

  .apk-download-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  main {
    padding: 1.25rem;
  }

  .scroll-to-top {
    bottom: 100px;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .bonus-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .bonus-banner-text {
    font-size: 0.9rem;
    text-align: center;
  }

  .bonus-banner-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .content-card {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 10px;
  }

  .content-card section + section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .error-404 h1 {
    font-size: 4rem;
  }

  .error-404 p {
    font-size: 1.1rem;
  }
}

/* Mobile L - max 425px */
@media (max-width: 425px) {
  header {
    padding: 0.75rem;
  }

  .header-container {
    gap: 0.75rem;
  }

  .header-logo img {
    height: 40px;
  }

  .header-nav {
    gap: 0.5rem;
    width: 100%;
    justify-content: space-around;
  }

  .header-nav a {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    flex: 1;
    text-align: center;
  }

  main {
    padding: 1rem;
  }

  .scroll-to-top {
    bottom: 90px;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .bonus-banner {
    padding: 0.875rem;
  }

  .bonus-banner-text {
    font-size: 0.85rem;
  }

  .bonus-banner-button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .content-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
  }

  .content-card section + section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  section {
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  p {
    font-size: 0.95rem;
  }

  ul, ol {
    margin-left: 1.5rem;
  }

  table {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto;
  }

  th, td {
    padding: 0.6rem;
    min-width: 100px;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-logos img {
    width: 100px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
  }

  .footer-logo img {
    height: 40px;
  }

  .error-404 {
    padding: 3rem 1rem;
  }

  .error-404 h1 {
    font-size: 3.5rem;
  }

  .error-404 p {
    font-size: 1rem;
  }

  .casino-banner-content {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .casino-banner-content-brand img {
    max-width: 100px;
  }

  .casino-banner-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    max-width: 100%;
  }

  .apk-installation-steps li {
    padding: 0.875rem 0.875rem 0.875rem 3rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .apk-installation-steps li::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.9rem;
    left: 0.5rem;
  }
}

/* Mobile M - max 375px */
@media (max-width: 375px) {
  .header-nav a {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .demo-game-container {
    margin: 1rem auto;
    border-radius: 6px;
  }

  .demo-game-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    min-width: 150px;
  }

  .apk-intro-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .apk-download-section {
    flex: 1;
    padding: 1rem;
    margin: 0;
  }

  .apk-download-section img {

    padding: 0.5rem;
    margin-bottom: 1rem;
  }

  .apk-download-section p {
    font-size: 0.95rem;
  }

  .apk-download-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .content-card {
    padding: 1rem;
  }

  .content-card section + section {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .scroll-to-top {
    bottom: 85px;
    right: 0.75rem;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .bonus-banner {
    padding: 0.75rem;
  }

  .bonus-banner-text {
    font-size: 0.8rem;
  }

  .bonus-banner-button {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
  }

  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 0.5rem;
  }

  .error-404 h1 {
    font-size: 3rem;
  }
}

/* Mobile S - max 320px */
@media (max-width: 320px) {
  header {
    padding: 0.5rem;
  }

  .header-logo img {
    height: 35px;
  }

  .header-nav {
    flex-direction: column;
    width: 100%;
  }

  .header-nav a {
    width: 100%;
    font-size: 0.85rem;
  }

  .header-bonus-button {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }

  main {
    padding: 0.75rem;
  }

  .scroll-to-top {
    bottom: 80px;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .bonus-banner {
    padding: 0.65rem;
  }

  .bonus-banner-text {
    font-size: 0.75rem;
  }

  .bonus-banner-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .content-card {
    padding: 0.875rem;
    border-radius: 6px;
  }

  .content-card section + section {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.85rem;
  }

  ul, ol {
    margin-left: 1.25rem;
  }

  table {
    font-size: 0.75rem;
  }

  th, td {
    padding: 0.4rem;
    font-size: 0.75rem;
  }

  .error-404 h1 {
    font-size: 2.5rem;
  }

  .error-404 p {
    font-size: 0.9rem;
  }
}
