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

.page-casino__section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__section--dark {
  background-color: #1a1a1a;
  color: #f5f5f5;
}

.page-casino__section--gradient {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
}

.page-casino__section-title {
  font-size: 2.8em;
  color: #FF4500;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-casino__section--dark .page-casino__section-title,
.page-casino__section--gradient .page-casino__section-title {
  color: #fff;
}

.page-casino__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #666;
}

.page-casino__section--dark .page-casino__section-description,
.page-casino__section--gradient .page-casino__section-description {
  color: #eee;
}

.page-casino__hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(45deg, #FF4500, #FF6347);
  color: #fff;
  text-align: left;
}

.page-casino__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-casino__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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__hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-casino__btn--primary {
  background-color: #1E90FF;
  color: #fff;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.page-casino__btn--primary:hover {
  background-color: #007bff;
  transform: translateY(-3px);
}

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

.page-casino__btn--secondary:hover {
  background-color: #FF4500;
  color: #fff;
  transform: translateY(-3px);
}

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

.page-casino__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

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

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

.page-casino__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

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

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

.page-casino__feature-description a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__feature-description a:hover {
  text-decoration: underline;
}

.page-casino__games-section .page-casino__section-title {
  color: #FF4500;
}

.page-casino__game-category {
  margin-bottom: 60px;
}

.page-casino__game-category-title {
  font-size: 2.2em;
  color: #1E90FF;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-casino__category-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

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

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

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

.page-casino__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-casino__game-name {
  font-size: 1.5em;
  color: #FF4500;
  margin: 15px 10px 10px;
  font-weight: bold;
}

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

.page-casino__game-item .page-casino__btn {
  margin-bottom: 20px;
}

.page-casino__category-footer {
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

.page-casino__category-footer a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__category-footer a:hover {
  text-decoration: underline;
}

.page-casino__download-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 80px 20px;
  background-color: #1a1a1a;
  color: #fff;
}

.page-casino__download-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-casino__download-title {
  font-size: 3em;
  color: #FF4500;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino__download-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-casino__download-description a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__download-description a:hover {
  text-decoration: underline;
}

.page-casino__download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-casino__download-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-casino__download-note {
  margin-top: 20px;
  font-size: 0.95em;
  color: #bbb;
}

.page-casino__download-note a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__download-note a:hover {
  text-decoration: underline;
}

.page-casino__promotions-section .page-casino__section-title {
  color: #FF4500;
}

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

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

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

.page-casino__promo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-casino__promo-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-casino__promo-description a {
  color: #FF4500;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__promo-description a:hover {
  text-decoration: underline;
}

.page-casino__promo-footer {
  margin-top: 50px;
  font-size: 1.1em;
  color: #555;
}

.page-casino__promo-footer a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__promo-footer a:hover {
  text-decoration: underline;
}

.page-casino__security-support-section .page-casino__section-title {
  color: #fff;
}

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

.page-casino__info-item {
  background-color: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-casino__info-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

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

.page-casino__info-description {
  font-size: 1em;
  color: #ccc;
}

.page-casino__info-description a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__info-description a:hover {
  text-decoration: underline;
}

.page-casino__contact-cta {
  margin-top: 60px;
}

.page-casino__contact-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #f5f5f5;
}

.page-casino__faq-section .page-casino__section-title {
  color: #FF4500;
}

.page-casino__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-casino__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-casino__faq-question {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-casino__faq-answer {
  font-size: 1em;
  color: #444;
}

.page-casino__faq-answer a {
  color: #FF4500;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__faq-answer a:hover {
  text-decoration: underline;
}

.page-casino__final-cta-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-casino__final-cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #eee;
}

.page-casino__final-cta-description a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.page-casino__final-cta-description a:hover {
  color: #FFD700; /* Gold for emphasis */
}

.page-casino__final-cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-casino__hero-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-casino__hero-content,
  .page-casino__hero-image-wrapper {
    max-width: 100%;
  }

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

  .page-casino__download-cta {
    flex-direction: column;
  }

  .page-casino__download-content {
    text-align: center;
  }

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

  .page-casino__hero-cta,
  .page-casino__download-buttons,
  .page-casino__final-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-casino__section-title {
    font-size: 2.2em;
  }

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

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

  .page-casino__game-category-title {
    font-size: 1.8em;
  }

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

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

  .page-casino__final-cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-casino__section {
    padding: 40px 15px;
  }

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

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

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

  .page-casino__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-casino__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-casino__feature-title,
  .page-casino__promo-title,
  .page-casino__info-title {
    font-size: 1.5em;
  }

  .page-casino__game-name,
  .page-casino__faq-question {
    font-size: 1.3em;
  }

  .page-casino__download-title {
    font-size: 1.8em;
  }

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

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

  .page-casino__hero-cta,
  .page-casino__download-buttons,
  .page-casino__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}