:root {
    --ph365-primary-color: #F2C14E;
    --ph365-secondary-color: #FFD36B;
    --ph365-card-bg: #111111;
    --ph365-background: #0A0A0A;
    --ph365-text-main: #FFF6D6;
    --ph365-border-color: #3A2A12;
    --ph365-glow-color: #FFD36B;
    --ph365-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --ph365-light-text: #ffffff;
    --ph365-dark-text: #333333;
}

.page-blog-how-to-deposit-withdraw-safely-ph365 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--ph365-text-main); /* Default text color for dark background */
    background-color: var(--ph365-background); /* Overall page background */
}

/* Fixed header spacing for the first section */
.page-blog-how-to-deposit-withdraw-safely-ph365__hero-section {
    padding-top: var(--header-offset, 120px); /* As per explicit instruction */
    padding-bottom: 60px; /* Added some bottom padding for spacing */
    background-color: var(--ph365-background);
    color: var(--ph365-text-main);
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-blog-how-to-deposit-withdraw-safely-ph365__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
    position: relative;
    z-index: 2; /* Ensure text is above any background elements */
}

.page-blog-how-to-deposit-withdraw-safely-ph365__hero-text-content {
    text-align: center;
    max-width: 800px;
}

.page-blog-how-to-deposit-withdraw-safely-ph365__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--ph365-secondary-color); /* Use a vibrant color for the main title */
}

.page-blog-how-to-deposit-withdraw-safely-ph365__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--ph365-light-text);
}

.page-blog-how-to-deposit-withdraw-safely-ph365__hero-cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons on mobile */
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-how-to-deposit-withdraw-safely-ph365__btn-primary,
.page-blog-how-to-deposit-withdraw-safely-ph365__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%; /* Ensure buttons fit mobile screen */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-how-to-deposit-withdraw-safely-ph365__btn-primary {
    background: var(--ph365-button-gradient);
    color: var(--ph365-dark-text); /* Dark text on light gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-deposit-withdraw-safely-ph365__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-how-to-deposit-withdraw-safely-ph365__btn-secondary {
    background-color: transparent;
    color: var(--ph365-secondary-color);
    border: 2px solid var(--ph365-secondary-color);
}

.page-blog-how-to-deposit-withdraw-safely-ph365__btn-secondary:hover {
    background-color: var(--ph365-secondary-color);
    color: var(--ph365-dark-text);
    transform: translateY(-2px);
}

.page-blog-how-to-deposit-withdraw-safely-ph365__hero-image-container {
    width: 100%;
    max-width: 800px; /* Limit image width */
    margin-top: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-deposit-withdraw-safely-ph365__hero-image,
.page-blog-how-to-deposit-withdraw-safely-ph365__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-blog-how-to-deposit-withdraw-safely-ph365__content-area {
    padding: 60px 0;
}

.page-blog-how-to-deposit-withdraw-safely-ph365__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}