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

.page-blog-how-to-sport-bet-brasil {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the page, will be overridden by section backgrounds */
  background-color: var(--background); /* Overall page background */
}

/* Color contrast classes based on background */
.page-blog-how-to-sport-bet-brasil__dark-bg {
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-how-to-sport-bet-brasil__light-bg {
  background-color: #f8f9fa; /* A very light background to ensure contrast */
  color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-blog-how-to-sport-bet-brasil__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body padding-top handles header offset */
  overflow: hidden;
}

.page-blog-how-to-sport-bet-brasil__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-how-to-sport-bet-brasil__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-sport-bet-brasil__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-how-to-sport-bet-brasil__main-title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main); /* #F2FFF6 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 100%; /* Ensure h1 does not cause overflow */
}

.page-blog-how-to-sport-bet-brasil__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary); /* #A7D9B8 */
}

/* General Section Styling */
.page-blog-how-to-sport-bet-brasil__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-how-to-sport-bet-brasil__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-how-to-sport-bet-brasil__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-how-to-sport-bet-brasil__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-blog-how-to-sport-bet-brasil__section-description a {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

/* Grid Container for Cards */
.page-blog-how-to-sport-bet-brasil__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Card Styling */
.page-blog-how-to-sport-bet-brasil__card {
  background-color: var(--card-bg); /* #11271B */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-blog-how-to-sport-bet-brasil__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-how-to-sport-bet-brasil__card-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-how-to-sport-bet-brasil__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-how-to-sport-bet-brasil__card-title a:hover {
  color: var(--gold); /* #F2C14E */
}

.page-blog-how-to-sport-bet-brasil__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-how-to-sport-bet-brasil__card-text a {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

/* List Styling */
.page-blog-how-to-sport-bet-brasil__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-how-to-sport-bet-brasil__list li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.page-blog-how-to-sport-bet-brasil__list-icon {
  color: var(--glow); /* #57E38D */
  margin-right: 10px;
  font-weight: bold;
}

/* Step Cards */
.page-blog-how-to-sport-bet-brasil__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-sport-bet-brasil__step-card {
  background-color: var(--card-bg); /* #11271B */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-blog-how-to-sport-bet-brasil__step-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold); /* #F2C14E */
}

.page-blog-how-to-sport-bet-brasil__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
}

.page-blog-how-to-sport-bet-brasil__step-text a {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

/* Call to Action Buttons */
.page-blog-how-to-sport-bet-brasil__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-blog-how-to-sport-bet-brasil__cta-buttons--center {
  justify-content: center;
}

.page-blog-how-to-sport-bet-brasil__btn-primary,
.page-blog-how-to-sport-bet-brasil__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  text-align: center;
}

.page-blog-how-to-sport-bet-brasil__btn-primary {
  background: var(--button-gradient); /* Button color */
  color: var(--text-main); /* #F2FFF6 */
  border: 2px solid transparent;
}

.page-blog-how-to-sport-bet-brasil__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-sport-bet-brasil__btn-secondary {
  background-color: transparent;
  color: var(--gold); /* #F2C14E */
  border: 2px solid var(--gold); /* #F2C14E */
}

.page-blog-how-to-sport-bet-brasil__btn-secondary:hover {
  background-color: var(--gold); /* #F2C14E */
  color: var(--background); /* #08160F */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-how-to-sport-bet-brasil__faq-section {
  background-color: #f8f9fa; /* Light background for contrast */
  color: #333333;
  padding-bottom: 80px;
}

.page-blog-how-to-sport-bet-brasil__faq-section .page-blog-how-to-sport-bet-brasil__section-title {
  color: #333333; /* Dark text for light background */
}

.page-blog-how-to-sport-bet-brasil__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-sport-bet-brasil__faq-item {
  background-color: #ffffff; /* White background for FAQ items */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-blog-how-to-sport-bet-brasil__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-blog-how-to-sport-bet-brasil__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-sport-bet-brasil__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0; /* Light grey background for question */
  color: #333333; /* Dark text */
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-how-to-sport-bet-brasil__faq-item[open] .page-blog-how-to-sport-bet-brasil__faq-question {
  background-color: #e8e8e8; /* Slightly darker when open */
}

.page-blog-how-to-sport-bet-brasil__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-sport-bet-brasil__faq-qtext a {
  color: #11A84E; /* Brand color for links in FAQ question */
  text-decoration: underline;
}

.page-blog-how-to-sport-bet-brasil__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E; /* Brand color for toggle */
}

.page-blog-how-to-sport-bet-brasil__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555; /* Slightly lighter dark text for answer */
}

.page-blog-how-to-sport-bet-brasil__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-how-to-sport-bet-brasil__faq-answer a {
  color: #11A84E; /* Brand color for links in FAQ answer */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-sport-bet-brasil__main-title {
    font-size: 2.8rem;
  }
  .page-blog-how-to-sport-bet-brasil__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-sport-bet-brasil__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-how-to-sport-bet-brasil__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-blog-how-to-sport-bet-brasil__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-blog-how-to-sport-bet-brasil__section {
    padding: 40px 15px;
  }
  .page-blog-how-to-sport-bet-brasil__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-blog-how-to-sport-bet-brasil__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-blog-how-to-sport-bet-brasil__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-sport-bet-brasil__card {
    padding: 20px;
  }
  .page-blog-how-to-sport-bet-brasil__card-image {
    height: 180px;
  }
  .page-blog-how-to-sport-bet-brasil__card-title {
    font-size: 1.4rem;
  }
  .page-blog-how-to-sport-bet-brasil__card-text {
    font-size: 0.9rem;
  }
  .page-blog-how-to-sport-bet-brasil__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-sport-bet-brasil__step-card {
    padding: 20px;
  }
  .page-blog-how-to-sport-bet-brasil__step-title {
    font-size: 1.5rem;
  }
  .page-blog-how-to-sport-bet-brasil__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-how-to-sport-bet-brasil__btn-primary,
  .page-blog-how-to-sport-bet-brasil__btn-secondary {
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-how-to-sport-bet-brasil__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-how-to-sport-bet-brasil__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-sport-bet-brasil img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-sport-bet-brasil__section,
  .page-blog-how-to-sport-bet-brasil__card,
  .page-blog-how-to-sport-bet-brasil__container,
  .page-blog-how-to-sport-bet-brasil__steps-container,
  .page-blog-how-to-sport-bet-brasil__step-card,
  .page-blog-how-to-sport-bet-brasil__faq-section,
  .page-blog-how-to-sport-bet-brasil__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-blog-how-to-sport-bet-brasil__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-how-to-sport-bet-brasil__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure text in light sections is dark */
.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__section-title,
.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__section-description,
.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__card-text,
.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__list li,
.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__step-text {
  color: #333333;
}

.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__card-title {
  color: var(--main-color); /* Brand color for titles in light sections */
}

.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__card {
  background-color: #ffffff; /* White card background in light section */
  border: 1px solid #e0e0e0;
}

.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__step-card {
  background-color: #ffffff; /* White step card background in light section */
  border: 1px solid #e0e0e0;
}

.page-blog-how-to-sport-bet-brasil__light-bg .page-blog-how-to-sport-bet-brasil__step-title {
  color: var(--main-color); /* Brand color for step titles in light sections */
}

/* Links in dark sections */
.page-blog-how-to-sport-bet-brasil__dark-bg a {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

/* Links in light sections */
.page-blog-how-to-sport-bet-brasil__light-bg a {
  color: var(--deep-green); /* #0A4B2C */
  text-decoration: underline;
}

/* Ensure text on hero image is white */
.page-blog-how-to-sport-bet-brasil__hero-section h1,
.page-blog-how-to-sport-bet-brasil__hero-section p {
  color: var(--text-main);
}