/* style/blog-newest-slot-games-guide.css */

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

/* Base styles for the page content */
.page-blog-newest-slot-games-guide {
    background-color: var(--page-bg); /* Assuming body background is dark, based on custom colors */
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-newest-slot-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-newest-slot-games-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-blog-newest-slot-games-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden; /* Ensure image does not overflow */
}

.page-blog-newest-slot-games-guide__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of hero image wrapper */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-newest-slot-games-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-newest-slot-games-guide__hero-content {
    position: relative; /* Not absolute, to ensure "image above text" */
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    background-color: var(--page-bg); /* Background for text block */
    z-index: 1;
}

.page-blog-newest-slot-games-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Use clamp for H1 */
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-newest-slot-games-guide__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-newest-slot-games-guide__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.page-blog-newest-slot-games-guide__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-blog-newest-slot-games-guide__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: left;
}

.page-blog-newest-slot-games-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-blog-newest-slot-games-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-newest-slot-games-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-newest-slot-games-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-newest-slot-games-guide__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: none;
}

.page-blog-newest-slot-games-guide__btn-secondary:hover {
    background: rgba(var(--gold-color), 0.1);
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Game List / Card Styles */
.page-blog-newest-slot-games-guide__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-newest-slot-games-guide__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    padding-bottom: 20px;
}

.page-blog-newest-slot-games-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}