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

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

/* Hero Section */
.page-casino__hero {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-casino__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  animation: page-casino__hero-glow 15s infinite alternate;
}

@keyframes page-casino__hero-glow {
  0% { opacity: 0.5; transform: scale(1) rotate(45deg); }
  100% { opacity: 0.8; transform: scale(1.2) rotate(45deg); }
}

.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.3);
  position: relative;
  z-index: 1;
}

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* General Section Styling */
.page-casino__about, .page-casino__games, .page-casino__promotions, .page-casino__app-download, .page-casino__support {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-casino__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-casino__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

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

.page-casino__btn--primary {
  background-color: #FFD700;
  color: #333;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-casino__btn--secondary {
  background-color: #1E90FF;
  color: #fff;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

.page-casino__btn--secondary:hover {
  background-color: #1a7ae6;
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
  transform: translateY(-2px);
}

.page-casino__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #1E90FF;
  color: #fff;
}

.page-casino__btn--small:hover {
  background-color: #1a7ae6;
  transform: translateY(-1px);
}

/* Grid Layouts */
.page-casino__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

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

.page-casino__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Game Cards */
.page-casino__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-casino__card-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino__card-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-casino__card-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #333;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino__card-btn:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

/* Promotions */
.page-casino__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__promo-item {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-casino__promo-item:hover {
  transform: translateY(-3px);
}

.page-casino__promo-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-casino__promo-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

/* App Download */
.page-casino__app-download .page-casino__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-casino__app-download .page-casino__text-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__hero-description {
    font-size: 1.1em;
  }
  .page-casino__section-title {
    font-size: 2em;
  }
  .page-casino__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-casino__image-wrapper {
    order: -1; /* Image on top for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-casino__hero {
    padding: 80px 0;
  }
  .page-casino__hero-title {
    font-size: 2.2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino__section-title {
    font-size: 1.8em;
  }
  .page-casino__game-cards, .page-casino__promo-list {
    grid-template-columns: 1fr;
  }
  .page-casino__card-title {
    font-size: 1.5em;
  }
  .page-casino__promo-title {
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-casino__hero {
    padding: 60px 0;
  }
  .page-casino__hero-title {
    font-size: 1.8em;
  }
  .page-casino__hero-description {
    font-size: 0.9em;
  }
  .page-casino__section-title {
    font-size: 1.6em;
  }
  .page-casino__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-casino__promo-item {
    padding: 20px;
  }
}