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

/* Custom Colors */
:root {
    --bg-color: #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%);
    --primary-color: #11A84E;
    --secondary-color: #22C768;
}

.page-slot-jackpot-games-high-payout-recommendations {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color); /* Matches custom color for 'Background' */
    line-height: 1.6;
    font-size: 16px;
}

.page-slot-jackpot-games-high-payout-recommendations__section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--bg-color);
}

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

.page-slot-jackpot-games-high-payout-recommendations__section-title {
    font-size: 2.5em;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-slot-jackpot-games-high-payout-recommendations__text-content {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-jackpot-games-high-payout-recommendations__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

/* Hero Section */
.page-slot-jackpot-games-high-payout-recommendations__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Align content to bottom of hero image */
    min-height: 600px; /* Ensure hero section has a minimum height */
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: var(--bg-color);
}

.page-slot-jackpot-games-high-payout-recommendations__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-slot-jackpot-games-high-payout-recommendations__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-slot-jackpot-games-high-payout-recommendations__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
}

.page-slot-jackpot-games-high-payout-recommendations__main-title {
    font-size: 3em;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 15px var(--glow-color);
}

.page-slot-jackpot-games-high-payout-recommendations__description {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
}

/* Buttons */
.page-slot-jackpot-games-high-payout-recommendations__btn-primary,
.page-slot-jackpot-games-high-payout-recommendations__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-jackpot-games-high-payout-recommendations__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main);
    border: 2px solid var(--glow-color);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-slot-jackpot-games-high-payout-recommendations__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.6);
    transform: translateY(-2px);
}

.page-slot-jackpot-games-high-payout-recommendations__btn-secondary {
    background-color: var(--card-bg);
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
    margin-top: 15px;
}

.page-slot-jackpot-games-high-payout-recommendations__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--bg-color);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

/* Game List Section */
.page-slot-jackpot-games-high-payout-recommendations__top-games-section {
    background-color: var(--card-bg);
}

.page-slot-jackpot-games-high-payout-recommendations__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-jackpot-games-high-payout-recommendations__game-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-slot-jackpot-games-high-payout-recommendations__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(87, 227, 141, 0.3);
}

.page-slot-jackpot-games-high-payout-recommendations__game-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--glow-color);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-jackpot-games-high-payout-recommendations__game-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-slot-jackpot-games-high-payout-recommendations__game-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* Benefits Section */
.page-slot-jackpot-games-high-payout-recommendations__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-jackpot-games-high-payout-recommendations__benefit-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-slot-jackpot-games-high-payout-recommendations__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(87, 227, 141, 0.3);
}

.page-slot-jackpot-games-high-payout-recommendations__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--glow-color)); /* Allowed filter for glow effect, not color change */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-jackpot-games-high-payout-recommendations__benefit-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-slot-jackpot-games-high-payout-recommendations__benefit-description {
    color: var(--text-secondary);
    font-size: 0.95em;
}

/* Guide Section */
.page-slot-jackpot-games-high-payout-recommendations__guide-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.page-slot-jackpot-games-high-payout-recommendations__guide-list li {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-jackpot-games-high-payout-recommendations__guide-step-title {
    font-size: 1.6em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-slot-jackpot-games-high-payout-recommendations__guide-step-description {
    color: var(--text-secondary);
    font-size: 1em;
}

.page-slot-jackpot-games-high-payout-recommendations__guide-cta {
    margin-top: 40px;
}

/* FAQ Section */
.page-slot-jackpot-games-high-payout-recommendations__faq-section {
    background-color: var(--bg-color);
}

.page-slot-jackpot-games-high-payout-recommendations__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-slot-jackpot-games-high-payout-recommendations__faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-slot-jackpot-games-high-payout-recommendations__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    background-color: var(--card-bg);
    color: var(--text-main);
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-slot-jackpot-games-high-payout-recommendations__faq-item summary:hover {
    background-color: var(--deep-green);
}

.page-slot-jackpot-games-high-payout-recommendations__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-slot-jackpot-games-high-payout-recommendations__faq-qtext {
    flex-grow: 1;
    font-size: 1.1em;
}

.page-slot-jackpot-games-high-payout-recommendations__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
    transition: transform 0.3s ease;
}

.page-slot-jackpot-games-high-payout-recommendations__faq-item[open] .page-slot-jackpot-games-high-payout-recommendations__faq-toggle {
    transform: rotate(45deg);
}

.page-slot-jackpot-games-high-payout-recommendations__faq-answer {
    padding: 15px 20px;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
    border-top: 1px solid var(--divider-color);
}

/* CTA Section */
.page-slot-jackpot-games-high-payout-recommendations__cta-section {
    padding-bottom: 80px;
    background-color: var(--card-bg);
}

.page-slot-jackpot-games-high-payout-recommendations__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px solid var(--glow-color);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.4);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-jackpot-games-high-payout-recommendations__final-cta {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-jackpot-games-high-payout-recommendations__main-title {
        font-size: 2.5em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-slot-jackpot-games-high-payout-recommendations__hero-section {
        min-height: 450px;
        padding-bottom: 40px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__section {
        padding: 40px 15px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__text-content {
        font-size: 1em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__game-list,
    .page-slot-jackpot-games-high-payout-recommendations__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__game-card,
    .page-slot-jackpot-games-high-payout-recommendations__benefit-card,
    .page-slot-jackpot-games-high-payout-recommendations__guide-list li {
        padding: 20px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__game-title {
        font-size: 1.5em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__benefit-title {
        font-size: 1.3em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__guide-step-title {
        font-size: 1.4em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__btn-primary,
    .page-slot-jackpot-games-high-payout-recommendations__btn-secondary {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    /* Mobile image and container responsiveness */
    .page-slot-jackpot-games-high-payout-recommendations img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-jackpot-games-high-payout-recommendations__section,
    .page-slot-jackpot-games-high-payout-recommendations__container,
    .page-slot-jackpot-games-high-payout-recommendations__game-list,
    .page-slot-jackpot-games-high-payout-recommendations__benefits-grid,
    .page-slot-jackpot-games-high-payout-recommendations__faq-list,
    .page-slot-jackpot-games-high-payout-recommendations__guide-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-slot-jackpot-games-high-payout-recommendations__hero-section {
      padding-top: 10px !important; /* body already handles --header-offset */
    }
}

@media (max-width: 480px) {
    .page-slot-jackpot-games-high-payout-recommendations__main-title {
        font-size: 1.8em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__section-title {
        font-size: 1.5em;
    }
    .page-slot-jackpot-games-high-payout-recommendations__hero-content {
      padding: 15px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__btn-primary,
    .page-slot-jackpot-games-high-payout-recommendations__btn-secondary {
      font-size: 0.85em;
      padding: 10px 20px;
    }
    .page-slot-jackpot-games-high-payout-recommendations__game-image,
    .page-slot-jackpot-games-high-payout-recommendations__benefit-icon,
    .page-slot-jackpot-games-high-payout-recommendations__cta-image {
      min-width: 200px !important;
      min-height: 200px !important;
      width: 100% !important;
      height: auto !important;
    }
}