/* style/resources-tai-xiu-b52-gameplay.css */

/* General page styling */
.page-resources-tai-xiu-b52-gameplay {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-tai-xiu-b52-gameplay__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-tai-xiu-b52-gameplay__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    box-sizing: border-box;
}

.page-resources-tai-xiu-b52-gameplay__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-tai-xiu-b52-gameplay__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-tai-xiu-b52-gameplay__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 900px;
    padding: 20px;
}

.page-resources-tai-xiu-b52-gameplay__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-resources-tai-xiu-b52-gameplay__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Call to Action Buttons */
.page-resources-tai-xiu-b52-gameplay__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-tai-xiu-b52-gameplay__btn-primary,
.page-resources-tai-xiu-b52-gameplay__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    max-width: 100%; /* Ensure buttons adapt to container width */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
}

.page-resources-tai-xiu-b52-gameplay__btn-primary {
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    border-color: #C30808;
}

.page-resources-tai-xiu-b52-gameplay__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
    transform: translateY(-2px);
}

.page-resources-tai-xiu-b52-gameplay__btn-secondary {
    background-color: transparent;
    color: #017439; /* Brand color for secondary */
    border-color: #017439;
}

.page-resources-tai-xiu-b52-gameplay__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Content Sections */
.page-resources-tai-xiu-b52-gameplay__content-section {
    padding: 60px 0;
}

.page-resources-tai-xiu-b52-gameplay__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter than body for contrast, but still dark */
    color: #ffffff;
}

.page-resources-tai-xiu-b52-gameplay__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-resources-tai-xiu-b52-gameplay__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-resources-tai-xiu-b52-gameplay__dark-bg .page-resources-tai-xiu-b52-gameplay__section-title {
    color: #ffffff; /* White for titles on dark background */
}

.page-resources-tai-xiu-b52-gameplay__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-resources-tai-xiu-b52-gameplay__dark-bg .page-resources-tai-xiu-b52-gameplay__sub-title {
    color: #f0f0f0;
}

.page-resources-tai-xiu-b52-gameplay__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-tai-xiu-b52-gameplay__highlight {
    font-weight: bold;
    color: #017439; /* Brand color for highlights */
}

.page-resources-tai-xiu-b52-gameplay__dark-bg .page-resources-tai-xiu-b52-gameplay__highlight {
    color: #FFFF00; /* Yellow for highlights on dark background to stand out */
}

.page-resources-tai-xiu-b52-gameplay__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-resources-tai-xiu-b52-gameplay__list-item {
    margin-bottom: 10px;
}

.page-resources-tai-xiu-b52-gameplay a {
    color: #017439;
    text-decoration: underline;
}

.page-resources-tai-xiu-b52-gameplay__dark-bg a {
    color: #FFFF00;
}

.page-resources-tai-xiu-b52-gameplay a:hover {
    text-decoration: none;
    color: #e02020; /* A red accent for hover */
}