.page-game-bai-cac-loai-game-pho-bien {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8; /* Light background for the main content area */
}

.page-game-bai-cac-loai-game-pho-bien__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-game-bai-cac-loai-game-pho-bien__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 50px;
    background-color: #26A9E0; /* Brand color for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-game-bai-cac-loai-game-pho-bien__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-game-bai-cac-loai-game-pho-bien__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover for desktop */
    aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-game-bai-cac-loai-game-pho-bien__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF; /* White text for dark brand background */
    position: relative;
    z-index: 1;
}

.page-game-bai-cac-loai-game-pho-bien__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-game-bai-cac-loai-game-pho-bien__hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-game-bai-cac-loai-game-pho-bien__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-game-bai-cac-loai-game-pho-bien__btn-primary,
.page-game-bai-cac-loai-game-pho-bien__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-game-bai-cac-loai-game-pho-bien__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-game-bai-cac-loai-game-pho-bien__btn-primary:hover {
    background-color: #d46c00;
    border-color: #d46c00;
}

.page-game-bai-cac-loai-game-pho-bien__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-game-bai-cac-loai-game-pho-bien__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
}

/* General Section Styles */
.page-game-bai-cac-loai-game-pho-bien__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-bai-cac-loai-game-pho-bien__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-game-bai-cac-loai-game-pho-bien__section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-bai-cac-loai-game-pho-bien__text-block p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333333;
}

/* Games List Section */
.page-game-bai-cac-loai-game-pho-bien__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-bai-cac-loai-game-pho-bien__game-card {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-bai-cac-loai-game-pho-bien__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-bai-cac-loai-game-pho-bien__game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-game-bai-cac-loai-game-pho-bien__game-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-game-bai-cac-loai-game-pho-bien__game-card-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-bai-cac-loai-game-pho-bien__game-card-title a:hover {
    color: #1a7bb0;
}