.page-blog-phdream-sports-betting-guide {
    font-family: Arial, sans-serif;
    color: #f5f5f5; /* High contrast text color */
    background-color: #0d0d0d; /* Dark background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-blog-phdream-sports-betting-guide__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #000000; /* Ensure hero section has a background */
}

.page-blog-phdream-sports-betting-guide__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px; /* Minimum height for hero image */
    max-height: 600px; /* Max height for hero image */
}

.page-blog-phdream-sports-betting-guide__hero-content {
    padding: 30px 20px;
    text-align: center;
    background-color: #000000; /* Content background to ensure readability below image */
    color: #FFFFFF;
}

.page-blog-phdream-sports-betting-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFFFFF;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-phdream-sports-betting-guide__hero-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e5e5e5;
}

.page-blog-phdream-sports-betting-guide__hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.page-blog-phdream-sports-betting-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 120px; /* Ensure buttons are not too small */
    text-align: center;
    border: 2px solid transparent; /* Default border */
}

.page-blog-phdream-sports-betting-guide__button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    border-color: #FFFFFF;
}

.page-blog-phdream-sports-betting-guide__button--register:hover {
    background-color: #e0e0e0;
    color: #000000;
}

.page-blog-phdream-sports-betting-guide__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border-color: #FCBC45;
}

.page-blog-phdream-sports-betting-guide__button--login:hover {
    background-color: #e6a83a;
    color: #000000;
}

.page-blog-phdream-sports-betting-guide__button--download {
    background-color: #FCBC45; /* Download button color */
    color: #000000;
    border-color: #FCBC45;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.page-blog-phdream-sports-betting-guide__button--download:hover {
    background-color: #e6a83a;
}

.page-blog-phdream-sports-betting-guide__button--small {
    padding: 10px 20px;
    font-size: 0.9rem;
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-blog-phdream-sports-betting-guide__button--small:hover {
    background-color: #e6a83a;
}

.page-blog-phdream-sports-betting-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
    font-weight: bold;
}

.page-blog-phdream-sports-betting-guide__section-paragraph {
    font-size: 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e5e5e5;
}

/* Introduction Section */
.page-blog-phdream-sports-betting-guide__introduction-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-phdream-sports-betting-guide__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-phdream-sports-betting-guide__feature-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFFFFF;
    min-height: 200px; /* Ensure feature cards have minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-blog-phdream-sports-betting-guide__feature-item:hover {
    transform: translateY(-5px);
}

.page-blog-phdream-sports-betting-guide__feature-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #FCBC45; /* Highlight color for titles */
}

.page-blog-phdream-sports-betting-guide__feature-description {
    font-size: 0.95rem;
    color: #c0c0c0;
}

/* How to Start Section */
.page-blog-phdream-sports-betting-guide__how-to-start-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-phdream-sports-betting-guide__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-phdream-sports-betting-guide__step-card {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px; /* Ensure step cards have minimum height */
}

.page-blog-phdream-sports-betting-guide__step-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size check */
    min-height: 200px; /* Min image size check */
}

.page-blog-phdream-sports-betting-guide__step-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #FCBC45;
}

.page-blog-phdream-sports-betting-guide__step-description {
    font-size: 0.9rem;
    color: #c0c0c0;
    flex-grow: 1; /* Allow description to take up available space */
    margin-bottom: 20px;
}

/* App Download Section */
.page-blog-phdream-sports-betting-guide__app-download-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    background-color: #000000;
    margin-top: 50px;
}

.page-blog-phdream-sports-betting-guide__app-content {
    max-width: 500px;
    text-align: center;
}

.page-blog-phdream-sports-betting-guide__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    min-width: 200px; /* Min image size check */
    min-height: 200px; /* Min image size check */
}

/* Tips Section */
.page-blog-phdream-sports-betting-guide__tips-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog-phdream-sports-betting-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-phdream-sports-betting-guide__tip-card {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFFFFF;
    min-height: 180px; /* Ensure tip cards have minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-blog-phdream-sports-betting-guide__tip-card:hover {
    transform: translateY(-5px);
}

.page-blog-phdream-sports-betting-guide__tip-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #FCBC45;
}

.page-blog-phdream-sports-betting-guide__tip-description {
    font-size: 0.95rem;
    color: #c0c0c0;
}

/* More Info Section */
.page-blog-phdream-sports-betting-guide__more-info-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.page-blog-phdream-sports-betting-guide__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.page-blog-phdream-sports-betting-guide__link-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-height: 150px; /* Ensure link cards have minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-blog-phdream-sports-betting-guide__link-card:hover {
    background-color: #2a2a2a;
    transform: translateY(-5px);
}

.page-blog-phdream-sports-betting-guide__link-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #FCBC45;
}

.page-blog-phdream-sports-betting-guide__link-description {
    font-size: 0.85rem;
    color: #c0c0c0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-phdream-sports-betting-guide__hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-phdream-sports-betting-guide__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-blog-phdream-sports-betting-guide__app-download-section {
        flex-direction: column;
        text-align: center;
    }

    .page-blog-phdream-sports-betting-guide__app-content {
        order: 2; /* Content below image on mobile */
    }

    .page-blog-phdream-sports-betting-guide__app-image {
        order: 1; /* Image above content on mobile */
        max-width: 300px;
        margin-bottom: 30px;
    }

    /* Enforce mobile image max-width rule */
    .page-blog-phdream-sports-betting-guide img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not too small in display */
    .page-blog-phdream-sports-betting-guide__step-image {
        width: 100%;
        height: auto; /* Allow height to adjust */
        max-height: 300px; /* Cap max height to avoid overly long images */
    }

    .page-blog-phdream-sports-betting-guide__step-card {
        min-height: auto; /* Adjust min-height for mobile */
    }
}

@media (max-width: 480px) {
    .page-blog-phdream-sports-betting-guide__main-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

    .page-blog-phdream-sports-betting-guide__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-blog-phdream-sports-betting-guide__button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .page-blog-phdream-sports-betting-guide__feature-item,
    .page-blog-phdream-sports-betting-guide__tip-card,
    .page-blog-phdream-sports-betting-guide__link-card {
        padding: 20px;
    }
}