/* style/slot-games-high-payout-recommendations.css */

/* Base styles for the page content */
.page-slot-games-high-payout-recommendations {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Body background is light */
}

/* Header offset to prevent content being hidden by fixed header */
.page-slot-games-high-payout-recommendations__hero-section {
    padding-top: var(--header-offset, 120px); /* Apply header offset to the first content section */
}

/* General section styling */
.page-slot-games-high-payout-recommendations__section {
    padding: 60px 20px;
    text-align: center;
}

.page-slot-games-high-payout-recommendations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-slot-games-high-payout-recommendations__section-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #017439; /* Brand color for titles */
    font-weight: bold;
}

.page-slot-games-high-payout-recommendations__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-slot-games-high-payout-recommendations__paragraph a {
    color: #017439;
    text-decoration: underline;
}

/* Hero Section */
.page-slot-games-high-payout-recommendations__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    color: #ffffff; /* White text for dark background */
    background-color: #017439; /* Brand primary color as background */
    text-align: center;
    overflow: hidden;
}

.page-slot-games-high-payout-recommendations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3; /* Overlay effect */
}

.page-slot-games-high-payout-recommendations__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none; /* Ensure no filter changes image color */
}

.page-slot-games-high-payout-recommendations__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-slot-games-high-payout-recommendations__hero-title {
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-slot-games-high-payout-recommendations__hero-description {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Call to Action Buttons */
.page-slot-games-high-payout-recommendations__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-slot-games-high-payout-recommendations__btn-primary,
.page-slot-games-high-payout-recommendations__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Ensure padding doesn't push width */
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-slot-games-high-payout-recommendations__btn-primary {
    background-color: #C30808; /* Custom color for registration/login */
    color: #FFFF00; /* Custom font color for registration/login */
    border: 2px solid #C30808;
}

.page-slot-games-high-payout-recommendations__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-slot-games-high-payout-recommendations__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-slot-games-high-payout-recommendations__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Card styling */
.page-slot-games-high-payout-recommendations__card {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    filter: none; /* Ensure no filter changes image color */
}

/* Background color variants */
.page-slot-games-high-payout-recommendations__dark-bg {
    background-color: #017439;
    color: #ffffff;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__section-title {
    color: #FFFFFF;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__paragraph {
    color: #f0f0f0;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__paragraph a {
    color: #FFFF00;
}

.page-slot-games-high-payout-recommendations__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}
.page-slot-games-high-payout-recommendations__light-bg .page-slot-games-high-payout-recommendations__section-title {
    color: #017439;
}
.page-slot-games-high-payout-recommendations__light-bg .page-slot-games-high-payout-recommendations__paragraph {
    color: #333333;
}
.page-slot-games-high-payout-recommendations__light-bg .page-slot-games-high-payout-recommendations__paragraph a {
    color: #017439;
}

/* Features Grid */
.page-slot-games-high-payout-recommendations__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__feature-item {
    padding: 30px;
    text-align: center;
}

.page-slot-games-high-payout-recommendations__feature-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__feature-title {
    color: #017439; /* Card background is white */
}

.page-slot-games-high-payout-recommendations__feature-description {
    font-size: 1em;
    color: #555555;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__feature-description {
    color: #555555; /* Card background is white */
}

/* Game Showcase */
.page-slot-games-high-payout-recommendations__game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__game-card {
    text-align: center;
    overflow: hidden;
}

.page-slot-games-high-payout-recommendations__game-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter changes image color */
}

.page-slot-games-high-payout-recommendations__game-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games-high-payout-recommendations__game-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

/* Tips Grid */
.page-slot-games-high-payout-recommendations__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__tip-item {
    padding: 30px;
    text-align: center;
}

.page-slot-games-high-payout-recommendations__tip-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__tip-title {
    color: #017439; /* Card background is white */
}

.page-slot-games-high-payout-recommendations__tip-description {
    font-size: 1em;
    color: #555555;
}
.page-slot-games-high-payout-recommendations__dark-bg .page-slot-games-high-payout-recommendations__tip-description {
    color: #555555; /* Card background is white */
}

/* Promotions Grid */
.page-slot-games-high-payout-recommendations__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__promo-card {
    text-align: center;
    overflow: hidden;
}

.page-slot-games-high-payout-recommendations__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    filter: none; /* Ensure no filter changes image color */
}

.page-slot-games-high-payout-recommendations__promo-title {
    font-size: 1.8em;
    color: #017439;
    margin-bottom: 10px;
    font-weight: bold;
}