/* style/casino.css */

/* Variables from custom color palette */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --background-dark: #08160F;
  --card-background: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--background-dark); /* Main background */
}

.page-casino__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-casino__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-casino__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.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;
  filter: brightness(0.6);
}

.page-casino__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-main);
  max-width: 900px;
  padding: 20px;
}

.page-casino__main-title {
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.7);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-casino__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

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

/* Buttons */
.page-casino__btn-primary,
.page-casino__btn-secondary,
.page-casino__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-casino__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-casino__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-casino__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-casino__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--background-dark);
  transform: translateY(-3px);
}

.page-casino__btn-tertiary {
  background: var(--deep-green);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-casino__btn-tertiary:hover {
  background: var(--primary-color);
}

/* Games Showcase Section */
.page-casino__games-showcase {
  padding: 60px 20px;
  background-color: var(--background-dark);
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-casino__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__game-card {
  background-color: var(--card-background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-casino__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

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

.page-casino__card-title {
  font-size: 1.4em;
  color: var(--gold-color);
  padding: 15px 20px 5px;
  text-align: center;
}

.page-casino__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-casino__card-title a:hover {
  text-decoration: underline;
}

.page-casino__card-text {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 0 20px 20px;
  text-align: center;
}

/* Promotions Section */
.page-casino__promotions {
  padding: 60px 20px;
  background-color: var(--card-background);
}

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

.page-casino__promo-item {
  background-color: var(--background-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-casino__promo-title {
  font-size: 1.3em;
  color: var(--gold-color);
  padding: 15px 20px 5px;
  text-align: center;
}

.page-casino__promo-text {
  font-size: 0.9em;
  color: var(--text-secondary);
  padding: 0 20px 15px;
  flex-grow: 1;
}

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

/* Why Choose Us Section */
.page-casino__why-choose-us {
  padding: 60px 20px;
  background-color: var(--background-dark);
  border-top: 1px solid var(--divider-color);
}

.page-casino__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino__flex-container--reverse {
  flex-direction: row-reverse;
}

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

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

.page-casino__feature-list li {
  color: var(--text-main);
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-casino__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--secondary-color);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.page-casino__icon--security {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.1-3.23 7.74-7 8.94V12H5V6.3l7-3.11v8.79z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.1-3.23 7.74-7 8.94V12H5V6.3l7-3.11v8.79z"/></svg>');
}

.page-casino__icon--transaction {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V8h16v10zm-12-6h4v-2H8v2zm8-2H12v2h4v-2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4V8h16v10zm-12-6h4v-2H8v2zm8-2H12v2h4v-2z"/></svg>');
}

.page-casino__icon--support {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 16h-2v-2h2v2zm0-4h-2V7h2v7z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 16h-2v-2h2v2zm0-4h-2V7h2v7z"/></svg>');
}

.page-casino__icon--games {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm-1-7h2v2h-2v-2zm-2 0h2v2H9v-2zm4 0h2v2h-2v-2zm2 0h2v2h-2v-2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm-1-7h2v2h-2v-2zm-2 0h2v2H9v-2zm4 0h2v2h-2v-2zm2 0h2v2h-2v-2z"/></svg>');
}

.page-casino__icon--mobile {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17 1.01L7 1c-1.1 0-1.99.9-1.99 2v18c0 1.1.89 2 1.99 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></svg>');
}

.page-casino__feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Join Us Section */
.page-casino__join-us {
  padding: 60px 20px;
  background-color: var(--card-background);
  border-top: 1px solid var(--divider-color);
}

.page-casino__cta-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Responsible Gaming Section */
.page-casino__responsible-gaming {
  padding: 60px 20px;
  background-color: var(--background-dark);
  border-top: 1px solid var(--divider-color);
  text-align: center;
}

/* FAQ Section */
.page-casino__faq-section {
  padding: 60px 20px;
  background-color: var(--card-background);
  border-top: 1px solid var(--divider-color);
}

.page-casino__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-casino__faq-item {
  background-color: var(--background-dark);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-casino__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--gold-color);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
}

.page-casino__faq-item[open] .page-casino__faq-question {
  border-bottom: 1px solid transparent;
}

.page-casino__faq-question::-webkit-details-marker {
  display: none;
}

.page-casino__faq-question::marker {
  display: none;
}

.page-casino__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-casino__faq-item[open] .page-casino__faq-toggle {
  transform: rotate(45deg);
}

.page-casino__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-casino__flex-container {
    flex-direction: column;
    text-align: center;
  }
  .page-casino__flex-container--reverse {
    flex-direction: column;
  }
  .page-casino__text-content,
  .page-casino__image-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-casino {
    font-size: 15px;
  }
  .page-casino__hero-section {
    padding-bottom: 40px;
  }
  .page-casino__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }
  .page-casino__intro-text {
    font-size: 1em;
  }
  .page-casino__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__btn-primary,
  .page-casino__btn-secondary,
  .page-casino__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  /* Image responsive */
  .page-casino img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-casino__section,
  .page-casino__card,
  .page-casino__container,
  .page-casino__game-card,
  .page-casino__promo-item,
  .page-casino__game-cards,
  .page-casino__promo-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino__hero-section {
    padding-top: 10px !important;
  }

  .page-casino__game-cards,
  .page-casino__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-casino__feature-list li {
    font-size: 1em;
  }
  .page-casino__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-casino__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__hero-content {
    padding: 15px;
  }
  .page-casino__section-description {
    font-size: 0.9em;
  }
  .page-casino__content-area {
    padding: 30px 15px;
  }
}