/* style/slots-games-theme-categories.css */

/* Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f8f9fa;
    --background-dark: #212529;
    --border-color: #dee2e6;
}

/* Base styles for the page content */
.page-slots-games-theme-categories {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

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

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

.page-slots-games-theme-categories__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* Hero Section */
.page-slots-games-theme-categories__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.page-slots-games-theme-categories__hero-content {
    max-width: 600px;
    flex: 1 1 500px;
    padding: 20px;
}

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

.page-slots-games-theme-categories__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-slots-games-theme-categories__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slots-games-theme-categories__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-slots-games-theme-categories__btn--primary {
    background-color: var(--secondary-color);
    color: var(--background-dark);
    border: 2px solid var(--secondary-color);
}

.page-slots-games-theme-categories__btn--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-theme-categories__btn--secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-slots-games-theme-categories__btn--secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-theme-categories__hero-image-wrapper {
    flex: 1 1 400px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-slots-games-theme-categories__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Themes Overview Section */
.page-slots-games-theme-categories__themes-overview {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-slots-games-theme-categories__theme-card {
    background-color: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-theme-categories__theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-slots-games-theme-categories__theme-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.page-slots-games-theme-categories__theme-card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-slots-games-theme-categories__theme-card-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px;
    margin-bottom: 25px;
}

.page-slots-games-theme-categories__btn--small {
    padding: 10px 25px;
    font-size: 0.95em;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-slots-games-theme-categories__btn--small:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.page-slots-games-theme-categories__benefits-section {
    background-color: #f0f4f8;
    padding: 80px 0;
    text-align: center;
}

.page-slots-games-theme-categories__benefits-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-slots-games-theme-categories__benefits-list li {
    background-color: var(--text-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 1.1em;
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.2s ease;
}

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

.page-slots-games-theme-categories__benefits-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.page-slots-games-theme-categories__benefits-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* CTA Full Width Section */
.page-slots-games-theme-categories__cta-full-width {
    background: linear-gradient(45deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-slots-games-theme-categories__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-slots-games-theme-categories__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-slots-games-theme-categories__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-slots-games-theme-categories__cta-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-slots-games-theme-categories__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* How to Choose Section */
.page-slots-games-theme-categories__how-to-choose {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-slots-games-theme-categories__choice-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-slots-games-theme-categories__choice-item:hover {
    transform: translateY(-7px);
}

.page-slots-games-theme-categories__choice-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-slots-games-theme-categories__choice-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-slots-games-theme-categories__choice-text {
    font-size: 1em;
    color: #666;
}

.page-slots-games-theme-categories__section-description--last {
    margin-top: 50px;
    margin-bottom: 0;
}

/* Related Content Section */
.page-slots-games-theme-categories__related-content {
    background-color: #e9ecef;
    padding: 80px 0;
    text-align: center;
}

.page-slots-games-theme-categories__related-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.page-slots-games-theme-categories__related-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-slots-games-theme-categories__related-link:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-theme-categories__related-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact CTA Section */
.page-slots-games-theme-categories__contact-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-slots-games-theme-categories__contact-cta .page-slots-games-theme-categories__section-title {
    color: var(--text-light);
}

.page-slots-games-theme-categories__contact-cta .page-slots-games-theme-categories__section-title::after {
    background-color: var(--secondary-color);
}

.page-slots-games-theme-categories__contact-cta .page-slots-games-theme-categories__section-description {
    color: var(--text-light);
    opacity: 0.9;
}

.page-slots-games-theme-categories__contact-cta .page-slots-games-theme-categories__btn--primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--background-dark);
    margin-top: 30px;
}

.page-slots-games-theme-categories__contact-cta .page-slots-games-theme-categories__btn--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
}

/* Responsible Gambling Section */
.page-slots-games-theme-categories__responsible-gambling {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-slots-games-theme-categories__safety-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-slots-games-theme-categories__hero-title {
        font-size: 2.8em;
    }
    .page-slots-games-theme-categories__hero-description {
        font-size: 1.1em;
    }
    .page-slots-games-theme-categories__section-title {
        font-size: 2em;
    }
    .page-slots-games-theme-categories__cta-title {
        font-size: 2.2em;
    }
    .page-slots-games-theme-categories__hero-section {
        flex-direction: column;
    }
    .page-slots-games-theme-categories__hero-content, .page-slots-games-theme-categories__hero-image-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-slots-games-theme-categories__hero-title {
        font-size: 2.2em;
    }
    .page-slots-games-theme-categories__hero-description {
        font-size: 1em;
    }
    .page-slots-games-theme-categories__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slots-games-theme-categories__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-slots-games-theme-categories__theme-grid, .page-slots-games-theme-categories__choice-grid {
        grid-template-columns: 1fr;
    }
    .page-slots-games-theme-categories__benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-slots-games-theme-categories__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-theme-categories__cta-title {
        font-size: 1.8em;
    }
    .page-slots-games-theme-categories__related-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-slots-games-theme-categories__hero-title {
        font-size: 1.8em;
    }
    .page-slots-games-theme-categories__section-title {
        font-size: 1.6em;
    }
    .page-slots-games-theme-categories__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-slots-games-theme-categories__btn {
        width: 100%;
        max-width: 280px;
    }
    .page-slots-games-theme-categories__btn--lg {
        width: 100%;
        max-width: 300px;
    }
    .page-slots-games-theme-categories__theme-card-title, .page-slots-games-theme-categories__choice-title {
        font-size: 1.5em;
    }
}