:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --dark-bg-color: #0A0A0A;
    --card-bg-color: #111111;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --header-offset: 120px; /* Default desktop header height */
}

.page-blog-responsible-gaming-tips {
    background-color: var(--dark-bg-color); /* Matches custom background color */
    color: var(--text-main-color); /* Matches custom text main color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset); /* Account for fixed header */
}

.page-blog-responsible-gaming-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-responsible-gaming-tips__hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding-bottom: 40px; /* Adjust padding below image */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-responsible-gaming-tips__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height of the image wrapper */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

.page-blog-responsible-gaming-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure image covers the area */
    min-height: 200px; /* Minimum image size */
    min-width: 200px; /* Minimum image size */
}

.page-blog-responsible-gaming-tips__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-responsible-gaming-tips__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--text-main-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-responsible-gaming-tips__hero-description {
    font-size: 1.15em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-responsible-gaming-tips__cta-group {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-blog-responsible-gaming-tips__btn-primary,
.page-blog-responsible-gaming-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* Ensure button doesn't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-blog-responsible-gaming-tips__btn-primary {
    background: var(--btn-gradient); /* Custom button gradient */
    color: var(--text-main-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-responsible-gaming-tips__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-responsible-gaming-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.page-blog-responsible-gaming-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}