/* style/huong-dan-choi-game-bai.css */

/* General styles for the page */
.page-huong-dan-choi-game-bai {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--deep-navy); /* Dark background from shared */
}

.page-huong-dan-choi-game-bai__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.page-huong-dan-choi-game-bai__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--gold); /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-huong-dan-choi-game-bai__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--glow);
    border-radius: 2px;
}

.page-huong-dan-choi-game-bai__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-huong-dan-choi-game-bai__btn-primary,
.page-huong-dan-choi-game-bai__btn-secondary,
.page-huong-dan-choi-game-bai__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Default responsive for buttons */
}