:root {
    --ph345-primary-color: #F2C14E;
    --ph345-secondary-color: #FFD36B;
    --ph345-bg-color: #0A0A0A; /* Custom background */
    --ph345-card-bg-color: #111111; /* Custom card background */
    --ph345-text-main-color: #FFF6D6; /* Custom text color */
    --ph345-border-color: #3A2A12; /* Custom border color */
    --ph345-glow-color: #FFD36B; /* Custom glow color */
    --ph345-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --header-offset: 120px; /* Default for desktop, shared.css will define actual */
}

.page-blog-ph345-casino-game-guide {
    font-family: Arial, sans-serif;
    color: var(--ph345-text-main-color); /* Main text color */
    background-color: var(--ph345-bg-color); /* Main background color */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section */
.page-blog-ph345-casino-game-guide__hero-section {
    background-color: var(--ph345-bg-color); /* Use main background for the section */
    padding-top: calc(var(--header-offset) + 40px); /* Ensure content is below fixed header, plus some spacing */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    color: var(--ph345-text-main-color); /* Default text color for the section */
}

.page-blog-ph345-casino-game-guide__hero-container {
    display: flex;
    flex-direction: column; /* Stacks image and content vertically */
    align-items: center;
    gap: 40px; /* Space between image and text */
}

.page-blog-ph345-casino-game-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    height: 675px; /* Fixed aspect ratio for desktop */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-ph345-casino-game-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog-ph345-casino-game-guide__hero-content {
    max-width: 900px;
    padding: 0 20px; /* Padding for text */
}

.page-blog-ph345-casino-game-guide__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ph345-secondary-color); /* Use secondary color for title */
    line-height: 1.2;
}

.page-blog-ph345-casino-game-guide__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--ph345-text-main-color);
}

.page-blog-ph345-casino-game-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-ph345-casino-game-guide__btn-primary,
.page-blog-ph345-casino-game-guide__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
    white-space: normal; /* For mobile responsiveness */
    word-wrap: break-word; /* For mobile responsiveness */
}

.page-blog-ph345-casino-game-guide__btn-primary {
    background: var(--ph345-button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-ph345-casino-game-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-ph345-casino-game-guide__btn-secondary {
    background: transparent;
    color: var(--ph345-secondary-color);
    border: 2px solid var(--ph345-border-color);
}

.page-blog-ph345-casino-game-guide__btn-secondary:hover {
    background: rgba(255, 211, 107, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

.page-blog-ph345-casino-game-guide__btn-text {
    color: var(--ph345-secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog-ph345-casino-game-guide__btn-text:hover {
    color: var(--ph345-primary-color);
    text-decoration: underline;
}

/* General Section Styling */
.page-blog-ph345-casino-game-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-ph345-casino-game-guide__intro-section,
.page-blog-ph345-casino-game-guide__game-categories-section,
.page-blog-ph345-casino-game-guide__strategies-section,
.page-blog-ph345-casino-game-guide__promotions-section,
.page-blog-ph345-casino-game-guide__why-choose-section,
.page-blog-ph345-casino-game-guide__faq-section,
.page-blog-ph345-casino-game-guide__related-articles-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--ph345-border-color);
}

.page-blog-ph345-casino-game-guide__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--ph345-secondary-color);
}

.page-blog-ph345-casino-game-guide__paragraph {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--ph345-text-main-color);
}

/* Game Categories */
.page-blog-ph345-casino-game-guide__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}