/* style/blog-how-to-play-zomclub-safely.css */

/* Custom properties for colors */
:root {
    --page-bg: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --btn-text-color: #ffffff;
    --btn-secondary-bg: #ffffff;
    --btn-secondary-text: #11A84E;
}

.page-blog-how-to-play-zomclub-safely {
    background-color: var(--page-bg);
    color: var(--text-main); /* Ensure contrast with body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-how-to-play-zomclub-safely__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-play-zomclub-safely__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: var(--card-bg); /* Fallback, image should cover */
}

.page-blog-how-to-play-zomclub-safely__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-blog-how-to-play-zomclub-safely__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.5); /* Slightly darken image for text readability */
}