/* style/resources-thomo-betting-strategy.css */
.page-resources-thomo-betting-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background is #0a0a0a from shared.css */
}

.page-resources-thomo-betting-strategy__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-thomo-betting-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-thomo-betting-strategy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-thomo-betting-strategy__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-thomo-betting-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-thomo-betting-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-thomo-betting-strategy__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-thomo-betting-strategy__btn-primary,
.page-resources-thomo-betting-strategy__btn-secondary,
.page-resources-thomo-betting-strategy__video-cta-button,
.page-resources-thomo-betting-strategy__btn-register,
.page-resources-thomo-betting-strategy__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-thomo-betting-strategy__btn-primary,
.page-resources-thomo-betting-strategy__video-cta-button {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-thomo-betting-strategy__btn-primary:hover,
.page-resources-thomo-betting-strategy__video-cta-button:hover {
  background-color: #005a2e;
  transform: translateY(-2px);
}

.page-resources-thomo-betting-strategy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-thomo-betting-strategy__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-thomo-betting-strategy__btn-register {
  background-color: #C30808; /* Custom color for register */
  color: #FFFF00; /* Custom font color for register */
  border: 2px solid #C30808;
}

.page-resources-thomo-betting-strategy__btn-register:hover {
  background-color: #a00606;
}

.page-resources-thomo-betting-strategy__btn-login {
  background-color: #C30808; /* Custom color for login */
  color: #FFFF00; /* Custom font color for login */
  border: 2px solid #C30808;
}

.page-resources-thomo-betting-strategy__btn-login:hover {
  background-color: #a00606;
}

.page-resources-thomo-betting-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #333333; /* Dark text for light background sections */
  background-color: #ffffff; /* Explicitly set for content area */
}

.page-resources-thomo-betting-strategy__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-thomo-betting-strategy__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
}

.page-resources-thomo-betting-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-thomo-betting-strategy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-thomo-betting-strategy__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #333333;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-thomo-betting-strategy__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-resources-thomo-betting-strategy__card-title {
  font-size: 1.6em;
  color: #017439;
  padding: 20px 25px 10px;
}

.page-resources-thomo-betting-strategy__card-description {
  font-size: 1em;
  padding: 0 25px 25px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-resources-thomo-betting-strategy__strategy-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-thomo-betting-strategy__strategy-item {
  background: #f9f9f9;
  border-left: 5px solid #017439;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}