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

.page-casino__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #8B0000);
}

.page-casino__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-casino__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  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: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-casino__btn--primary:hover {
  background-color: #e6c200;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-casino__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-casino__btn--secondary:hover {
  background-color: #6a0000;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

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

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

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

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

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

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

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

.page-casino__advantage-description {
  color: #666;
}

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

.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: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-casino__game-card h3,
.page-casino__game-card p,
.page-casino__game-card a {
  padding: 0 25px;
}

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

.page-casino__game-description {
  color: #666;
  margin-bottom: 20px;
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.page-casino__btn--small:hover {
  background-color: #e6c200;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.page-casino__security {
  background-color: #f0f0f0;
}

.page-casino__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-casino__security-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__security-list {
  flex: 1 1 400px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-casino__security-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  display: flex;
  align-items: center;
}

.page-casino__icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #FFD700;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.page-casino__icon-check::before {
  content: '✔';
  color: #8B0000;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

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

.page-casino__promo-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.page-casino__cta-download {
  background-color: #f0f0f0;
}

.page-casino__download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  justify-content: center;
}

.page-casino__download-image {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-casino__download-actions {
  flex: 1 1 300px;
  max-width: 500px;
}

.page-casino__download-actions p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

.page-casino__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-casino__detail-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-casino__detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-casino__detail-title a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__detail-title a:hover {
  color: #FFD700;
}

.page-casino__detail-description {
  color: #666;
  margin-bottom: 20px;
}

.page-casino__final-cta {
  background-color: #8B0000;
  color: #fff;
  padding: 80px 20px;
}

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

.page-casino__final-cta .page-casino__section-intro {
  color: rgba(255, 255, 255, 0.9);
}

.page-casino__btn--hero {
  background-color: #FFD700;
  color: #8B0000;
  font-size: 1.3em;
  padding: 18px 40px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-casino__btn--hero:hover {
  background-color: #e6c200;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 3em;
  }
  .page-casino__hero-description {
    font-size: 1.2em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__security-content,
  .page-casino__download-content {
    flex-direction: column;
    text-align: center;
  }
  .page-casino__security-image,
  .page-casino__download-image {
    max-width: 100%;
  }
  .page-casino__security-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-casino__hero {
    min-height: 500px;
    padding: 60px 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__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-casino__section {
    padding: 40px 15px;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-intro {
    font-size: 0.95em;
  }
  .page-casino__grid,
  .page-casino__game-grid,
  .page-casino__promo-grid,
  .page-casino__detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 0.9em;
  }
  .page-casino__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__advantage-title,
  .page-casino__game-title,
  .page-casino__promo-title,
  .page-casino__detail-title {
    font-size: 1.2em;
  }
}