.page-casino {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-casino__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  background-color: #F4F7FB; /* Background */
  position: relative;
  overflow: hidden;
}

.page-casino__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-casino__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.15em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.page-casino__btn-primary,
.page-casino__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.page-casino__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-casino__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-casino__btn-secondary {
  background: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-casino__btn-secondary:hover {
  background: #F4F7FB; /* Background */
  color: #2F6BFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-casino__dark-section {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-casino__dark-section h2,
.page-casino__dark-section p {
  color: #ffffff;
}

.page-casino__intro-section {
  padding: 60px 0;
}

.page-casino__intro-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-casino__intro-text {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-casino__games-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-casino__games-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-casino__games-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
}

.page-casino__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-casino__game-tile {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #1F2D3D; /* Text Main */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1/1; /* Ensure square aspect ratio */
}

.page-casino__game-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-casino__game-image {
  width: 100%;
  height: 70%; /* Image takes 70% of tile height */
  object-fit: cover;
  display: block;
}

.page-casino__game-name {
  font-size: 1.3em;
  font-weight: 600;
  padding: 10px 15px 5px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-casino__game-category {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 15px;
}

.page-casino__promotions-section {
  padding: 60px 0;
}

.page-casino__promotions-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-casino__promotions-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-casino__promotions-text {
  flex: 1;
}

.page-casino__promotions-text p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-casino__promotions-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-casino__promotions-list li {
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #ffffff;
}

.page-casino__promotions-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #A5C4FF; /* Glow */
}

.page-casino__promotions-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-casino__promotions-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-casino__promotions-cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-casino__security-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-casino__security-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-casino__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-casino__security-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-casino__security-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__security-text {
  flex: 1;
}

.page-casino__security-text p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-casino__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-casino__security-list li {
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #1F2D3D; /* Text Main */
}

.page-casino__security-list li::before {
  content: '🔒';
  position: absolute;
  left: 0;
  color: #2F6BFF; /* Main Color */
}

.page-casino__mobile-section {
  padding: 60px 0;
}

.page-casino__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-casino__mobile-text {
  flex: 1;
}

.page-casino__mobile-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-casino__mobile-description {
  font-size: 1.05em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-casino__mobile-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-casino__mobile-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-casino__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-casino__faq-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Custom Color_1776249996415 */
}

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

.page-casino__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #F8FBFF; /* Lighter shade of background */
  border-bottom: 1px solid #D6E2FF;
  list-style: none;
}

.page-casino__faq-question::-webkit-details-marker {
  display: none;
}

.page-casino__faq-question::marker {
  display: none;
}

.page-casino__faq-qtext {
  flex-grow: 1;
}

.page-casino__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 25px;
  text-align: center;
  color: #2F6BFF;
}

.page-casino__faq-item[open] .page-casino__faq-question {
  background-color: #EBF2FF;
  border-bottom: 1px solid #2F6BFF;
}

.page-casino__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #333333;
  line-height: 1.7;
  background-color: #FFFFFF; /* Card BG */
}

.page-casino__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-casino__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-casino__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General image responsiveness */
.page-casino img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-casino__container {
    padding: 15px;
  }

  .page-casino__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 30px;
  }

  .page-casino__hero-image-wrapper {
    max-height: 300px;
  }

  .page-casino__hero-image {
    object-fit: contain; /* Ensure full image is visible, no cropping */
    width: 100%;
    height: auto;
    max-height: 300px; /* Constrain height for mobile */
  }

  .page-casino__hero-title {
    font-size: 2em;
  }

  .page-casino__hero-description {
    font-size: 1em;
  }

  .page-casino__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Max width for stacked buttons */
    margin-left: auto;
    margin-right: auto;
  }

  .page-casino__btn-primary,
  .page-casino__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-casino__intro-title,
  .page-casino__games-title,
  .page-casino__promotions-title,
  .page-casino__security-title,
  .page-casino__mobile-title,
  .page-casino__faq-title,
  .page-casino__cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-casino__intro-text,
  .page-casino__games-description,
  .page-casino__promotions-text p,
  .page-casino__promotions-list li,
  .page-casino__security-text p,
  .page-casino__security-list li,
  .page-casino__mobile-description,
  .page-casino__faq-answer p,
  .page-casino__cta-description {
    font-size: 0.95em;
  }

  .page-casino__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 2 columns on mobile */
    gap: 15px;
  }

  .page-casino__game-tile {
    aspect-ratio: 1/1;
    height: auto;
  }

  .page-casino__promotions-content,
  .page-casino__security-content,
  .page-casino__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-casino__promotions-image-wrapper,
  .page-casino__security-image-wrapper,
  .page-casino__mobile-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-casino__promotions-cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-casino__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-casino__faq-answer {
    padding: 15px 20px;
  }

  .page-casino__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  /* General image and container responsiveness */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-casino__section,
  .page-casino__card,
  .page-casino__container,
  .page-casino__game-tile,
  .page-casino__hero-content,
  .page-casino__intro-section,
  .page-casino__games-section,
  .page-casino__promotions-section,
  .page-casino__security-section,
  .page-casino__mobile-section,
  .page-casino__faq-section,
  .page-casino__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}