/* style/casino-games.css */

/* Base Styles & Typography */
.page-casino-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-casino-games .page-casino-games__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-casino-games .page-casino-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-casino-games .page-casino-games__hero-title {
  font-size: 3.5em;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-casino-games .page-casino-games__hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-casino-games .page-casino-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.page-casino-games .highlight {
  color: #ffc107;
}

/* Buttons */
.page-casino-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-casino-games__button--primary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-casino-games__button--primary:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.page-casino-games__button--secondary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-casino-games__button--secondary:hover {
  background-color: #e0a800;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
  transform: translateY(-2px);
}

.page-casino-games__button--link {
  background-color: transparent;
  color: #007bff;
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 2px solid #007bff;
}

.page-casino-games__button--link:hover {
  color: #0056b3;
  border-color: #0056b3;
  transform: translateY(0);
}

/* Hero Section */
.page-casino-games__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 100px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino-games__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  animation: float1 10s infinite ease-in-out;
}

.page-casino-games__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 193, 7, 0.15);
  border-radius: 50%;
  animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}

@keyframes float2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
  100% { transform: translate(0, 0); }
}

.page-casino-games__hero .page-casino-games__button {
  margin-top: 20px;
  min-width: 250px;
}

/* Introduction Section */
.page-casino-games__introduction {
  padding: 60px 0;
  background-color: #fff;
}

.page-casino-games__introduction .page-casino-games__image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-casino-games__introduction .page-casino-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.page-casino-games__categories {
  padding: 80px 0;
  background-color: #f0f4f8;
}

.page-casino-games__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-games__category-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-games__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-casino-games__category-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-casino-games__category-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-casino-games__category-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  text-align: left;
}

.page-casino-games__category-item .page-casino-games__button {
  width: 80%;
}

/* Why Choose Section */
.page-casino-games__why-choose {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-casino-games__feature-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-casino-games__feature-item:hover {
  border-color: #007bff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
}

.page-casino-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 123, 255, 0.2));
}

.page-casino-games__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Responsible Gaming Section */
.page-casino-games__responsible-gaming {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

.page-casino-games__responsible-gaming .page-casino-games__button {
  margin-top: 30px;
  min-width: 280px;
}

/* Detail Pages Section */
.page-casino-games__detail-pages {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-casino-games__detail-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-games__detail-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-casino-games__detail-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-casino-games__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-casino-games__detail-title a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-casino-games__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Call to Action Section */
.page-casino-games__cta {
  background: linear-gradient(45deg, #007bff, #ffc107);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-casino-games__cta .page-casino-games__section-title {
  color: #fff;
  margin-bottom: 25px;
}

.page-casino-games__cta .page-casino-games__section-title::after {
  background-color: #fff;
}

.page-casino-games__cta .page-casino-games__paragraph {
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-casino-games__cta .page-casino-games__button {
  margin: 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-casino-games .page-casino-games__hero-title {
    font-size: 2.8em;
  }
  .page-casino-games .page-casino-games__section-title {
    font-size: 2em;
  }
  .page-casino-games__category-grid,
  .page-casino-games__feature-grid,
  .page-casino-games__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-casino-games__cta .page-casino-games__button {
    margin: 10px auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-casino-games__hero {
    padding: 80px 0;
  }
  .page-casino-games .page-casino-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-games .page-casino-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-casino-games .page-casino-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-games__category-item,
  .page-casino-games__feature-item,
  .page-casino-games__detail-item {
    padding: 20px;
  }
  .page-casino-games__category-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .page-casino-games__hero {
    padding: 60px 0;
  }
  .page-casino-games .page-casino-games__hero-title {
    font-size: 1.8em;
  }
  .page-casino-games .page-casino-games__section-title {
    font-size: 1.5em;
  }
  .page-casino-games__category-grid,
  .page-casino-games__feature-grid,
  .page-casino-games__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-games__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 90%;
  }
  .page-casino-games__cta .page-casino-games__button {
    margin: 10px auto;
  }
}