.page-casino {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333333;
  background-color: #ffffff;
}

.page-casino__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #017439 0%, #004d26 100%); /* Darker gradient for hero */
  color: #ffffff;
}

.page-casino__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.page-casino__hero-image {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-casino__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__hero-image img:hover {
  transform: scale(1.03);
}

.page-casino__hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-casino__hero-title {
  font-size: 3.4em;
  margin-bottom: 25px;
  color: #FFFF00; /* Custom font color for login/register */
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.35em;
  margin-bottom: 40px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-casino__cta-button {
  display: inline-block;
  padding: 20px 50px;
  background: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-casino__cta-button:hover {
  background: #a30606;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.page-casino__section-title {
  font-size: 2.8em;
  color: #017439;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.3;
}

.page-casino__section-title--white {
  color: #ffffff;
}

.page-casino__text-block {
  font-size: 1.15em;
  margin-bottom: 25px;
  text-align: justify;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-casino__text-block--white {
  color: #e0e0e0;
}

.page-casino__introduction-section {
  background-color: #ffffff;
  color: #333333;
}

.page-casino__games-section {
  background-color: #017439;
  color: #ffffff;
}

.page-casino__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.page-casino__game-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.page-casino__game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__game-title {
  font-size: 1.6em;
  padding: 20px 25px 12px;
  margin: 0;
  color: #017439;
  font-weight: 600;
}

.page-casino__game-link {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__game-link:hover {
  color: #004d26;
  text-decoration: underline;
}

.page-casino__game-description {
  font-size: 1.05em;
  padding: 0 25px 20px;
  flex-grow: 1;
  color: #555555;
}

.page-casino__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 25px 25px;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.page-casino__btn-secondary:hover {
  background: #f0f0f0;
  color: #004d26;
  border-color: #004d26;
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-casino__promotions-section {
  background-color: #f5f5f5;
  color: #333333;
}

.page-casino__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.page-casino__promo-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.page-casino__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__promo-title {
  font-size: 1.5em;
  padding: 20px 25px 12px;
  margin: 0;
  color: #017439;
  font-weight: 600;
}

.page-casino__promo-link {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__promo-link:hover {
  color: #004d26;
  text-decoration: underline;
}

.page-casino__promo-description {
  font-size: 1.05em;
  padding: 0 25px 20px;
  flex-grow: 1;
  color: #555555;
}

.page-casino__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: #017439;
  color: #ffffff;
  border: 2px solid #017439;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 25px 25px;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

.page-casino__btn-primary:hover {
  background: #004d26;
  border-color: #004d26;
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-casino__guide-section {
  background-color: #017439;
  color: #ffffff;
}

.page-casino__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.page-casino__guide-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.page-casino__guide-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
  font-weight: 600;
}

.page-casino__guide-link {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__guide-link:hover {
  color: #004d26;
  text-decoration: underline;
}

.page-casino__guide-description {
  font-size: 1.05em;
  color: #555555;
}

.page-casino__button-group {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.page-casino__safety-support-section {
  background-color: #ffffff;
  color: #333333;
}

.page-casino__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.page-casino__feature-card {
  text-align: center;
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-casino__feature-card img {
  
  
  object-fit: contain;
  margin-bottom: 25px;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__feature-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 18px;
  font-weight: 600;
}

.page-casino__feature-description {
  font-size: 1.05em;
  color: #555555;
}

.page-casino__mobile-app-section {
  background-color: #017439;
  color: #ffffff;
}

.page-casino__mobile-app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.page-casino__mobile-app-content {
  flex: 1;
  max-width: 60%;
}

.page-casino__mobile-app-content .page-casino__section-title {
  text-align: left;
  color: #ffffff;
}

.page-casino__mobile-app-content .page-casino__text-block {
  text-align: left;
  color: #e0e0e0;
}

.page-casino__app-features {
  list-style-type: '✅ ';
  margin-left: 25px;
  margin-bottom: 35px;
  font-size: 1.1em;
  color: #f0f0f0;
  padding-left: 10px;
}

.page-casino__app-features li {
  margin-bottom: 10px;
}

.page-casino__cta-button--app {
  background: #C30808;
  color: #FFFF00;
  padding: 16px 40px;
  font-size: 1.15em;
}

.page-casino__mobile-app-image {
  flex: 0 0 380px;
  max-width: 35%;
  text-align: center;
}

.page-casino__mobile-app-image img {
  width: 100%;
  height: auto;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-casino__faq-section {
  background-color: #f9f9f9;
  color: #333333;
}

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

.page-casino__faq-item {
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-casino__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-casino__faq-question:active {
  background: #eeeeee;
}

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