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

:root {
  --light-blue: #C8E6C9;
  --blue: #7CB342;
  --dark-blue: #558B2F;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --border-color: #A1887F;
  --minecraft-brown: #8D6E63;
  --minecraft-stone: #9E9E9E;
  --minecraft-dark-green: #33691E;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #E8F5E9;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(124, 179, 66, 0.03) 2px, rgba(124, 179, 66, 0.03) 4px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header Styles */
.site-header {
  background: linear-gradient(180deg, #8BC34A 0%, #7CB342 100%);
  box-shadow: 0 2px 8px rgba(85, 139, 47, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--dark-blue);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.nav-link.active {
  background-color: var(--dark-blue);
  color: var(--white);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.header-play-button {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(180deg, var(--white) 0%, #f5f5f5 100%);
  color: var(--minecraft-dark-green);
  border: 2px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.header-play-button:hover {
  background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(180deg, var(--dark-blue) 0%, var(--minecraft-dark-green) 100%);
  color: var(--white);
  margin-top: auto;
  padding: 2rem 0 9rem;
  border-top: 3px solid var(--blue);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 350px;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  max-width: 300px;
}

.footer-logo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
}

.footer-badge-img {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 120px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.footer-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Content Styles */
section {
  margin-bottom: 2.5rem;
}

.casino-banner-content {
  background: linear-gradient(180deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(85, 139, 47, 0.2);
  border: 2px solid var(--minecraft-brown);
}

.casino-banner-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.casino-logo-container {
  flex: 0 0 auto;
}

.casino-logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

.casino-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 250px;
}

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

.casino-rating p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--minecraft-dark-green);
  line-height: 1.2;
}

.casino-rating-stars-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.casino-stars {
  color: #FFC107;
  font-size: 1.3rem;
}

.casino-score {
  color: var(--minecraft-dark-green);
}

.casino-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.casino-feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.casino-feature-text {
  flex: 1;
}

.casino-play-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(180deg, #8BC34A 0%, #7CB342 100%);
  color: var(--white);
  border: 3px solid var(--minecraft-dark-green);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.4);
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
  align-self: center;
}

.casino-play-button:hover {
  background: linear-gradient(180deg, #7CB342 0%, #689F38 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 139, 47, 0.5);
}

section {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(85, 139, 47, 0.15);
  border: 2px solid var(--border-color);
}

h1 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(124, 179, 66, 0.3);
}

h2 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--blue);
  padding-left: 1rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

strong {
  color: var(--dark-blue);
}

/* Mine Drop Link Styles */
.mine-drop-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.mine-drop-link:hover {
  color: var(--dark-blue);
  border-bottom-color: var(--blue);
  text-shadow: 0 0 3px rgba(124, 179, 66, 0.3);
}

/* Table Wrapper for Horizontal Scroll */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--light-blue);
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: var(--light-blue);
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue);
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin: 0;
  background-color: var(--white);
}

table thead {
  background: linear-gradient(180deg, var(--blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
}

table th,
table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

table tbody tr:nth-child(even) {
  background-color: var(--light-blue);
}

dl {
  margin: 1.5rem 0;
}

dt {
  font-weight: bold;
  color: var(--dark-blue);
  margin-top: 1rem;
}

dd {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Breadcrumbs Styles */
.breadcrumbs {
  background: linear-gradient(180deg, #F1F8E9 0%, #DCEDC8 100%);
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--blue);
}

.breadcrumbs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumbs-link {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumbs-link:hover {
  color: var(--dark-blue);
  text-decoration: underline;
  text-shadow: 0 0 2px rgba(124, 179, 66, 0.5);
}

.breadcrumbs-separator {
  color: var(--text-light);
  margin: 0 0.25rem;
}

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

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

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

/* Demo Game Container */
.demo-game-container {
  width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  padding: 1rem;
  position: relative;
}

.demo-game-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

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

.demo-game-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-play-button,
.demo-try-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-play-button {
  background: linear-gradient(180deg, var(--blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  border: 2px solid var(--dark-blue);
}

.demo-play-button:hover {
  background: linear-gradient(180deg, var(--dark-blue) 0%, var(--minecraft-dark-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 139, 47, 0.5);
}

.demo-try-button {
  background: linear-gradient(180deg, #9E9E9E 0%, #757575 100%);
  color: var(--white);
  border: 2px solid #757575;
}

.demo-try-button:hover {
  background: linear-gradient(180deg, #757575 0%, #616161 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

/* Bottom CTA Banner */
.bottom-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--dark-blue) 0%, var(--minecraft-dark-green) 100%);
  color: var(--white);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 998;
  border-top: 3px solid var(--blue);
}

.bottom-cta-banner.active {
  display: flex;
}

.bottom-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

.bottom-cta-button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(180deg, var(--blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.bottom-cta-button:hover {
  background: linear-gradient(180deg, var(--dark-blue) 0%, var(--minecraft-dark-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  border: 2px solid var(--dark-blue);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  padding: 0;
}

.scroll-to-top:hover {
  background: linear-gradient(180deg, var(--dark-blue) 0%, var(--minecraft-dark-green) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(85, 139, 47, 0.5);
}

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

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* FAQ Accordion Styles */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--light-blue);
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #A5D6A7;
}

.faq-question.active {
  background-color: var(--blue);
  color: var(--white);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 1rem 1.5rem;
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Legacy FAQ styles (dl/dt/dd) - convert to accordion */
.faq-accordion dt {
  padding: 1rem 1.5rem;
  background-color: var(--light-blue);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-accordion dt:hover {
  background-color: #A5D6A7;
}

.faq-accordion dt.active {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.faq-accordion dt::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

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

.faq-accordion dd {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 4px 4px;
  margin-left: 0;
}

.faq-accordion dd.active {
  max-height: 1000px;
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
}

/* 404 Page Styles */
.error-404 {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #F1F8E9 0%, #DCEDC8 100%);
  border: 2px solid var(--blue);
  border-radius: 8px;
}

.error-404 > div:first-child {
  font-size: 6rem;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(85, 139, 47, 0.3);
}

.error-404 p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.error-404 p:first-of-type {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.error-404 .back-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(180deg, var(--blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 2px solid var(--dark-blue);
  box-shadow: 0 4px 8px rgba(85, 139, 47, 0.3);
}

.error-404 .back-link:hover {
  background: linear-gradient(180deg, var(--dark-blue) 0%, var(--minecraft-dark-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(85, 139, 47, 0.4);
}

/* PC - min 1025px */
@media (min-width: 1025px) {
  main {
    padding: 3rem;
  }
  
  section {
    padding: 2.5rem;
  }
  
  .demo-game-iframe {
    height: 700px;
  }
}

/* Laptop - max 1024px */
@media (max-width: 1024px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
  
  .header-nav {
    gap: 1.5rem;
  }
  
  main {
    padding: 1.5rem;
  }
  
  section {
    padding: 1.5rem;
  }
  
  .footer-nav {
    gap: 2rem;
  }
  
  .demo-game-iframe {
    height: 550px;
  }
}

/* Scroll to Top Button Responsive */
@media (max-width: 768px) {
  .bottom-cta-banner {
    padding: 0.85rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  
  .bottom-cta-text {
    font-size: 1rem;
    margin: 0;
    color: var(--white);
  }
  
  .bottom-cta-button {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }
  
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 5.5rem;
    right: 1.5rem;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 425px) {
  .bottom-cta-banner {
    padding: 0.75rem 1rem;
  }
  
  .bottom-cta-text {
    font-size: 0.9rem;
    color: var(--white);
  }
  
  .bottom-cta-button {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
  
  .site-footer {
    padding-bottom: 4.5rem;
  }
  
  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 5rem;
    right: 1rem;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* Tablet - max 768px */
@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 4.5rem;
  }
  .header-container {
    padding: 1rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .header-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    gap: 1rem;
  }
  
  .header-nav.active {
    left: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-play-button {
    display: none; /* Hide in header on mobile */
  }
  
  .header-nav .header-play-button {
    display: block !important; /* Show in mobile menu */
    width: 100%;
    text-align: center;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(180deg, #8BC34A 0%, #7CB342 100%);
    color: var(--white);
    border: 3px solid var(--minecraft-dark-green);
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 12px rgba(85, 139, 47, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .header-nav .header-play-button:hover {
    background: linear-gradient(180deg, #7CB342 0%, #689F38 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(85, 139, 47, 0.5);
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem;
    color: var(--minecraft-dark-green);
  }
  
  .nav-link:hover {
    background-color: rgba(51, 105, 30, 0.1);
    color: var(--minecraft-dark-green);
  }
  
  .nav-link.active {
    background-color: var(--minecraft-dark-green);
    color: var(--white);
  }
  
  .breadcrumbs-container {
    padding: 0 1rem;
    font-size: 0.85rem;
  }
  
  .table-wrapper {
    margin: 1rem 0;
  }
  
  main {
    padding: 1rem;
  }
  
  section {
    padding: 1.25rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-logo-text {
    text-align: center;
    max-width: 100%;
    font-size: 0.8rem;
  }
  
  .footer-logo-badges {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-badge-img {
    max-height: 35px;
    max-width: 100px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .footer-nav-column {
    width: 100%;
    align-items: center;
  }
  
  .demo-game-iframe {
    height: 400px;
  }
  
  .demo-game-buttons {
    gap: 1rem;
  }
  
  .demo-play-button,
  .demo-try-button {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
  
  .error-404 > div:first-child {
    font-size: 4rem;
  }
  
  .error-404 p:first-of-type {
    font-size: 1.25rem;
  }
}

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

  .header-nav {
    top: 50px;
  }
  
  .header-nav .header-play-button {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
  
  .casino-banner-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .casino-logo-img {
    max-height: 60px;
  }
  
  .casino-info {
    align-items: center;
  }
  
  .casino-rating {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .casino-rating p {
    font-size: 1.3rem;
  }
  
  .casino-play-button {
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .breadcrumbs {
    padding: 0.75rem 0;
  }
  
  .breadcrumbs-container {
    padding: 0 0.75rem;
    font-size: 0.8rem;
  }
  
  .table-wrapper {
    margin: 0.75rem 0;
  }
  
  table {
    min-width: 500px;
  }
  
  main {
    padding: 0.75rem;
  }
  
  section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  ul, ol {
    margin-left: 1.5rem;
  }
  
  table {
    font-size: 0.9rem;
  }
  
  table th,
  table td {
    padding: 0.5rem;
  }
  
  .demo-game-iframe {
    height: 350px;
  }
  
  .demo-game-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
  }
  
  .demo-play-button,
  .demo-try-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-logo-img {
    height: 35px;
  }
  
  .footer-badge-img {
    max-height: 30px;
    max-width: 90px;
  }
  
  .error-404 {
    padding: 2rem 1rem;
  }
  
  .error-404 > div:first-child {
    font-size: 3.5rem;
  }
  
  .error-404 p:first-of-type {
    font-size: 1.15rem;
  }
  
  .error-404 p {
    font-size: 0.95rem;
  }
  
  .faq-question {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0.75rem 1rem !important;
  }
  
  .faq-accordion dt {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .faq-accordion dd {
    padding: 0.25rem 1rem !important;
  }
}

/* Mobile M - max 375px */
@media (max-width: 375px) {
  .bottom-cta-banner {
    padding: 0.65rem 0.85rem;
  }
  
  .bottom-cta-text {
    font-size: 0.85rem;
    color: var(--white);
  }
  
  .bottom-cta-button {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 280px;
  }
  
  .site-footer {
    padding-bottom: 7.5rem;
  }
  
  .scroll-to-top {
    bottom: 4.5rem;
  }
  .header-container {
    padding: 0.5rem;
  }
  
  .header-nav .header-play-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .logo-img {
    height: 30px;
  }
  
  .breadcrumbs {
    padding: 0.5rem 0;
  }
  
  .breadcrumbs-container {
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }
  
  .table-wrapper {
    margin: 0.5rem 0;
  }
  
  table {
    min-width: 450px;
  }
  
  main {
    padding: 0.5rem;
  }
  
  section {
    padding: 0.75rem;
  }
  
  h1 {
    font-size: 1.35rem;
  }
  
  h2 {
    font-size: 1.15rem;
  }
  
  table {
    font-size: 0.85rem;
  }
  
  table th,
  table td {
    padding: 0.4rem;
  }
  
  .demo-game-iframe {
    height: 300px;
  }
  
  .demo-play-button,
  .demo-try-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .footer-logo-img {
    height: 30px;
  }
  
  .footer-badge-img {
    max-height: 28px;
    max-width: 80px;
  }
  
  .error-404 > div:first-child {
    font-size: 3rem;
  }
  
  .error-404 p:first-of-type {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0.65rem 0.85rem !important;
  }
  
  .faq-accordion dt {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
  
  .faq-accordion dd {
    padding: 0.25rem 0.85rem !important;
  }
}

/* Mobile S - max 320px */
@media (max-width: 320px) {
  .bottom-cta-banner {
    padding: 0.6rem 0.75rem;
  }
  
  .bottom-cta-text {
    font-size: 0.8rem;
    color: var(--white);
  }
  
  .bottom-cta-button {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    width: 100%;
    max-width: 260px;
  }
  
  .site-footer {
    padding-bottom: 7.5rem;
  }
  
  .scroll-to-top {
    bottom: 4rem;
  }
  .logo-img {
    height: 28px;
  }
  
  .breadcrumbs {
    padding: 0.5rem 0;
  }
  
  .breadcrumbs-container {
    padding: 0 0.5rem;
    font-size: 0.7rem;
  }
  
  .table-wrapper {
    margin: 0.5rem 0;
  }
  
  table {
    min-width: 400px;
  }
  
  section {
    padding: 0.5rem;
  }
  
  h1 {
    font-size: 1.25rem;
  }
  
  h2 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.9rem;
  }
  
  table {
    font-size: 0.75rem;
  }
  
  table th,
  table td {
    padding: 0.3rem;
  }
  
  .demo-game-iframe {
    height: 250px;
  }
  
  .demo-play-button,
  .demo-try-button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .footer-logo-img {
    height: 28px;
  }
  
  .footer-badge-img {
    max-height: 25px;
    max-width: 70px;
  }
  
  .error-404 > div:first-child {
    font-size: 2.5rem;
  }
  
  .error-404 p:first-of-type {
    font-size: 0.95rem;
  }
  
  .error-404 p {
    font-size: 0.85rem;
  }
  
  .faq-question {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .faq-answer {
    padding: 0.6rem 0.75rem !important;
    font-size: 0.85rem;
  }
  
  .faq-accordion dt {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .faq-accordion dd {
    padding: 0.2rem 0.75rem !important;
    font-size: 0.85rem;
  }
}
