/* style/slots-themes.css */

/* Variables for colors */
:root {
    --page-slots-themes-primary-color: #FFD700; /* Gold */
    --page-slots-themes-secondary-color: #8B0000; /* Deep Red */
    --page-slots-themes-dark-background: #1a1a1a; /* Dark Gray for background */
    --page-slots-themes-light-text: #FFFFFF; /* White */
    --page-slots-themes-dark-text: #333333; /* Dark Gray for text on light bg */
    --page-slots-themes-accent-color: #00BFFF; /* Deep Sky Blue for highlights */
    --page-slots-themes-button-hover: #b39700; /* Darker gold for hover */
    --page-slots-themes-button-secondary-hover: #ae4d4d; /* Lighter red for hover */
}

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

.page-slots-themes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slots-themes__content-block {
    padding: 60px 0;
}

.page-slots-themes__hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--page-slots-themes-primary-color) 0%, var(--page-slots-themes-secondary-color) 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-slots-themes__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    filter: grayscale(100%);
}

.page-slots-themes__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-slots-themes__hero-section .page-slots-themes__container {
    position: relative;
    z-index: 2;
    color: var(--page-slots-themes-light-text);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.page-slots-themes__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-slots-themes-light-text);
    line-height: 1.2;
}

.page-slots-themes__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slots-themes__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-slots-themes__btn--primary {
    background-color: var(--page-slots-themes-primary-color);
    color: var(--page-slots-themes-secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-themes__btn--primary:hover {
    background-color: var(--page-slots-themes-button-hover);
    transform: translateY(-2px);
}

.page-slots-themes__section-title {
    font-size: 2.5em;
    color: var(--page-slots-themes-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-slots-themes__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-slots-themes-secondary-color);
    border-radius: 2px;
}

.page-slots-themes__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-slots-themes-light-text);
    text-align: justify;
}

.page-slots-themes__paragraph strong {
    color: var(--page-slots-themes-primary-color);
}

.page-slots-themes__paragraph--center {
    text-align: center;
}

/* Themes Overview Section */
.page-slots-themes__themes-overview-section {
    background-color: #222222;
}

.page-slots-themes__theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-themes__theme-card {
    background-color: #333333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 25px;
}

.page-slots-themes__theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-slots-themes__theme-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--page-slots-themes-primary-color);
}

.page-slots-themes__theme-title {
    font-size: 1.8em;
    color: var(--page-slots-themes-primary-color);
    margin: 25px 15px 15px;
    font-weight: bold;
}

.page-slots-themes__theme-description {
    font-size: 1em;
    color: #cccccc;
    padding: 0 20px;
    text-align: justify;
}

/* Benefits Section */
.page-slots-themes__benefits-section {
    background-color: var(--page-slots-themes-dark-background);
}

.page-slots-themes__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-slots-themes__benefits-list li {
    background-color: #333333;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-slots-themes__benefits-list li:hover {
    transform: translateY(-5px);
}

.page-slots-themes__benefit-title {
    font-size: 1.6em;
    color: var(--page-slots-themes-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slots-themes__benefits-list .page-slots-themes__paragraph {
    font-size: 1em;
    color: #cccccc;
    text-align: left;
}

/* CTA Section */
.page-slots-themes__cta-section {
    background: linear-gradient(45deg, var(--page-slots-themes-secondary-color), #4d0000);
    color: var(--page-slots-themes-light-text);
    text-align: center;
}

.page-slots-themes__cta-section--alt-bg {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.page-slots-themes__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-slots-themes__steps-list li {
    background-color: #444444;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc(50% - 30px);
    max-width: 450px;
    text-align: left;
}

.page-slots-themes__step-title {
    font-size: 1.7em;
    color: var(--page-slots-themes-primary-color);
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    padding-left: 40px;
}

.page-slots-themes__steps-list li:nth-child(1) .page-slots-themes__step-title::before,
.page-slots-themes__steps-list li:nth-child(2) .page-slots-themes__step-title::before,
.page-slots-themes__steps-list li:nth-child(3) .page-slots-themes__step-title::before,
.page-slots-themes__steps-list li:nth-child(4) .page-slots-themes__step-title::before {
    content: '1'; /* Placeholder, JS will update */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--page-slots-themes-secondary-color);
    color: var(--page-slots-themes-light-text);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

.page-slots-themes__btn--secondary {
    background-color: var(--page-slots-themes-secondary-color);
    color: var(--page-slots-themes-primary-color);
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-themes__btn--secondary:hover {
    background-color: var(--page-slots-themes-button-secondary-hover);
    transform: translateY(-2px);
}

/* Promotions Section */
.page-slots-themes__promotions-section {
    background-color: #222222;
}

.page-slots-themes__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-slots-themes__promo-card {
    background-color: #333333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.page-slots-themes__promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--page-slots-themes-secondary-color);
}

.page-slots-themes__promo-title {
    font-size: 1.8em;
    color: var(--page-slots-themes-primary-color);
    margin: 25px 15px 15px;
    font-weight: bold;
}

.page-slots-themes__promo-description,
.page-slots-themes__promo-card .page-slots-themes__paragraph {
    font-size: 1em;
    color: #cccccc;
    padding: 0 20px;
    text-align: justify;
    flex-grow: 1;
}

.page-slots-themes__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 20px;
    background-color: var(--page-slots-themes-accent-color);
    color: var(--page-slots-themes-dark-text);
}

.page-slots-themes__btn--small:hover {
    background-color: #009acd;
    transform: translateY(-2px);
}

/* Responsible Gaming Section */
.page-slots-themes__responsible-gaming-section {
    background: #1a1a1a;
}

.page-slots-themes__responsible-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slots-themes__responsible-list li {
    background-color: #333333;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-themes__responsible-list strong {
    color: var(--page-slots-themes-primary-color);
}

.page-slots-themes__responsible-list .page-slots-themes__paragraph {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 0;
}

/* Conclusion Section */
.page-slots-themes__conclusion-section {
    background-color: var(--page-slots-themes-dark-background);
    text-align: center;
}

.page-slots-themes__btn--final-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-slots-themes-primary-color);
    color: var(--page-slots-themes-secondary-color);
    padding: 20px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-slots-themes__btn--final-cta:hover {
    background-color: var(--page-slots-themes-button-hover);
    transform: translateY(-3px);
}

.page-slots-themes__btn-text {
    margin-right: 15px;
}

.page-slots-themes__btn-icon {
    width: 24px;
    height: 24px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(300deg) brightness(1.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slots-themes__hero-title {
        font-size: 2.8em;
    }
    .page-slots-themes__hero-subtitle {
        font-size: 1.2em;
    }
    .page-slots-themes__section-title {
        font-size: 2em;
    }
    .page-slots-themes__theme-grid,
    .page-slots-themes__benefits-list,
    .page-slots-themes__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-slots-themes__steps-list li {
        flex: 1 1 calc(100% - 20px);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-slots-themes__hero-section {
        padding: 80px 0;
        min-height: 500px;
    }
    .page-slots-themes__hero-title {
        font-size: 2.2em;
    }
    .page-slots-themes__hero-subtitle {
        font-size: 1em;
    }
    .page-slots-themes__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-themes__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slots-themes__paragraph {
        font-size: 0.95em;
    }
    .page-slots-themes__theme-title,
    .page-slots-themes__benefit-title,
    .page-slots-themes__step-title,
    .page-slots-themes__promo-title {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .page-slots-themes__hero-section {
        padding: 60px 0;
        min-height: 400px;
    }
    .page-slots-themes__hero-title {
        font-size: 1.8em;
    }
    .page-slots-themes__hero-subtitle {
        font-size: 0.9em;
    }
    .page-slots-themes__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-slots-themes__section-title {
        font-size: 1.5em;
    }
    .page-slots-themes__theme-grid,
    .page-slots-themes__benefits-list,
    .page-slots-themes__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-themes__steps-list li {
        padding: 20px;
    }
    .page-slots-themes__btn--final-cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-slots-themes__btn-text {
        margin-right: 10px;
    }
    .page-slots-themes__btn-icon {
        width: 20px;
        height: 20px;
    }
}

/* Ensure color contrast for all text */
.page-slots-themes__paragraph,
.page-slots-themes__theme-description,
.page-slots-themes__benefits-list .page-slots-themes__paragraph,
.page-slots-themes__promo-description,
.page-slots-themes__promo-card .page-slots-themes__paragraph,
.page-slots-themes__responsible-list .page-slots-themes__paragraph {
    color: #cccccc; /* Light gray for body text on dark background */
}

.page-slots-themes__hero-title,
.page-slots-themes__hero-subtitle,
.page-slots-themes__btn--primary,
.page-slots-themes__btn--secondary,
.page-slots-themes__btn--small,
.page-slots-themes__btn--final-cta {
    color: inherit; /* Ensure text color is set by button */
}

.page-slots-themes__btn--primary {
    color: #8B0000; /* Deep Red text on Gold button */
}

.page-slots-themes__btn--secondary {
    color: #FFD700; /* Gold text on Deep Red button */
}

.page-slots-themes__btn--small {
    color: #333333; /* Dark text on Accent button */
}

.page-slots-themes__btn--final-cta {
    color: #8B0000; /* Deep Red text on Gold button */
}

.page-slots-themes__hero-section .page-slots-themes__container .page-slots-themes__hero-title,
.page-slots-themes__hero-section .page-slots-themes__container .page-slots-themes__hero-subtitle {
    color: #FFFFFF; /* White text on hero section for maximum contrast */
}

.page-slots-themes__section-title,
.page-slots-themes__theme-title,
.page-slots-themes__benefit-title,
.page-slots-themes__step-title,
.page-slots-themes__promo-title {
    color: var(--page-slots-themes-primary-color); /* Gold titles on dark background */
}

.page-slots-themes__responsible-list strong {
    color: var(--page-slots-themes-primary-color);
}