/* style/casino.css */

/* Base styles for the page-casino scope */
.page-casino {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-casino__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-casino__heading {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700; /* Gold for main headings */
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-casino__description {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping for buttons */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
}

.page-casino__btn-primary {
  background: #FFD700; /* Gold background */
  color: #1A2B4C; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-casino__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-casino__btn-secondary {
  background: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-casino__btn-secondary:hover {
  background: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared already handles body padding-top */
  margin-top: 0;
  background-color: #1A2B4C;
}

.page-casino__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.page-casino__hero-image {
  width: 100%;
  margin: 0;
}

.page-casino__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure minimum height for hero image */
}

/* Logo Carousel Section */
.page-casino__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #1A2B4C; /* Dark blue background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-casino__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-casino__logo-carousel {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user drag */
}

.page-casino__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-casino__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #0d121f; /* Darker background for logo items */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow clicks on logo items */
}

.page-casino__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-casino__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-casino__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Games Section */
.page-casino__games-section {
  width: 100%;
  padding: 80px 20px;
  background: #0d121f; /* Body background color */
}

.page-casino__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-casino__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-casino__featured-game-area {
  width: 100%;
}

.page-casino__featured-game-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 25px 0;
  color: #FFD700; /* Gold text */
  text-align: left;
}

.page-casino__featured-game {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #1A2B4C; /* Dark blue background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.page-casino__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-casino__featured-game-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.page-casino__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-casino__games-grid-area {
  width: 100%;
}

.page-casino__games-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.page-casino__games-tab {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-casino__games-tab:hover {
  color: #ffffff;
}

.page-casino__games-tab.active {
  color: #FFD700; /* Gold for active tab */
  border-bottom: 3px solid #FFD700;
  margin-bottom: -2px; /* Adjust to sit on the border */
}

.page-casino__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-casino__games-grid.active {
  display: grid;
}

.page-casino__game-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #1A2B4C; /* Dark blue background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-casino__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-casino__game-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.page-casino__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-casino__game-card-title {
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0;
  padding: 0 8px;
  color: #ffffff; /* White text */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Intro Section */
.page-casino__intro-section {
  padding: 80px 20px;
  background: #1A2B4C; /* Dark blue background */
  text-align: center;
}

.page-casino__intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-casino__intro-item {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__intro-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino__intro-item-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700; /* Gold text */
  margin-bottom: 15px;
}

.page-casino__intro-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Quick Access Section */
.page-casino__quick-access-section {
  padding: 80px 20px;
  background: #0d121f; /* Body background color */
  text-align: center;
}

.page-casino__quick-access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.page-casino__quick-link {
  display: inline-block;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino__quick-link:hover {
  background: #FFD700;
  color: #1A2B4C;
  border-color: #FFD700;
  transform: translateY(-2px);
}

/* Core Games Section */
.page-casino__core-games-section {
  padding: 80px 20px;
  background: #1A2B4C; /* Dark blue background */
  text-align: center;
}

.page-casino__game-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.page-casino__game-category-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__game-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__game-category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino__game-category-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__game-category-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 20px;
  background: #0d121f; /* Body background color */
  text-align: center;
}

.page-casino__promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.page-casino__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__promo-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__promo-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 25px;
}

/* Security & Support Section */
.page-casino__security-support-section {
  padding: 80px 20px;
  background: #1A2B4C; /* Dark blue background */
  text-align: center;
}

.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-casino__feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__feature-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino__feature-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 80px 20px;
  background: #0d121f; /* Body background color */
}

.page-casino__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-casino__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2B4C; /* Dark blue background */
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-casino__faq-question:hover {
  background: #2A3B5C;
}

.page-casino__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-casino__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-casino__faq-item.active .page-casino__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X */
}

.page-casino__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

.page-casino__faq-item.active .page-casino__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-casino__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Blog Section */
.page-casino__blog-section {
  padding: 80px 20px;
  background: #1A2B4C; /* Dark blue background */
  text-align: center;
}

.page-casino__blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-casino__blog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-casino__blog-title {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 20px 10px 20px;
  line-height: 1.4;
}

.page-casino__blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__blog-title a:hover {
  color: #ffffff;
}

.page-casino__blog-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  margin: 0 20px 15px 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-casino__blog-date {
  font-size: 14px;
  color: #999999;
  margin: 0 20px 20px 20px;
  display: block;
}

/* Responsive Styles */

/* All images base responsive styles */
.page-casino img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All button base responsive styles */
.page-casino__cta-button,
.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino a[class*="button"],
.page-casino a[class*="btn"],
.page-casino__quick-link {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button containers base responsive styles */
.page-casino__cta-buttons,
.page-casino__button-group,
.page-casino__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .page-casino__heading {
    font-size: 34px;
  }
  .page-casino__description {
    font-size: 17px;
  }
  .page-casino__featured-game-image {
    height: 450px;
  }
  .page-casino__game-card-image {
    height: 160px;
  }
  .page-casino__intro-item img,
  .page-casino__feature-item img {
    height: 220px;
  }
  .page-casino__blog-card img {
    height: 200px;
  }
}

@media (max-width: 1024px) {
  .page-casino__heading {
    font-size: 30px;
  }
  .page-casino__games-layout {
    grid-template-columns: 1fr;
  }
  .page-casino__featured-game-title {
    text-align: center;
    margin-top: 30px;
  }
  .page-casino__games-tabs {
    justify-content: center;
  }
  .page-casino__games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-casino__intro-grid,
  .page-casino__game-categories,
  .page-casino__promo-grid,
  .page-casino__features-grid,
  .page-casino__blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-casino__game-category-card img {
    
  }
  .page-casino__intro-item img,
  .page-casino__feature-item img {
    height: 200px;
  }
  .page-casino__blog-card img {
    
  }
}

@media (max-width: 768px) {
  .page-casino__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-casino__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-casino__container {
    padding: 0 15px;
  }
  .page-casino__hero-section,
  .page-casino__logo-carousel-section,
  .page-casino__games-section,
  .page-casino__intro-section,
  .page-casino__quick-access-section,
  .page-casino__core-games-section,
  .page-casino__promotions-section,
  .page-casino__security-support-section,
  .page-casino__faq-section,
  .page-casino__blog-section {
    padding: 50px 0;
  }

  /* Force responsive images */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* General container padding for mobile */
  .page-casino__container,
  .page-casino__hero-container,
  .page-casino__logo-carousel-container,
  .page-casino__games-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* LOGO carousel items - MUST remain 80x80px */
  .page-casino__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    min-width: 80px !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .page-casino__logo-carousel {
    gap: 15px;
  }

  /* Hero image specific */
  .page-casino__hero-image img {
    min-height: 250px;
  }

  .page-casino__featured-game-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .page-casino__featured-game-image {
    height: 300px;
  }
  .page-casino__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  .page-casino__games-tab {
    font-size: 18px;
    padding: 8px 0;
  }
  .page-casino__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .page-casino__game-card-image {
    height: 120px;
  }
  .page-casino__game-card-title {
    font-size: 13px;
    margin: 8px 5px;
  }

  .page-casino__intro-grid,
  .page-casino__game-categories,
  .page-casino__promo-grid,
  .page-casino__features-grid,
  .page-casino__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-casino__intro-item img,
  .page-casino__feature-item img,
  .page-casino__game-category-card img,
  .page-casino__blog-card img {
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-casino__intro-item-title,
  .page-casino__game-category-title,
  .page-casino__promo-title,
  .page-casino__feature-item h3,
  .page-casino__blog-title {
    font-size: 20px;
  }
  .page-casino__intro-item p,
  .page-casino__game-category-card p,
  .page-casino__promo-card p,
  .page-casino__feature-item p,
  .page-casino__blog-excerpt {
    font-size: 14px;
  }

  .page-casino__quick-access-links {
    flex-direction: column;
    gap: 10px;
  }
  .page-casino__quick-link {
    padding: 10px 20px;
    font-size: 15px;
  }

  /* FAQ specific mobile styles */
  .page-casino__faq-list {
    margin-top: 30px;
  }
  .page-casino__faq-question {
    padding: 15px 20px;
  }
  .page-casino__faq-question h3 {
    font-size: 16px;
  }
  .page-casino__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-casino__faq-answer {
    padding: 0 20px;
  }
  .page-casino__faq-item.active .page-casino__faq-answer {
    padding: 15px 20px !important;
  }
  .page-casino__faq-answer p {
    font-size: 15px;
  }

  /* Force responsive buttons */
  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino a[class*="button"],
  .page-casino a[class*="btn"],
  .page-casino__quick-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-casino__btn-primary,
  .page-casino__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-casino__cta-buttons,
  .page-casino__button-group,
  .page-casino__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-casino__intro-section .page-casino__btn-primary,
  .page-casino__security-support-section .page-casino__btn-primary,
  .page-casino__blog-section .page-casino__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .page-casino__game-category-card .page-casino__btn-secondary {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-casino__heading {
    font-size: 24px;
  }
  .page-casino__description {
    font-size: 15px;
  }
  .page-casino__hero-image img {
    min-height: 200px;
  }
  .page-casino__featured-game-title {
    font-size: 22px;
  }
  .page-casino__featured-game-image {
    height: 250px;
  }
  .page-casino__games-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__game-card-image {
    height: 150px;
  }
  .page-casino__game-card-title {
    font-size: 14px;
  }
  .page-casino__intro-item img,
  .page-casino__feature-item img,
  .page-casino__game-category-card img,
  .page-casino__blog-card img {
    
  }
  .page-casino__quick-link {
    font-size: 14px;
  }
  .page-casino__faq-question h3 {
    font-size: 15px;
  }
  .page-casino__faq-answer p {
    font-size: 14px;
  }
  .page-casino__blog-title {
    font-size: 18px;
  }
  .page-casino__blog-excerpt {
    font-size: 13px;
  }
}