/* Base styles for the page */
.page-blog-huong-dan-ca-cuoc-the-thao-vz88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F3F8FF); /* Default text color for dark body background */
    background-color: transparent; /* Main section background should be transparent to show body bg */
    padding-bottom: 50px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-vz88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-huong-dan-ca-cuoc-the-thao-vz88__hero-section {
    display: flex; /* Use flexbox for column layout */
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    color: var(--text-main, #F3F8FF);
    background-color: var(--deep-navy, #08162B);
    overflow: hidden;
}

.page-blog-huong-dan-ca-cuoc-the-thao-vz88__hero-image-container {
    width: 100%;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog-huong-dan-ca-cuoc-the-thao-vz88__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover the area */
    filter: brightness(0.8); /* Slightly darken image for readability */
}

.page-blog-huong-dan-ca-cuoc-the-thao-vz88__hero-content {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative; /* No absolute positioning here */
    z-index: 1;
}

.page-blog-huong-dan-ca-cuoc-the-thao-vz88__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-main, #F3F8FF);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}