/* style/index-clb88-game-features-overview.css */

/* Variables for consistency */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Crimson Red */
  --dark-bg: #222;
  --light-text: #ffffff;
  --dark-text: #333333;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
  --hover-bg-dark-mode: rgba(255, 255, 255, 0.15);
}

/* Base styles for the page content wrapper */
.page-index-clb88-game-features-overview {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text); /* Default text color for dark body background */
  background-color: var(--dark-bg); /* Inherited from shared.css, but for clarity */
}

/* Global container for content alignment */
.page-index-clb88-game-features-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-index-clb88-game-features-overview__section-title,
.page-index-clb88-game-features-overview__brand-title,
.page-index-clb88-game-features-overview__blog-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-clb88-game-features-overview__section-title .highlight,
.page-index-clb88-game-features-overview__brand-title .highlight,
.page-index-clb88-game-features-overview__blog-title .highlight {
  color: var(--secondary-color); /* Highlight important keywords */
}

/* Text blocks for general content */
.page-index-clb88-game-features-overview__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.page-index-clb88-game-features-overview__text-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-clb88-game-features-overview__text-block a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Highlighted text within paragraphs */
.page-index-clb88-game-features-overview__text-block .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Video Area Styles */
.page-index-clb88-game-features-overview__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a); /* Dark gradient background */
}

.page-index-clb88-game-features-overview__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-clb88-game-features-overview__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-clb88-game-features-overview__video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}