/* style/game-strategies-slots-tips.css */

:root {
    --page-game-strategies-slots-tips-primary-color: #007bff;
    --page-game-strategies-slots-tips-secondary-color: #ffc107;
    --page-game-strategies-slots-tips-text-dark: #212529; /* Dark text for light backgrounds */
    --page-game-strategies-slots-tips-text-light: #f8f9fa; /* Light text for dark backgrounds */
    --page-game-strategies-slots-tips-background-light: #ffffff;
    --page-game-strategies-slots-tips-background-gray: #f2f4f6;
    --page-game-strategies-slots-tips-link-color: #0056b3; /* Darker blue for links for contrast */
}

.page-game-strategies-slots-tips {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-game-strategies-slots-tips-text-dark);
    background-color: var(--page-game-strategies-slots-tips-background-light);
}

.page-game-strategies-slots-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-strategies-slots-tips__hero-section {
    background: linear-gradient(135deg, var(--page-game-strategies-slots-tips-primary-color) 0%, #0056b3 100%); /* Darker gradient for better text contrast */
    color: var(--page-game-strategies-slots-tips-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-strategies-slots-tips__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover; /* Abstract pattern for background */
    opacity: 0.1;
    z-index: 0;
}

.page-game-strategies-slots-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-game-strategies-slots-tips-text-light);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-slots-tips__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
    color: var(--page-game-strategies-slots-tips-text-light);
    position: relative;
    z-index: 1;
}

.page-game-strategies-slots-tips__cta-button {
    display: inline-block;
    background-color: var(--page-game-strategies-slots-tips-secondary-color);
    color: var(--page-game-strategies-slots-tips-text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-game-strategies-slots-tips__cta-button:hover {
    background-color: #e0a800; /* Slightly darker yellow on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-slots-tips__content-section {
    padding: 60px 0;
    background-color: var(--page-game-strategies-slots-tips-background-light);
}

.page-game-strategies-slots-tips__article {
    background-color: var(--page-game-strategies-slots-tips-background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-strategies-slots-tips__heading {
    font-size: 2.2em;
    color: var(--page-game-strategies-slots-tips-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--page-game-strategies-slots-tips-secondary-color);
    padding-bottom: 10px;
}

.page-game-strategies-slots-tips__sub-heading {
    font-size: 1.6em;
    color: var(--page-game-strategies-slots-tips-link-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-strategies-slots-tips__article p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-game-strategies-slots-tips__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-game-strategies-slots-tips__article ol {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-game-strategies-slots-tips__article li {
    margin-bottom: 0.5em;
    font-size: 1.05em;
}

.page-game-strategies-slots-tips__inline-link {
    color: var(--page-game-strategies-slots-tips-primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.page-game-strategies-slots-tips__inline-link:hover {
    color: var(--page-game-strategies-slots-tips-secondary-color);
    text-decoration: underline;
}

.page-game-strategies-slots-tips__image-wrapper {
    margin: 30px 0;
    text-align: center;
    background-color: var(--page-game-strategies-slots-tips-background-gray);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-game-strategies-slots-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.page-game-strategies-slots-tips__image-caption {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 10px;
}

.page-game-strategies-slots-tips__cta-section {
    background-color: var(--page-game-strategies-slots-tips-background-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-game-strategies-slots-tips__cta-section p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--page-game-strategies-slots-tips-text-dark);
    font-weight: 500;
}

.page-game-strategies-slots-tips__cta-section--final .page-game-strategies-slots-tips__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-game-strategies-slots-tips__hero-title {
        font-size: 2.5em;
    }
    .page-game-strategies-slots-tips__hero-subtitle {
        font-size: 1.2em;
    }
    .page-game-strategies-slots-tips__heading {
        font-size: 1.8em;
    }
    .page-game-strategies-slots-tips__sub-heading {
        font-size: 1.4em;
    }
    .page-game-strategies-slots-tips__article {
        padding: 20px;
    }
    .page-game-strategies-slots-tips__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-strategies-slots-tips__cta-section p {
        font-size: 1.1em;
    }
    .page-game-strategies-slots-tips__cta-section--final .page-game-strategies-slots-tips__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-game-strategies-slots-tips__hero-title {
        font-size: 2em;
    }
    .page-game-strategies-slots-tips__hero-subtitle {
        font-size: 1em;
    }
    .page-game-strategies-slots-tips__heading {
        font-size: 1.5em;
    }
    .page-game-strategies-slots-tips__sub-heading {
        font-size: 1.2em;
    }
    .page-game-strategies-slots-tips__hero-section {
        padding: 60px 0;
    }
    .page-game-strategies-slots-tips__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-strategies-slots-tips__cta-section p {
        font-size: 1em;
    }
    .page-game-strategies-slots-tips__cta-section--final .page-game-strategies-slots-tips__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}