.page-casino {
  color: #ffffff; /* Light text for dark body background #333 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-casino__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-casino__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C, #0a0e14);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

.page-casino__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.page-casino__hero-title {
  font-size: 4em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-casino__hero-description {
  font-size: 1.5em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-casino__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
}

.page-casino__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-casino__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-casino__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-casino__games-section {
  background-color: #1A202C;
  padding: 60px 0;
}

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

.page-casino__category-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-casino__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-casino__card-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-casino__card-title a:hover {
  color: #e6c200;
}

.page-casino__card-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-casino__btn--small {
  padding: 10px 25px;
  font-size: 1em;
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  border-radius: 5px;
}

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

.page-casino__featured-section {
  background-color: #0a0e14;
  padding: 60px 0;
}

.page-casino__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-casino__featured-item {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__featured-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
}

.page-casino__featured-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-casino__item-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-casino__item-title a:hover {
  color: #e6c200;
}

.page-casino__item-text {
  font-size: 1.1em;
  color: #c0c0c0;
  margin-bottom: 30px;
}

.page-casino__btn--play {
  padding: 12px 30px;
  font-size: 1.1em;
  background-color: #FFD700;
  color: #1A202C;
  border: none;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-casino__btn--play:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-casino__why-choose-section {
  background-color: #1A202C;
  padding: 60px 0;
}

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

.page-casino__advantage-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-casino__advantage-item:hover {
  transform: translateY(-5px);
}

.page-casino__advantage-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino__advantage-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-casino__promo-section {
  background: linear-gradient(135deg, #0a0e14, #1A202C);
  padding: 80px 0;
  text-align: center;
}

.page-casino__promo-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 450px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-casino__promo-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-casino__promo-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-casino__responsible-gaming-section {
  background-color: #1A202C;
  padding: 60px 0;
}

.page-casino__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
}

.page-casino__responsible-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__responsible-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.page-casino__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-casino__cta-section {
  background: linear-gradient(135deg, #0a0e14, #1A202C);
  padding: 80px 0;
  text-align: center;
}

.page-casino__cta-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-casino__cta-description {
  font-size: 1.3em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-casino__cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3.5em;
  }
  .page-casino__hero-description {
    font-size: 1.3em;
  }
  .page-casino__section-title {
    font-size: 2.4em;
  }
  .page-casino__featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn {
    min-width: unset;
    width: 100%;
  }
  .page-casino__game-categories {
    grid-template-columns: 1fr;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__promo-title {
    font-size: 2.5em;
  }
  .page-casino__cta-title {
    font-size: 2.8em;
  }
  .page-casino__responsible-content {
    flex-direction: column;
  }
  .page-casino__responsible-image {
    width: 100%;
    max-width: 100%;
  }
  .page-casino__responsible-list {
    width: 100%;
    max-width: 100%;
  }
  .page-casino__advantages-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content image constraint */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
  .page-casino__card-image, .page-casino__featured-image, .page-casino__promo-image, .page-casino__responsible-image {
    min-height: 200px; /* Ensure minimum size is maintained */
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__promo-title {
    font-size: 2em;
  }
  .page-casino__cta-title {
    font-size: 2.2em;
  }
}