/* style/casino.css */
.page-casino {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

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

.page-casino__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-casino__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text for gold button */
  border: 2px solid #FFD700;
}

.page-casino__btn--primary:hover {
  background-color: #F0C000;
  border-color: #F0C000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-casino__btn--secondary {
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text for red button */
  border: 2px solid #8B0000;
}

.page-casino__btn--secondary:hover {
  background-color: #A00000;
  border-color: #A00000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.page-casino__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Hero Section */
.page-casino__hero-section {
  background: linear-gradient(135deg, #8B0000, #4A0000);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  color: #FFF;
}

.page-casino__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0.3;
  animation: page-casino-pulse 15s infinite alternate;
}

@keyframes page-casino-pulse {
  0% { transform: scale(0.8); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

.page-casino__hero-content {
  text-align: left;
  max-width: 600px;
  z-index: 1;
}

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

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-casino__hero-image-wrapper {
  z-index: 1;
}

.page-casino__hero-image {
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Choose Section */
.page-casino__why-choose-section {
  padding: 80px 0;
  background-color: #252525;
}

.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: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-casino__feature-item:hover {
  transform: translateY(-10px);
}

.page-casino__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-casino__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

/* Games Overview Section */
.page-casino__games-overview-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

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

.page-casino__game-card {
  background-color: #252525;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
}

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

.page-casino__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 20px 10px 20px;
}

.page-casino__game-card-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-casino__game-card .page-casino__btn {
  margin: 0 20px 20px 20px;
}

/* Live Experience Section */
.page-casino__live-experience-section {
  padding: 80px 0;
  background-color: #333333;
}

.page-casino__content-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-casino__content-flex:nth-child(even) {
  flex-direction: row-reverse;
}

.page-casino__text-content {
  flex: 1;
}

.page-casino__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-casino__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-casino__feature-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Promotions Section */
.page-casino__promotions-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-casino__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__promo-list li {
  background-color: #252525;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #D0D0D0;
  border-left: 5px solid #FFD700;
}

.page-casino__promo-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-casino__promotions-section .page-casino__btn {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* App Download Section */
.page-casino__app-download-section {
  padding: 80px 0;
  background-color: #252525;
  text-align: center;
}

.page-casino__app-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-casino__btn--app-download {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-casino__btn--app-download:hover {
  background-color: #A00000;
  border-color: #A00000;
}

.page-casino__app-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.page-casino__app-mockup {
  margin-top: 50px;
}

.page-casino__app-mockup-image {
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Security & Support Section */
.page-casino__security-support-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-casino__contact-info {
  margin-top: 40px;
  text-align: center;
}

.page-casino__contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-casino__contact-info ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 400px;
}

.page-casino__contact-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-casino__contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.page-casino__security-support-section .page-casino__btn {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Bug-Bytes Section */
.page-casino__bug-bytes-section {
  padding: 80px 0;
  background-color: #252525;
}

.page-casino__bug-bytes-section p {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  color: #D0D0D0;
}

.page-casino__bug-bytes-section .page-casino__btn {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Section */
.page-casino__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFD700, #8B0000);
  text-align: center;
  color: #FFF;
}

.page-casino__cta-section .page-casino__section-title {
  color: #FFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.page-casino__cta-section .page-casino__section-intro {
  color: #F0F0F0;
}

.page-casino__cta-section .page-casino__btn {
  margin-top: 40px;
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-casino__cta-section .page-casino__btn:hover {
  background-color: #333333;
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-casino__hero-content {
    max-width: 100%;
    text-align: center;
  }

  .page-casino__hero-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .page-casino__hero-title {
    font-size: 2.8em;
  }

  .page-casino__hero-description {
    font-size: 1.1em;
  }

  .page-casino__content-flex {
    flex-direction: column;
  }

  .page-casino__content-flex:nth-child(even) {
    flex-direction: column;
  }

  .page-casino__features-grid,
  .page-casino__game-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-casino__section-title {
    font-size: 2.2em;
  }

  .page-casino__section-intro {
    font-size: 1em;
  }

  .page-casino__feature-title {
    font-size: 1.5em;
  }

  .page-casino__game-card-title {
    font-size: 1.5em;
  }

  .page-casino__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-casino__app-cta {
    flex-direction: column;
    align-items: center;
  }

  .page-casino__btn--app-download {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 2em;
  }

  .page-casino__section-title {
    font-size: 1.8em;
  }

  .page-casino__hero-description {
    font-size: 0.9em;
  }

  .page-casino__feature-item,
  .page-casino__game-card {
    padding: 20px;
  }

  .page-casino__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-casino__btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}