.page-ta88-community {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-ta88-community-hero {
  background: linear-gradient(135deg, #0A2463, #E3B23C);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-ta88-community-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  opacity: 0.3;
  animation: page-ta88-community-hero-pulse 10s infinite alternate;
}

@keyframes page-ta88-community-hero-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.4; }
}

.page-ta88-community-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.page-ta88-community-hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  position: relative;
  z-index: 1;
}

.page-ta88-community-hero-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.page-ta88-community-hero-button:hover {
  background-color: #f5c765;
  transform: translateY(-3px);
}

.page-ta88-community-section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-ta88-community-about, .page-ta88-community-features, .page-ta88-community-benefits, .page-ta88-community-guidelines, .page-ta88-community-future, .page-ta88-community-cta-final {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-ta88-community-about .page-ta88-community-container,
.page-ta88-community-benefits .page-ta88-community-container,
.page-ta88-community-guidelines .page-ta88-community-container,
.page-ta88-community-future .page-ta88-community-container {
  max-width: 900px;
}

.page-ta88-community-text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
  text-align: justify;
}

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

.page-ta88-community-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.page-ta88-community-feature-item {
  background-color: #f0f4f7;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-ta88-community-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-ta88-community-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-ta88-community-feature-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-ta88-community-feature-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-ta88-community-feature-title a:hover {
  color: #E3B23C;
}

.page-ta88-community-feature-description {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-ta88-community-button {
  display: inline-block;
  background-color: #0A2463;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-ta88-community-button:hover {
  background-color: #1a3c7a;
}

.page-ta88-community-small-button {
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-ta88-community-benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-ta88-community-benefit-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #E3B23C;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1.1em;
  color: #444;
  display: flex;
  align-items: flex-start;
}

.page-ta88-community-list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-ta88-community-benefit-list li strong {
  color: #0A2463;
  font-size: 1.1em;
}

.page-ta88-community-cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A2463;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.page-ta88-community-cta-text {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
  font-weight: 300;
}

.page-ta88-community-large-button {
  background-color: #E3B23C;
  color: #0A2463;
  padding: 18px 35px;
  font-size: 1.3em;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.page-ta88-community-large-button:hover {
  background-color: #f5c765;
  transform: translateY(-2px);
}

.page-ta88-community-guideline-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-ta88-community-guideline-list li {
  background-color: #f0f4f7;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1em;
  color: #555;
}

.page-ta88-community-guideline-list li strong {
  color: #0A2463;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-ta88-community-cta-final {
  background-color: #f0f4f7;
  padding: 80px 0;
  text-align: center;
}

.page-ta88-community-cta-final .page-ta88-community-section-title {
  color: #0A2463;
}

.page-ta88-community-cta-final .page-ta88-community-cta-text {
  color: #555;
  font-size: 1.2em;
}

.page-ta88-community-giant-button {
  background-color: #E3B23C;
  color: #0A2463;
  padding: 20px 40px;
  font-size: 1.5em;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  margin-top: 30px;
}

.page-ta88-community-giant-button:hover {
  background-color: #f5c765;
  transform: translateY(-4px);
}

.page-ta88-community-small-text {
  font-size: 0.9em;
  color: #777;
  margin-top: 20px;
}

.page-ta88-community-small-text a {
  color: #0A2463;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-ta88-community-small-text a:hover {
  color: #E3B23C;
}

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

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

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

  .page-ta88-community-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-ta88-community-hero,
  .page-ta88-community-about,
  .page-ta88-community-features,
  .page-ta88-community-benefits,
  .page-ta88-community-guidelines,
  .page-ta88-community-future,
  .page-ta88-community-cta-final {
    padding: 40px 0;
  }

  .page-ta88-community-cta-text {
    font-size: 1.1em;
  }

  .page-ta88-community-large-button,
  .page-ta88-community-giant-button {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-ta88-community-benefit-list li {
    font-size: 1em;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-ta88-community-list-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

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

  .page-ta88-community-hero-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-ta88-community-section-title {
    font-size: 1.8em;
  }

  .page-ta88-community-text-content {
    font-size: 0.95em;
  }

  .page-ta88-community-large-button,
  .page-ta88-community-giant-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}