/* style/cockfighting-betting-guide.css */
.page-cockfighting-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Explicitly set for clarity */
}

/* Header offset (if shared.css doesn't set it on body) */
.page-cockfighting-betting-guide__hero-section {
  padding-top: var(--header-offset, 120px);
}

.page-cockfighting-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #017439, #FFFFFF);
  overflow: hidden;
}

.page-cockfighting-betting-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting-betting-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-cockfighting-betting-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-cockfighting-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #333333;
}

.page-cockfighting-betting-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #017439;
  line-height: 1.2;
}

.page-cockfighting-betting-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting-betting-guide__button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-cockfighting-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-cockfighting-betting-guide__btn-register {
  background: #C30808;
  color: #FFFF00;
  border: 2px solid transparent;
}

.page-cockfighting-betting-guide__btn-register:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-guide__btn-login {
  background: #C30808;
  color: #FFFF00;
  border: 2px solid transparent;
}

.page-cockfighting-betting-guide__btn-login:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-guide__btn-primary {
  background: #017439;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-cockfighting-betting-guide__btn-primary:hover {
  background: #005a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-guide__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}