/* style/-g-trc-tip.css */
.page--g-trc-tip {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A2540; /* Dark blue primary background */
  line-height: 1.6;
}

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

.page--g-trc-tip__text-center {
  text-align: center;
}

.page--g-trc-tip__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page--g-trc-tip__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold secondary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page--g-trc-tip__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page--g-trc-tip__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page--g-trc-tip__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2540; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page--g-trc-tip__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page--g-trc-tip__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page--g-trc-tip__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2540;
  transform: translateY(-2px);
}

.page--g-trc-tip__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page--g-trc-tip__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
}

/* Hero Section */
.page--g-trc-tip__hero {
  background: url('[GALLERY:hero:cockfighting_arena,live_stream,audience,excitement]') center center/cover no-repeat;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
}

.page--g-trc-tip__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 37, 64, 0.75); /* Dark blue overlay */
}

.page--g-trc-tip__hero .page--g-trc-tip__container {
  z-index: 1;
}

.page--g-trc-tip__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page--g-trc-tip__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.page--g-trc-tip__hero-actions .page--g-trc-tip__btn {
  margin: 0 10px;
}

/* About Section */
.page--g-trc-tip__about {
  background-color: #0A2540;
}

/* Features Section */
.page--g-trc-tip__features {
  background-color: #1A3A5B; /* Slightly lighter dark blue */
}

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

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

.page--g-trc-tip__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page--g-trc-tip__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page--g-trc-tip__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page--g-trc-tip__feature-description {
  font-size: 1em;
  color: #CCCCCC;
}

/* Types Section */
.page--g-trc-tip__types {
  background-color: #0A2540;
}

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

.page--g-trc-tip__type-item {
  background-color: #1A3A5B;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page--g-trc-tip__type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page--g-trc-tip__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page--g-trc-tip__type-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page--g-trc-tip__type-description {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 20px 20px;
}

/* Guide Section */
.page--g-trc-tip__guide {
  background-color: #1A3A5B;
}

.page--g-trc-tip__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page--g-trc-tip__guide-list li {
  background-color: #0A2540;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page--g-trc-tip__guide-step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page--g-trc-tip__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page--g-trc-tip__promotions {
  background-color: #0A2540;
}

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

.page--g-trc-tip__promo-item {
  background-color: #1A3A5B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page--g-trc-tip__promo-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page--g-trc-tip__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page--g-trc-tip__promo-description {
  font-size: 1em;
  color: #CCCCCC;
}

/* App Download Section */
.page--g-trc-tip__app-download {
  background-color: #1A3A5B;
}

.page--g-trc-tip__app-download-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page--g-trc-tip__app-info {
  flex: 1 1 450px;
  max-width: 600px;
  text-align: left;
}

.page--g-trc-tip__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.page--g-trc-tip__app-features {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page--g-trc-tip__app-feature-list {
  list-style: disc inside;
  color: #E0E0E0;
  margin-bottom: 30px;
  padding-left: 20px;
}

.page--g-trc-tip__app-feature-list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page--g-trc-tip__app-buttons .page--g-trc-tip__btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.page--g-trc-tip__qr-code {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  background-color: #0A2540;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page--g-trc-tip__qr-text {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page--g-trc-tip__qr-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 5px;
}

/* FAQ Section */
.page--g-trc-tip__faq {
  background-color: #0A2540;
}

.page--g-trc-tip__faq-list {
  margin-top: 40px;
}

.page--g-trc-tip__faq-item {
  background-color: #1A3A5B;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page--g-trc-tip__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page--g-trc-tip__faq-question:hover {
  background-color: #2a4c6e;
}

.page--g-trc-tip__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page--g-trc-tip__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page--g-trc-tip__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page--g-trc-tip__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 0 25px 20px;
}

.page--g-trc-tip__faq-answer p {
  margin-bottom: 10px;
}

/* CTA Section */
.page--g-trc-tip__cta {
  background-color: #1A3A5B;
  padding: 80px 0;
}

.page--g-trc-tip__cta .page--g-trc-tip__section-title {
  margin-bottom: 25px;
}

.page--g-trc-tip__cta .page--g-trc-tip__section-text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page--g-trc-tip__hero-title {
    font-size: 3em;
  }
  .page--g-trc-tip__hero-description {
    font-size: 1.2em;
  }
  .page--g-trc-tip__section-title {
    font-size: 2em;
  }
  .page--g-trc-tip__app-download-content {
    flex-direction: column;
    gap: 30px;
  }
  .page--g-trc-tip__app-info, .page--g-trc-tip__qr-code {
    max-width: 100%;
  }
  .page--g-trc-tip__app-buttons .page--g-trc-tip__btn {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page--g-trc-tip__hero {
    height: 500px;
  }
  .page--g-trc-tip__hero-title {
    font-size: 2.5em;
  }
  .page--g-trc-tip__hero-description {
    font-size: 1.1em;
  }
  .page--g-trc-tip__hero-actions .page--g-trc-tip__btn {
    display: block;
    margin: 15px auto;
  }
  .page--g-trc-tip__btn--secondary {
    margin-left: 0;
  }
  .page--g-trc-tip__section {
    padding: 40px 0;
  }
  .page--g-trc-tip__section-title {
    font-size: 1.8em;
  }
  .page--g-trc-tip__feature-grid, .page--g-trc-tip__type-grid, .page--g-trc-tip__promo-grid {
    grid-template-columns: 1fr;
  }
  .page--g-trc-tip__guide-list li {
    padding: 20px;
  }
  .page--g-trc-tip__guide-step-title {
    font-size: 1.4em;
  }
  .page--g-trc-tip__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page--g-trc-tip__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page--g-trc-tip__hero-title {
    font-size: 2em;
  }
  .page--g-trc-tip__hero-description {
    font-size: 1em;
  }
  .page--g-trc-tip__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page--g-trc-tip__qr-image {
    width: 150px;
    height: 150px;
  }
  .page--g-trc-tip__app-buttons .page--g-trc-tip__btn {
    width: 100%;
    margin-right: 0;
  }
}