/* Base styles for the Tài Xỉu page */
.page-tai-xiu {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main color */
  background-color: #0A0A0A; /* Body background from shared.css */
  line-height: 1.6;
}

.page-tai-xiu__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-tai-xiu__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-tai-xiu__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-tai-xiu__hero-section {
  padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
  padding-bottom: 60px;
  background: #0A0A0A;
}

.page-tai-xiu__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 16px;
  box-sizing: border-box;
}

.page-tai-xiu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-tai-xiu__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-tai-xiu__description-text {
  font-size: 1.15em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-tai-xiu__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-tai-xiu__btn-primary,
.page-tai-xiu__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.page-tai-xiu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #333333; /* Dark text for light gradient background */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-tai-xiu__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-tai-xiu__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #3A2A12; /* Border color */
}

.page-tai-xiu__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  border-color: #F2C14E;
}

.page-tai-xiu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-tai-xiu__hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Intro Section */
.page-tai-xiu__intro-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-tai-xiu__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-tai-xiu__feature-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-tai-xiu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E;
  box-shadow: 0 0 15px #FFD36B; /* Glow */
}

.page-tai-xiu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%; /* Ensure image itself is circular within the box */
}

.page-tai-xiu__feature-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-tai-xiu__feature-description {
  font-size: 1em;
  color: #FFF6D6;
}

/* How to Play Section */
.page-tai-xiu__how-to-play-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-tai-xiu__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tai-xiu__step-item {
  background: #111111;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  text-align: center;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-tai-xiu__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #333333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.6);
  border: 2px solid #3A2A12;
}

.page-tai-xiu__step-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-tai-xiu__step-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-tai-xiu__step-description a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-tai-xiu__step-description a:hover {
  color: #F2C14E;
}

.page-tai-xiu__image-block {
  margin-top: 40px;
  text-align: center;
}

.page-tai-xiu__content-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
}