:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --card-bg-color: #FFFFFF;
  --page-bg-color: #F4F7FB;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-cockfighting {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); 
  line-height: 1.6;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting__section {
  padding: 60px 0;
  overflow: hidden; 
}

.page-cockfighting__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-cockfighting__section-title--light {
  color: var(--card-bg-color); 
}

.page-cockfighting__text-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 17px;
}

.page-cockfighting__text-block--light {
  color: rgba(255, 255, 255, 0.9);
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; 
  background: var(--page-bg-color); 
}

.page-cockfighting__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; 
}

.page-cockfighting__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting__main-title {
  font-size: clamp(30px, 4vw, 48px); 
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-cockfighting__hero-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: var(--text-main-color);
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%; 
  box-sizing: border-box;
  white-space: normal; 
  word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; 
  box-sizing: border-box;
  white-space: normal; 
  word-wrap: break-word;
}

.page-cockfighting__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, #4A8BFF 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-cockfighting__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__main-cta {
  margin-top: 50px;
  font-size: 20px;
  padding: 18px 45px;
}

.page-cockfighting__small-cta {
  font-size: 14px;
  padding: 8px 20px;
}

.page-cockfighting__card {
  background: var(--card-bg-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; 
  display: flex;
  flex-direction: column;
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-cockfighting__card p {
  font-size: 15px;
  color: var(--text-main-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-cockfighting__light-bg {
  background: var(--page-bg-color);
  color: var(--text-main-color);
}

.page-cockfighting__dark-bg {
  background: var(--primary-color);
  color: #ffffff;
}

.page-cockfighting__introduction-section {
  padding-bottom: 80px;
}

.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__feature-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__quick-access-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-cockfighting__access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__access-item {
  text-align: center;
  background: var(--card-bg-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-cockfighting__access-item img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-cockfighting__access-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-cockfighting__access-item p {
  font-size: 15px;
  color: var(--text-main-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-cockfighting__game-details-section {
  padding-bottom: 80px;
}

.page-cockfighting__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__game-type-card {
  text-align: center;
}

.page-cockfighting__game-type-card img {
  height: 220px; 
}

.page-cockfighting__game-type-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting__view-all-games {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__promotions-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-cockfighting__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-cockfighting__promo-card {
  text-align: center;
}

.page-cockfighting__promo-card img {
  height: 200px; 
}

.page-cockfighting__promo-title {
  font-size: 22px;
  color: var(--primary-color); 
  margin-bottom: 15px;
}

.page-cockfighting__view-all-promos {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__security-support-section {
  padding-bottom: 80px;
}