/* style/user-community-tx88-player-experience.css */

:root {
  --page-tx88-primary-color: #1A2B4C;
  --page-tx88-secondary-color: #FFD700;
  --page-tx88-text-light: #F8F8F8;
  --page-tx88-text-dark: #333333;
  --page-tx88-background-light: #FFFFFF;
  --page-tx88-background-dark: #0F1D33;
  --page-tx88-accent-color: #E5D4B3; /* Complementary to primary */
  --page-tx88-hover-color: #E0C000; /* Darker secondary for hover */
}

.page-user-community-tx88-player-experience {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-tx88-text-dark);
  background-color: var(--page-tx88-background-light);
}

.page-user-community-tx88-player-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-user-community-tx88-player-experience__hero-section {
  background: linear-gradient(135deg, var(--page-tx88-primary-color) 0%, #3a5078 100%);
  color: var(--page-tx88-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-user-community-tx88-player-experience__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,gaming_texture,subtle_glow]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-user-community-tx88-player-experience__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-tx88-secondary-color);
  position: relative;
  z-index: 1;
}

.page-user-community-tx88-player-experience__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-user-community-tx88-player-experience__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-user-community-tx88-player-experience__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-user-community-tx88-player-experience__btn--primary {
  background-color: var(--page-tx88-secondary-color);
  color: var(--page-tx88-primary-color);
}

.page-user-community-tx88-player-experience__btn--primary:hover {
  background-color: var(--page-tx88-hover-color);
  transform: translateY(-3px);
}

.page-user-community-tx88-player-experience__btn--secondary {
  background-color: transparent;
  color: var(--page-tx88-secondary-color);
  border: 2px solid var(--page-tx88-secondary-color);
}

.page-user-community-tx88-player-experience__btn--secondary:hover {
  background-color: var(--page-tx88-secondary-color);
  color: var(--page-tx88-primary-color);
  transform: translateY(-3px);
}

.page-user-community-tx88-player-experience__content-section {
  padding: 60px 0;
}

.page-user-community-tx88-player-experience__section-title {
  font-size: 2.5em;
  color: var(--page-tx88-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-user-community-tx88-player-experience__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-tx88-secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-user-community-tx88-player-experience__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--page-tx88-text-dark);
}

.page-user-community-tx88-player-experience__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-user-community-tx88-player-experience__image--full-width {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.page-user-community-tx88-player-experience__image--responsive {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-user-community-tx88-player-experience__feature-item {
  background-color: var(--page-tx88-background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--page-tx88-primary-color);
}

.page-user-community-tx88-player-experience__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-user-community-tx88-player-experience__feature-title {
  font-size: 1.5em;
  color: var(--page-tx88-primary-color);
  margin-bottom: 15px;
}

.page-user-community-tx88-player-experience__feature-description {
  color: var(--page-tx88-text-dark);
}

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

.page-user-community-tx88-player-experience__category-item {
  background-color: var(--page-tx88-background-dark);
  color: var(--page-tx88-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-user-community-tx88-player-experience__category-item:hover {
  transform: translateY(-10px);
  background-color: var(--page-tx88-primary-color);
}

.page-user-community-tx88-player-experience__category-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(108%) contrast(100%); /* Make icon white */
}

.page-user-community-tx88-player-experience__category-title {
  font-size: 1.6em;
  color: var(--page-tx88-secondary-color);
  margin-bottom: 15px;
}

.page-user-community-tx88-player-experience__category-item ul {
  list-style: none;
  padding-left: 0;
}

.page-user-community-tx88-player-experience__category-item li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-user-community-tx88-player-experience__category-item li::before {
  content: '✔';
  color: var(--page-tx88-secondary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.page-user-community-tx88-player-experience__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-user-community-tx88-player-experience__list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 1.1em;
  color: var(--page-tx88-text-dark);
  text-align: justify;
}

.page-user-community-tx88-player-experience__list li::before {
  content: '•';
  font-size: 1.5em;
  color: var(--page-tx88-secondary-color);
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: bold;
}

.page-user-community-tx88-player-experience__cta-banner {
  background: linear-gradient(90deg, var(--page-tx88-secondary-color) 0%, var(--page-tx88-hover-color) 100%);
  color: var(--page-tx88-primary-color);
  padding: 60px 40px;
  text-align: center;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-user-community-tx88-player-experience__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-user-community-tx88-player-experience__cta-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-user-community-tx88-player-experience__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-user-community-tx88-player-experience__cta-actions .page-user-community-tx88-player-experience__btn--primary {
  background-color: var(--page-tx88-primary-color);
  color: var(--page-tx88-secondary-color);
}

.page-user-community-tx88-player-experience__cta-actions .page-user-community-tx88-player-experience__btn--primary:hover {
  background-color: #0F1D33; /* Darker primary */
  color: var(--page-tx88-hover-color);
}

.page-user-community-tx88-player-experience__cta-actions .page-user-community-tx88-player-experience__btn--secondary {
  background-color: var(--page-tx88-text-light);
  color: var(--page-tx88-primary-color);
  border: 2px solid var(--page-tx88-primary-color);
}

.page-user-community-tx88-player-experience__cta-actions .page-user-community-tx88-player-experience__btn--secondary:hover {
  background-color: var(--page-tx88-primary-color);
  color: var(--page-tx88-text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-user-community-tx88-player-experience__hero-title {
    font-size: 2.8em;
  }
  .page-user-community-tx88-player-experience__hero-subtitle {
    font-size: 1.3em;
  }
  .page-user-community-tx88-player-experience__section-title {
    font-size: 2em;
  }
  .page-user-community-tx88-player-experience__feature-grid, .page-user-community-tx88-player-experience__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-user-community-tx88-player-experience__cta-title {
    font-size: 2.2em;
  }
  .page-user-community-tx88-player-experience__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-user-community-tx88-player-experience__hero-section {
    padding: 80px 0;
  }
  .page-user-community-tx88-player-experience__hero-title {
    font-size: 2.2em;
  }
  .page-user-community-tx88-player-experience__hero-subtitle {
    font-size: 1.1em;
  }
  .page-user-community-tx88-player-experience__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-user-community-tx88-player-experience__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-user-community-tx88-player-experience__section-title {
    font-size: 1.8em;
  }
  .page-user-community-tx88-player-experience__image--full-width {
    height: 300px;
  }
  .page-user-community-tx88-player-experience__cta-banner {
    padding: 40px 20px;
  }
  .page-user-community-tx88-player-experience__cta-title {
    font-size: 1.8em;
  }
  .page-user-community-tx88-player-experience__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-user-community-tx88-player-experience__hero-section {
    padding: 60px 0;
  }
  .page-user-community-tx88-player-experience__hero-title {
    font-size: 1.8em;
  }
  .page-user-community-tx88-player-experience__hero-subtitle {
    font-size: 0.95em;
  }
  .page-user-community-tx88-player-experience__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-user-community-tx88-player-experience__section-title {
    font-size: 1.5em;
  }
  .page-user-community-tx88-player-experience__image--full-width {
    height: 200px;
  }
  .page-user-community-tx88-player-experience__cta-title {
    font-size: 1.5em;
  }
  .page-user-community-tx88-player-experience__cta-actions {
    flex-direction: column;
  }
  .page-user-community-tx88-player-experience__list li {
    font-size: 1em;
  }
}