/* style/blog-xoso6688-newbie-guide.css */

/* Base styles for the page */
.page-blog-xoso6688-newbie-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--bg, #08160F); /* Page background from custom colors */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-blog-xoso6688-newbie-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--bg, #08160F);
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-xoso6688-newbie-guide__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 40px;
}

.page-blog-xoso6688-newbie-guide__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
    color: var(--text-main, #F2FFF6);
}

.page-blog-xoso6688-newbie-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold, #F2C14E); /* Using gold for main title */
}

.page-blog-xoso6688-newbie-guide__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

/* CTA Buttons */
.page-blog-xoso6688-newbie-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-xoso6688-newbie-guide__btn-primary,
.page-blog-xoso6688-newbie-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}