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

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

.page-casino__section {
  padding: 60px 0;
  text-align: center;
}

.page-casino__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-casino__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-casino__btn--primary {
  background-color: #007bff;
  color: #fff;
}

.page-casino__btn--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-casino__btn--secondary {
  background-color: #28a745;
  color: #fff;
}

.page-casino__btn--secondary:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
}

.page-casino__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-casino__cta-center {
  margin-top: 40px;
}

/* Hero Section */
.page-casino__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

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

.page-casino__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.page-casino__hero-actions .page-casino__btn {
  margin: 0 10px;
}

/* Why Choose Section */
.page-casino__why-choose .page-casino__section-title {
  color: #007bff;
}

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

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

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

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

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

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

/* Game Types Section */
.page-casino__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.page-casino__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-casino__game-title {
  font-size: 1.4em;
  color: #007bff;
  padding: 20px 20px 10px;
}

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

.page-casino__game-link {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 10px 0;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom */
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.page-casino__game-link:hover {
  background-color: #1e7e34;
}

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

.page-casino__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-casino__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #007bff;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-casino__step-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

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

/* App Download Section */
.page-casino__app-download {
  background-color: #007bff;
  color: #fff;
}

.page-casino__app-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-casino__app-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.page-casino__app-content .page-casino__section-title {
  color: #fff;
  text-align: left;
}

.page-casino__app-content .page-casino__section-description {
  color: #e9ecef;
  text-align: left;
}

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

.page-casino__app-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%2328a745" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.1em;
}

.page-casino__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  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);
}

/* Promotions Section */
.page-casino__promotions .page-casino__section-title {
  color: #007bff;
}

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

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

.page-casino__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-casino__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__promo-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-casino__promo-text {
  font-size: 0.95em;
  color: #666;
}

/* Security Section */
.page-casino__security .page-casino__section-title {
  color: #007bff;
}

.page-casino__security-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-casino__security-list li {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #28a745;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 1.05em;
}

.page-casino__security-list li strong {
  color: #007bff;
}

.page-casino__security-final-text {
  font-size: 1.1em;
  color: #555;
  margin-top: 40px;
}

/* Conclusion Section */
.page-casino__conclusion .page-casino__section-title {
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__app-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .page-casino__app-flex {
    flex-direction: column;
  }
  .page-casino__app-content .page-casino__section-title,
  .page-casino__app-content .page-casino__section-description {
    text-align: center;
  }
  .page-casino__app-benefits {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-actions .page-casino__btn {
    display: block;
    margin: 15px auto;
  }
  .page-casino__features-grid,
  .page-casino__game-grid,
  .page-casino__steps,
  .page-casino__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-casino__section {
    padding: 40px 0;
  }
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__feature-item,
  .page-casino__game-card,
  .page-casino__step-item,
  .page-casino__promo-card {
    padding: 20px;
  }
  .page-casino__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-casino__step-item {
    padding-top: 50px;
  }
  .page-casino__app-benefits li {
    font-size: 1em;
  }
}