/* 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 15px;
}

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

.page-casino__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

/* Hero Section */
.page-casino__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #FFC107 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-casino__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:casino_hero_bg]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 1;
}

.page-casino__hero-section .page-casino__container {
  position: relative;
  z-index: 2;
}

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

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

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

.page-casino__btn--primary {
  background-color: #FFC107;
  color: #000000;
  border: 2px solid #FFC107;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

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

.page-casino__btn--secondary {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
}

.page-casino__btn--secondary:hover {
  background-color: #007BFF;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Why Choose Section */
.page-casino__why-choose {
  background-color: #ffffff;
}

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

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

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

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

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

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

/* How To Join Section */
.page-casino__how-to-join {
  background-color: #f0f4f8;
}

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

.page-casino__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  border-bottom: 5px solid #FFC107;
}

.page-casino__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #007BFF;
  color: #ffffff;
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  margin: -60px auto 20px auto;
  border: 4px solid #f0f4f8;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-casino__step-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

/* Popular Games Section */
.page-casino__popular-games {
  background-color: #ffffff;
}

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

.page-casino__game-card {
  background-color: #fefefe;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-casino__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-casino__game-title {
  font-size: 1.8em;
  color: #007BFF;
  padding: 20px 25px 10px;
  font-weight: bold;
}

.page-casino__game-description {
  font-size: 1em;
  color: #666;
  padding: 0 25px 25px;
}

/* Tips Section */
.page-casino__tips {
  background-color: #f0f4f8;
}

.page-casino__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-casino__list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
  border-left: 5px solid #FFC107;
}

.page-casino__list li strong {
  color: #007BFF;
}

/* Support Section */
.page-casino__support {
  background-color: #ffffff;
  text-align: center;
}

.page-casino__contact-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 40px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.page-casino__contact-list li {
  font-size: 1.1em;
  color: #555;
  background-color: #f8f9fa;
  padding: 15px 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-casino__contact-list li strong {
  color: #007BFF;
}

/* Conclusion Section */
.page-casino__conclusion {
  background-color: #007BFF;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

.page-casino__conclusion .page-casino__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__grid-3, .page-casino__steps-grid, .page-casino__grid-2 {
    grid-template-columns: 1fr;
  }
  .page-casino__contact-list {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__step-number {
    margin-top: -30px;
  }
  .page-casino__feature-item, .page-casino__step-item, .page-casino__game-card {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: 2.5em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__btn {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
  }
  .page-casino__section {
    padding: 40px 0;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__feature-title, .page-casino__step-title, .page-casino__game-title {
    font-size: 1.4em;
  }
  .page-casino__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-top: -25px;
  }
  .page-casino__game-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-casino__feature-item, .page-casino__step-item, .page-casino__game-card {
    padding: 20px;
  }
  .page-casino__list li {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-casino__contact-list li {
    font-size: 1em;
    padding: 10px 15px;
  }
}