/* style/blog-huong-dan-ca-cuoc-the-thao-f186.css */

/* Base styles for the page */
.page-blog-huong-dan-ca-cuoc-the-thao-f186 {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Explicitly set for clarity, though body is default white */
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-huong-dan-ca-cuoc-the-thao-f186__hero-section {
  padding-top: 10px; /* Small top padding, relying on shared body padding-top */
  padding-bottom: 40px;
  background-color: #f5faff; /* Light background to complement brand blue */
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__text-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #333333; /* Dark text for light background */
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size */
  font-weight: 700;
  color: #26A9E0; /* Brand primary color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 600px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-primary,
.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-secondary,
.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-inline,
.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
  text-align: center;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-primary {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-inline {
  background-color: #EA7C07; /* Login color for action buttons */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-inline:hover {
  background-color: #c06506;
  border-color: #c06506;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__btn-large {
  padding: 15px 30px;
  font-size: 1.1em;
  width: auto;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__image-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element for max-width */
  margin: 0 auto;
}

/* Content Area */
.page-blog-huong-dan-ca-cuoc-the-thao-f186__content-area {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px; /* Space between sections */
  line-height: 1.3;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__paragraph {
  font-size: 1.05em;
  margin-bottom: 25px;
  text-align: justify;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Guide Steps */
.page-blog-huong-dan-ca-cuoc-the-thao-f186__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__guide-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__guide-item:hover {
  transform: translateY(-5px);
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__guide-step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__guide-step-text {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
}

/* Bet Types */
.page-blog-huong-dan-ca-cuoc-the-thao-f186__bet-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__bet-type-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__bet-type-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-huong-dan-ca-cuoc-the-thao-f186__bet-type-text {
  font-size: 0.9em;
  color: #666666;
}

/* Tips List */
.page-blog-huong-dan-ca-cuoc-the-thao-f186__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}