/* style/game-reviews-slots-game-strategy.css */

.page-game-reviews-slots-game-strategy {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.page-game-reviews-slots-game-strategy .highlight-keyword {
    color: #FFD700; /* Gold */
    font-weight: bold;
}

/* Hero Section */
.page-game-reviews-slots-game-strategy__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C3E50 0%, #0a111a 100%); /* Dark Blue to darker */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-game-reviews-slots-game-strategy__hero-content {
    z-index: 2;
    max-width: 900px;
}

.page-game-reviews-slots-game-strategy__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for title */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-slots-game-strategy__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.5;
}

.page-game-reviews-slots-game-strategy__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #2C3E50; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-slots-game-strategy__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-game-reviews-slots-game-strategy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-game-reviews-slots-game-strategy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    filter: blur(3px);
}

/* General Section Styles */
.page-game-reviews-slots-game-strategy__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-slots-game-strategy__section:nth-of-type(even) {
    background-color: #fdfdfd;
}

.page-game-reviews-slots-game-strategy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-slots-game-strategy__section-title {
    font-size: 2.5em;
    color: #2C3E50; /* Dark blue for titles */
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-game-reviews-slots-game-strategy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-game-reviews-slots-game-strategy__intro p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Features Grid */
.page-game-reviews-slots-game-strategy__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-reviews-slots-game-strategy__feature-item {
    background-color: #2C3E50; /* Dark blue background */
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-game-reviews-slots-game-strategy__feature-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-slots-game-strategy__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) brightness(1.5) sepia(1) saturate(10) hue-rotate(0deg); /* Make icons golden */
}

.page-game-reviews-slots-game-strategy__feature-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-game-reviews-slots-game-strategy__feature-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Strategy List */
.page-game-reviews-slots-game-strategy__strategy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-slots-game-strategy__strategy-list li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-game-reviews-slots-game-strategy__strategy-list li h4 {
    font-size: 1.8em;
    color: #2C3E50; /* Dark blue for strategy titles */
    margin-bottom: 10px;
}

.page-game-reviews-slots-game-strategy__strategy-list li p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.page-game-reviews-slots-game-strategy__image--full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-slots-game-strategy__image--centered {
    display: block;
    margin: 40px auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Bonus Mechanisms */
.page-game-reviews-slots-game-strategy__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-slots-game-strategy__feature-list li {
    background-color: #f0f4f8; /* Light blue-grey background */
    border-left: 5px solid #2C3E50; /* Dark blue accent */
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-game-reviews-slots-game-strategy__feature-list li h4 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for bonus titles */
    margin-bottom: 10px;
}

.page-game-reviews-slots-game-strategy__feature-list li p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* Management List */
.page-game-reviews-slots-game-strategy__management-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-slots-game-strategy__management-list li {
    background-color: #fff;
    border-bottom: 1px dashed #e0e0e0;
    padding: 15px 0;
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.page-game-reviews-slots-game-strategy__management-list li:last-child {
    border-bottom: none;
}

.page-game-reviews-slots-game-strategy__management-list li strong {
    color: #2C3E50; /* Dark blue for strong text */
}

/* Tips List */
.page-game-reviews-slots-game-strategy__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-game-reviews-slots-game-strategy__tip-list li {
    background-color: #fff;
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.page-game-reviews-slots-game-strategy__tip-list li strong {
    color: #2C3E50;
}

/* Call to Action Bottom */
.page-game-reviews-slots-game-strategy__cta-bottom {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    color: #2C3E50; /* Dark text on gold */
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0; /* Remove bottom margin for final section */
}

.page-game-reviews-slots-game-strategy__cta-content {
    max-width: 800px;
}

.page-game-reviews-slots-game-strategy__cta-bottom .page-game-reviews-slots-game-strategy__section-title {
    color: #2C3E50; /* Dark blue for title on gold background */
    margin-bottom: 20px;
}

.page-game-reviews-slots-game-strategy__cta-bottom .page-game-reviews-slots-game-strategy__section-title::after {
    background-color: #2C3E50; /* Dark blue underline */
}

.page-game-reviews-slots-game-strategy__cta-bottom p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.page-game-reviews-slots-game-strategy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-game-reviews-slots-game-strategy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-slots-game-strategy__button--primary {
    background-color: #2C3E50; /* Dark blue button */
    color: #FFD700; /* Gold text */
}

.page-game-reviews-slots-game-strategy__button--primary:hover {
    background-color: #1a2a3a; /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-slots-game-strategy__button--secondary {
    background-color: #fff; /* White button */
    color: #2C3E50; /* Dark blue text */
    border: 2px solid #2C3E50;
}

.page-game-reviews-slots-game-strategy__button--secondary:hover {
    background-color: #e0e0e0; /* Light grey on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Floating Promo */
.page-game-reviews-slots-game-strategy__floating-promo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #FFD700; /* Gold background */
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: page-game-reviews-slots-game-strategy__pulse 2s infinite;
}

.page-game-reviews-slots-game-strategy__floating-promo a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: #2C3E50; /* Dark blue text */
    font-weight: bold;
    font-size: 1.1em;
}

.page-game-reviews-slots-game-strategy__promo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: invert(1) brightness(0.5) sepia(1) saturate(100) hue-rotate(200deg); /* Dark blue icon */
}

@keyframes page-game-reviews-slots-game-strategy__pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-reviews-slots-game-strategy__hero-title {
        font-size: 2.5em;
    }

    .page-game-reviews-slots-game-strategy__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-reviews-slots-game-strategy__section-title {
        font-size: 2em;
    }

    .page-game-reviews-slots-game-strategy__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-game-reviews-slots-game-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-reviews-slots-game-strategy__button {
        width: 100%;
    }

    .page-game-reviews-slots-game-strategy__floating-promo {
        bottom: 20px;
        right: 20px;
    }

    .page-game-reviews-slots-game-strategy__floating-promo a {
        font-size: 1em;
        padding: 8px 15px;
    }
    .page-game-reviews-slots-game-strategy__promo-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .page-game-reviews-slots-game-strategy__hero-title {
        font-size: 2em;
    }

    .page-game-reviews-slots-game-strategy__hero-subtitle {
        font-size: 1em;
    }

    .page-game-reviews-slots-game-strategy__hero-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-game-reviews-slots-game-strategy__section {
        padding: 40px 0;
    }

    .page-game-reviews-slots-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-reviews-slots-game-strategy__feature-item h3 {
        font-size: 1.4em;
    }

    .page-game-reviews-slots-game-strategy__strategy-list li h4,
    .page-game-reviews-slots-game-strategy__feature-list li h4 {
        font-size: 1.5em;
    }
}