:root {
    --page-tai-xiu-primary-color: #F2C14E;
    --page-tai-xiu-secondary-color: #FFD36B;
    --page-tai-xiu-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --page-tai-xiu-card-bg: #111111;
    --page-tai-xiu-background-color: #0A0A0A;
    --page-tai-xiu-text-main: #FFF6D6;
    --page-tai-xiu-border-color: #3A2A12;
    --page-tai-xiu-glow-color: #FFD36B;
    --page-tai-xiu-text-dark: #333333; /* For contrast on light backgrounds */
    --page-tai-xiu-text-light: #ffffff; /* For contrast on dark backgrounds */
}

.page-tai-xiu {
    background-color: var(--page-tai-xiu-background-color);
    color: var(--page-tai-xiu-text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-tai-xiu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-tai-xiu__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
    color: var(--page-tai-xiu-text-light);
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-tai-xiu__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-tai-xiu__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover the area, will be 'contain' on mobile */
    filter: brightness(0.8); /* Slightly darken image for text contrast */
}

.page-tai-xiu__hero-content {
    position: relative; /* Ensure content is above image if needed, but here it's below */
    z-index: 1;
    padding: 40px 15px;
    max-width: 900px;
    margin-top: -100px; /* Overlap slightly with the image */
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-50px); /* Lift content up */
}

.page-tai-xiu__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--page-tai-xiu-secondary-color);
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.7);
}

.page-tai-xiu__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--page-tai-xiu-text-light);
}

.page-tai-xiu__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-tai-xiu__cta-buttons--center {
    margin-top: 30px;
}