/* style/casino.css */
.page-casino {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-casino__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

@media (min-width: 768px) {
  .page-casino__hero {
    text-align: left;
    justify-content: space-between;
    padding: 100px 0;
  }
  .page-casino__hero-content {
    max-width: 50%;
  }
}

.page-casino__hero-content {
  z-index: 1;
  position: relative;
  padding: 0 20px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
  line-height: 1.8;
}

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

@media (min-width: 768px) {
  .page-casino__hero-actions {
    justify-content: flex-start;
  }
}

.page-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent;
}

.page-casino__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-casino__btn--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-casino__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-casino__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-casino__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-casino__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-casino__about, .page-casino__games, .page-casino__mobile-app, .page-casino__guide, .page-casino__faq, .page-casino__responsible-gambling, .page-casino__conclusion {
  padding: 80px 0;
}

.page-casino__about {
  background-color: #fff;
}

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

.page-casino__feature-item {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-casino__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(139, 0, 0, 0.3));
}

.page-casino__feature-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__feature-description {
  font-size: 1em;
  color: #666;
}

.page-casino__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-casino__games {
  background-color: #f2f2f2;
}

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

.page-casino__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-casino__game-card-title {
  font-size: 1.4em;
  color: #8B0000;
  margin: 20px 15px 10px 15px;
  font-weight: bold;
}

.page-casino__game-card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px 15px;
}

.page-casino__game-card .page-casino__btn--small {
  margin-bottom: 20px;
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-casino__game-card .page-casino__btn--small:hover {
  background-color: #6a0000;
  color: #fff;
  border-color: #6a0000;
}

.page-casino__mobile-app {
  background-color: #8B0000;
  color: #fff;
}

.page-casino__mobile-app .page-casino__section-title {
  color: #FFD700;
}

.page-casino__mobile-app .page-casino__section-intro {
  color: #eee;
}

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

.page-casino__app-text {
  flex: 1;
  min-width: 300px;
}

.page-casino__app-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #eee;
}

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

.page-casino__app-text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #fff;
}

.page-casino__app-text ul li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(1.2);
}

.page-casino__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-casino__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-casino__guide {
  background-color: #fff;
}

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

.page-casino__step-item {
  background-color: #fefefe;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FFD700;
}

.page-casino__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__step-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino__step-description {
  font-size: 0.95em;
  color: #666;
}

.page-casino__faq {
  background-color: #f2f2f2;
}

.page-casino__faq-items {
  margin-top: 40px;
}

.page-casino__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-casino__faq-question {
  font-size: 1.2em;
  color: #8B0000;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-casino__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-casino__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-casino__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #555;
}

.page-casino__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 20px;
}

.page-casino__responsible-gambling {
  background-color: #fff;
  border-top: 1px solid #eee;
}

.page-casino__responsible-gambling .page-casino__section-intro {
  margin-bottom: 30px;
}

.page-casino__responsible-gambling p {
  font-size: 1.05em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-casino__conclusion {
  background-color: #8B0000;
  color: #fff;
  text-align: center;
}

.page-casino__conclusion .page-casino__section-title {
  color: #FFD700;
}

.page-casino__conclusion .page-casino__section-intro {
  color: #eee;
  margin-bottom: 40px;
}

.text-highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-casino__hero {
    padding: 60px 0;
    flex-direction: column-reverse;
  }

  .page-casino__hero-content {
    max-width: 100%;
    padding: 0 15px;
  }

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

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

  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__hero-image-wrapper {
    padding: 0;
  }

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

  .page-casino__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-casino__about, .page-casino__games, .page-casino__mobile-app, .page-casino__guide, .page-casino__faq, .page-casino__responsible-gambling, .page-casino__conclusion {
    padding: 50px 0;
  }

  .page-casino__app-content {
    flex-direction: column;
  }

  .page-casino__app-text, .page-casino__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-casino__app-image {
    max-width: 90%;
  }

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

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