/* style/casino.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --body-bg-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --glow-color-rgb: 255, 176, 77; /* RGB for #FFB04D for rgba usage */
}

.page-casino {
  color: var(--text-main-color); /* Body background is dark, so text is light */
  background-color: var(--body-bg-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-casino__section {
  padding: 60px 20px;
  background-color: var(--body-bg-color);
}

.page-casino__dark-section {
  background-color: var(--card-bg-color);
}

.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Added for general content padding */
  box-sizing: border-box;
}

/* Hero Section */
.page-casino__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
  background-color: var(--card-bg-color);
}

.page-casino__video-container {
  width: 100%;
  max-width: 1200px; /* Desktop width for video */
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}

.page-casino__hero-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-casino__hero-content {
  text-align: center;
  padding-top: 40px; /* Space between video and text */
  max-width: 900px;
}

.page-casino__main-title {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 0 10px rgba(255, 140, 26, 0.5); /* Glow effect */
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-casino__description {
  font-size: 1.1em;
  color: var(--text-main-color);
  margin-bottom: 30px;
}

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

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

.page-casino__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-casino__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-casino__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 140, 26, 0.3);
}

.page-casino__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.5);
}

/* General Section Styles */
.page-casino__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 140, 26, 0.3);
}

.page-casino__sub-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino__text-block {
  font-size: 1.05em;
  color: var(--text-main-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-casino__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-casino__list-item {
  color: var(--text-main-color);
  margin-bottom: 10px;
}

.page-casino__list-item strong {
  color: var(--secondary-color);
}

/* Image Styles */
.page-casino__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-casino__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px; /* Minimum size for content images */
}

/* Top 10 Section */
.page-casino__top10-section {
  background-color: var(--body-bg-color);
}

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

.page-casino__card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}