/* style/-g.css */
.page--g {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page--g .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page--g .hero-section {
  background: linear-gradient(135deg, #FF4500, #1E90FF);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page--g .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:hero:cockfighting,arena,dynamic_background]') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.page--g .hero-section .container {
  position: relative;
  z-index: 1;
}

.page--g .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page--g .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page--g .hero-buttons .btn {
  margin: 0 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.page--g .btn-primary {
  background-color: #FF4500;
  color: #fff;
  border: 2px solid #FF4500;
}

.page--g .btn-primary:hover {
  background-color: #e63900;
  border-color: #e63900;
  transform: translateY(-3px);
}

.page--g .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page--g .btn-secondary:hover {
  background-color: #fff;
  color: #FF4500;
  transform: translateY(-3px);
}

.page--g .section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page--g .section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page--g .about-cockfighting-section, .page--g .rules-section, .page--g .betting-tips-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page--g .rules-section, .page--g .betting-tips-section {
  background-color: #fff;
}

.page--g .image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page--g .section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page--g .list-style {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page--g .list-style li, .page--g .ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page--g .list-strong {
  color: #1E90FF;
}

.page--g .ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page--g .advantages-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

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

.page--g .advantage-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page--g .advantage-item:hover {
  transform: translateY(-10px);
}

.page--g .advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page--g .advantage-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g .advantage-description {
  color: #666;
  font-size: 1em;
}

.page--g .call-to-action-section {
  background: linear-gradient(45deg, #1E90FF, #FF4500);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page--g .cta-buttons .btn {
  margin: 0 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.page--g .cta-buttons .btn-primary {
  background-color: #FF4500;
  color: #fff;
  border: 2px solid #FF4500;
}

.page--g .cta-buttons .btn-primary:hover {
  background-color: #e63900;
  border-color: #e63900;
  transform: translateY(-3px);
}

.page--g .cta-buttons .btn-secondary {
  background-color: #1E90FF;
  color: #fff;
  border: 2px solid #1E90FF;
}

.page--g .cta-buttons .btn-secondary:hover {
  background-color: #1565b3;
  border-color: #1565b3;
  transform: translateY(-3px);
}

.page--g .cta-buttons .btn-tertiary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page--g .cta-buttons .btn-tertiary:hover {
  background-color: #fff;
  color: #1E90FF;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page--g .hero-title {
    font-size: 2.5em;
  }

  .page--g .hero-description {
    font-size: 1em;
  }

  .page--g .hero-buttons .btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page--g .section-title {
    font-size: 2em;
  }

  .page--g .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page--g .hero-title {
    font-size: 2em;
  }

  .page--g .hero-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .page--g .cta-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .page--g .section-text, .page--g .list-style li, .page--g .ordered-list li, .page--g .advantage-description {
    font-size: 0.95em;
  }
}