/* style/blog-the-rise-of-super-online-casinos.css */

:root {
  --super-primary-color: #F2C14E;
  --super-secondary-color: #FFD36B;
  --super-card-bg: #111111;
  --super-background-color: #0A0A0A;
  --super-text-main: #FFF6D6;
  --super-border-color: #3A2A12;
  --super-glow-color: #FFD36B;
  --super-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-the-rise-of-super-online-casinos {
  background-color: var(--super-background-color);
  color: var(--super-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-blog-the-rise-of-super-online-casinos__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-the-rise-of-super-online-casinos__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Body handles header-offset */
  padding-bottom: 60px;
}

.page-blog-the-rise-of-super-online-casinos__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
}

.page-blog-the-rise-of-super-online-casinos__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-the-rise-of-super-online-casinos__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over image for visual flow, but not covering text */
  background: rgba(17, 17, 17, 0.85); /* Card BG with transparency for depth */
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--super-border-color);
}

.page-blog-the-rise-of-super-online-casinos__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--super-secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-the-rise-of-super-online-casinos__hero-description {
  font-size: 1.15rem;
  color: var(--super-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.page-blog-the-rise-of-super-online-casinos__introduction-section,
.page-blog-the-rise-of-super-online-casinos__features-section,
.page-blog-the-rise-of-super-online-casinos__game-portfolio-section,
.page-blog-the-rise-of-super-online-casinos__maximization-section,
.page-blog-the-rise-of-super-online-casinos__future-section,
.page-blog-the-rise-of-super-online-casinos__faq-section {
  padding: 60px 0;
}

.page-blog-the-rise-of-super-online-casinos__dark-bg {
  background-color: var(--super-background-color);
}

.page-blog-the-rise-of-super-online-casinos__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--super-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-the-rise-of-super-online-casinos__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--super-text-main);
  text-align: justify;
}

.page-blog-the-rise-of-super-online-casinos__highlight {
  color: var(--super-secondary-color);
  font-weight: bold;
}

/* Buttons */
.page-blog-the-rise-of-super-online-casinos__btn-primary,
.page-blog-the-rise-of-super-online-casinos__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word;
}

.page-blog-the-rise-of-super-online-casinos__btn-primary {
  background: var(--super-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-the-rise-of-super-online-casinos__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
  opacity: 0.9;
}

.page-blog-the-rise-of-super-online-casinos__btn-secondary {
  background: transparent;
  color: var(--super-secondary-color);
  border: 2px solid var(--super-secondary-color);
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-blog-the-rise-of-super-online-casinos__btn-secondary:hover {
  background: var(--super-secondary-color);
  color: var(--super-background-color); /* Dark text on light background */
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.5);
}

/* Feature Cards */
.page-blog-the-rise-of-super-online-casinos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-the-rise-of-super-online-casinos__feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--super-border-color);
  background-color: var(--super-card-bg);
  color: var(--super-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-the-rise-of-super-online-casinos__feature-icon {
  width: 100%;
  max-width: 200px; /* Ensure images are not too wide in cards */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-the-rise-of-super-online-casinos__card-title {
  font-size: 1.5rem;
  color: var(--super-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-the-rise-of-super-online-casinos__feature-card p {
  font-size: 1rem;
  color: var(--super-text-main);
}

/* Game Portfolio */
.page-blog-the-rise-of-super-online-casinos__game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-blog-the-rise-of-super-online-casinos__game-type-card {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--super-border-color);
  background-color: var(--super-card-bg);
  color: var(--super-text-main);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-the-rise-of-super-online-casinos__game-type-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}