/* style/blog-online-gambling-tips.css */

/* --- Base Styles & Variables (BEM) --- */
/* Assuming --page-bg from shared.css is dark for Black Gold theme */
.page-blog-online-gambling-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px; /* Space for footer */
}

.page-blog-online-gambling-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-online-gambling-tips__section {
  padding: 60px 0;
}

.page-blog-online-gambling-tips__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-online-gambling-tips__sub-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary Color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-online-gambling-tips__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

/* --- Buttons --- */
.page-blog-online-gambling-tips__btn-primary,
.page-blog-online-gambling-tips__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-online-gambling-tips__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #ffffff;
  border: none;
}

.page-blog-online-gambling-tips__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-online-gambling-tips__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Auxiliary Color */
  border: 2px solid #FFD36B; /* Auxiliary Color */
}

.page-blog-online-gambling-tips__btn-secondary:hover {
  background: #FFD36B;
  color: #111111; /* Card BG for contrast */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

.page-blog-online-gambling-tips__btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* --- Card Styles --- */
.page-blog-online-gambling-tips__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border Color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #FFF6D6;
}

/* --- Images --- */
.page-blog-online-gambling-tips img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-blog-online-gambling-tips__image-full {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-blog-online-gambling-tips__image-center {
  margin: 0 auto 30px;
}

/* --- Hero Section --- */
.page-blog-online-gambling-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px; /* Small padding-top, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  background-color: #0A0A0A; /* Background */
}

.page-blog-online-gambling-tips__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height to prevent excessive size */
  object-fit: cover;
  margin-bottom: 30px;
}

.page-blog-online-gambling-tips__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-online-gambling-tips__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Using clamp for responsive H1 */
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-blog-online-gambling-tips__subtitle {
  font-size: 1.25em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Why Choose OKBET Section --- */
.page-blog-online-gambling-tips__why-choose-okbet {
  background-color: #0A0A0A; /* Background */
}

.page-blog-online-gambling-tips__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-online-gambling-tips__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
}

.page-blog-online-gambling-tips__feature-icon {
  width: 200px; /* Adjusted to meet min size requirement */
  height: 200px; /* Adjusted to meet min size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 0; /* Icons typically don't have rounded corners unless part of a design */
}

.page-blog-online-gambling-tips__feature-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 15px;
}

/* --- Getting Started Section --- */
.page-blog-online-gambling-tips__getting-started {
  background-color: #0A0A0A;
}

.page-blog-online-gambling-tips__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-blog-online-gambling-tips__content-wrapper > img {
  flex: 1;
  min-width: 400px; /* Ensure image has minimum size for desktop */
}

.page-blog-online-gambling-tips__text-block {
  flex: 1;
  text-align: left;
}

.page-blog-online-gambling-tips__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 20px;
  color: #FFF6D6;
}

.page-blog-online-gambling-tips__ordered-list li {
  margin-bottom: 15px;
}

.page-blog-online-gambling-tips__list-heading {
  font-size: 1.2em;
  color: #F2C14E;
  margin-bottom: 5px;
}

.page-blog-online-gambling-tips__text-block .page-blog-online-gambling-tips__btn-secondary {
  margin-top: 25px;
}

/* --- Navigating Platform Section --- */
.page-blog-online-gambling-tips__navigating-platform {
  background-color: #0A0A0A;
}