.page-casino {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-casino__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 60px;
  background-color: #0A1931;
}

.page-casino__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-casino__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-casino__hero-content {
  position: relative;
  z-index: 10;
  padding: 30px;
  margin-top: -80px; /* Overlap with image for integrated look */
  background: rgba(10, 25, 49, 0.9);
  border-radius: 15px;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-casino__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-casino__button--primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-casino__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-casino__button--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-casino__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-casino__button--small {
  padding: 10px 25px;
  font-size: 0.95em;
  border-radius: 30px;
}

.page-casino__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-casino__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-casino__games-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

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

.page-casino__game-card {
  background-color: rgba(10, 25, 49, 0.8);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-casino__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-casino__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-casino__game-card-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino__game-card-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-casino__game-card-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-casino__promotions-section,
.page-casino__security-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 100px auto;
  padding: 40px 20px;
  background-color: rgba(10, 25, 49, 0.7);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  gap: 50px;
}

.page-casino__promotions-content,
.page-casino__security-content {
  flex: 1;
  max-width: 600px;
}

.page-casino__promotions-image,
.page-casino__security-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-casino__security-section {
  flex-direction: row-reverse; /* Reverse order for security section */
}

.page-casino__cta-section {
  background: linear-gradient(135deg, #0A1931 0%, #000000 100%);
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
  border-top: 3px solid #FFD700;
}

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

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__promotions-section,
  .page-casino__security-section {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .page-casino__promotions-content,
  .page-casino__security-content {
    max-width: 100%;
  }
  .page-casino__promotions-image,
  .page-casino__security-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-casino {
    padding-top: var(--header-offset, 80px);
  }
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-casino__hero-content {
    margin-top: -50px;
    padding: 20px;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__section-description {
    font-size: 0.95em;
  }
  .page-casino__game-categories {
    grid-template-columns: 1fr;
  }
  .page-casino__promotions-image,
  .page-casino__security-image,
  .page-casino__hero-image,
  .page-casino__game-card-image {
    max-width: 100%;
    height: auto;
  }
  .page-casino__promotions-section,
  .page-casino__security-section {
    padding: 30px 15px;
  }
  .page-casino__cta-section {
    padding: 60px 15px;
  }
  .page-casino__game-card-image {
    height: 200px; /* Ensure minimum height for card images */
  }
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__section-title {
    font-size: 1.5em;
  }
  .page-casino__hero-content {
    margin-top: -30px;
  }
}