/* style/blog-78win-game-types-analysis.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-78win-game-types-analysis {
  color: var(--text-secondary-color); /* Default text color for the page */
  background-color: var(--background-color); /* Default background for the page */
}

.page-blog-78win-game-types-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-78win-game-types-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding for the first content section */
  text-align: center;
  overflow: hidden;
  background: var(--background-color);
}

.page-blog-78win-game-types-analysis__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-78win-game-types-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-78win-game-types-analysis__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-78win-game-types-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-78win-game-types-analysis__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-78win-game-types-analysis__btn-primary,
.page-blog-78win-game-types-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-78win-game-types-analysis__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-78win-game-types-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-78win-game-types-analysis__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.2);
}

.page-blog-78win-game-types-analysis__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-78win-game-types-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-blog-78win-game-types-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Video Section */
.page-blog-78win-game-types-analysis__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding for the first content section */
  background: var(--background-color);
}

.page-blog-78win-game-types-analysis__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for the video player */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-78win-game-types-analysis__video,
.page-blog-78win-game-types-analysis__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

.page-blog-78win-game-types-analysis__video-link-overlay {
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for click indication */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.page-blog-78win-game-types-analysis__video-link-overlay:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Content Area */
.page-blog-78win-game-types-analysis__content-area {
  background: var(--card-bg);
  padding: 80px 0;
  color: var(--text-secondary-color);
}

.page-blog-78win-game-types-analysis__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-78win-game-types-analysis__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-main-color);
  margin-top: 50px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-blog-78win-game-types-analysis__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-blog-78win-game-types-analysis__inline-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-blog-78win-game-types-analysis__inline-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Game Grid */
.page-blog-78win-game-types-analysis__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}