/* style/betting-games-slots.css */

/* Biến CSS */
:root {
    --page-betting-games-slots-primary-color: #1A237E;
    --page-betting-games-slots-secondary-color: #FFC107;
    --page-betting-games-slots-text-light: #ffffff;
    --page-betting-games-slots-text-dark: #333333;
    --page-betting-games-slots-background-light: #f4f7f6;
    --page-betting-games-slots-background-dark: #11184c;
    --page-betting-games-slots-accent-color-light: #e5dc81; /* Complementary to primary */
    --page-betting-games-slots-accent-color-dark: #003ef8; /* Complementary to secondary */
}

.page-betting-games-slots {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--page-betting-games-slots-text-dark);
    background-color: var(--page-betting-games-slots-background-light);
}

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

.page-betting-games-slots h1,
.page-betting-games-slots h2,
.page-betting-games-slots h3 {
    color: var(--page-betting-games-slots-primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-betting-games-slots h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--page-betting-games-slots-text-light);
}

.page-betting-games-slots h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    border-bottom: 2px solid var(--page-betting-games-slots-secondary-color);
    padding-bottom: 10px;
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-betting-games-slots h3 {
    font-size: 1.6em;
    color: var(--page-betting-games-slots-primary-color);
}

.page-betting-games-slots p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-betting-games-slots a {
    color: var(--page-betting-games-slots-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-betting-games-slots a:hover {
    color: var(--page-betting-games-slots-secondary-color);
}

.page-betting-games-slots .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin-top: 20px;
}

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

.page-betting-games-slots .btn-primary:hover {
    background-color: var(--page-betting-games-slots-accent-color-light);
    color: var(--page-betting-games-slots-primary-color);
    transform: translateY(-2px);
}

.page-betting-games-slots .btn-secondary {
    background-color: transparent;
    color: var(--page-betting-games-slots-primary-color);
    border: 2px solid var(--page-betting-games-slots-primary-color);
}

.page-betting-games-slots .btn-secondary:hover {
    background-color: var(--page-betting-games-slots-primary-color);
    color: var(--page-betting-games-slots-text-light);
    transform: translateY(-2px);
}

.page-betting-games-slots .btn-large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Hero Section */
.page-betting-games-slots .hero-section {
    background: linear-gradient(135deg, var(--page-betting-games-slots-primary-color) 0%, var(--page-betting-games-slots-background-dark) 100%);
    padding: 80px 0 40px;
    text-align: center;
    color: var(--page-betting-games-slots-text-light);
    position: relative;
    overflow: hidden;
}

.page-betting-games-slots .hero-section h1 {
    margin-bottom: 15px;
}

.page-betting-games-slots .hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--page-betting-games-slots-text-light);
}

.page-betting-games-slots .hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

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

/* General Section Styling */
.page-betting-games-slots section {
    padding: 60px 0;
}

.page-betting-games-slots section:nth-of-type(even) {
    background-color: var(--page-betting-games-slots-background-light);
}

.page-betting-games-slots section:nth-of-type(odd) {
    background-color: #ffffff;
}

/* Grid Layouts */
.page-betting-games-slots .grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-betting-games-slots .grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Card Styles */
.page-betting-games-slots .slot-type-card,
.page-betting-games-slots .promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-games-slots .slot-type-card:hover,
.page-betting-games-slots .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-betting-games-slots .card-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-betting-games-slots .slot-type-card h3,
.page-betting-games-slots .promo-card h3 {
    color: var(--page-betting-games-slots-primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Highlights Section */
.page-betting-games-slots .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-games-slots .highlight-item .icon-small {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain;
}

.page-betting-games-slots .highlight-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.3em;
}

/* Provider List */
.page-betting-games-slots .provider-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-betting-games-slots .provider-list li {
    background-color: var(--page-betting-games-slots-primary-color);
    color: var(--page-betting-games-slots-text-light);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-betting-games-slots .provider-list li:hover {
    background-color: var(--page-betting-games-slots-secondary-color);
    color: var(--page-betting-games-slots-primary-color);
}

/* How-to-Play Steps */
.page-betting-games-slots .steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-betting-games-slots .steps-list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-games-slots .steps-list li h3 {
    color: var(--page-betting-games-slots-secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-betting-games-slots .steps-list li p {
    font-size: 1.1em;
}

.page-betting-games-slots .step-image {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tips Section */
.page-betting-games-slots .tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-betting-games-slots .tips-list li {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-betting-games-slots .tips-list li .icon-small {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-betting-games-slots .tips-list li h3 {
    color: var(--page-betting-games-slots-primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* Promotions Section */
.page-betting-games-slots .promo-card {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Safety Section */
.page-betting-games-slots .safety-section .full-width-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-betting-games-slots .faq-section {
    background-color: var(--page-betting-games-slots-background-light);
}

.page-betting-games-slots .faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-betting-games-slots .faq-item h3 {
    color: var(--page-betting-games-slots-primary-color);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-betting-games-slots .faq-item p {
    font-size: 1em;
    margin-bottom: 0;
    display: block; /* Ensure paragraph is visible */
}

/* Call to Action Section */
.page-betting-games-slots .cta-section {
    background: var(--page-betting-games-slots-primary-color);
    color: var(--page-betting-games-slots-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-betting-games-slots .cta-section h2 {
    color: var(--page-betting-games-slots-secondary-color);
    margin-bottom: 20px;
}

.page-betting-games-slots .cta-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--page-betting-games-slots-text-light);
}

.page-betting-games-slots .cta-section a {
    color: var(--page-betting-games-slots-text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-betting-games-slots h1 {
        font-size: 2.2em;
    }

    .page-betting-games-slots h2 {
        font-size: 1.8em;
    }

    .page-betting-games-slots h3 {
        font-size: 1.4em;
    }

    .page-betting-games-slots .hero-section {
        padding: 60px 0 30px;
    }

    .page-betting-games-slots .hero-section p {
        font-size: 1em;
    }

    .page-betting-games-slots .grid-3-cols,
    .page-betting-games-slots .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .page-betting-games-slots .steps-list li {
        padding: 20px;
    }

    .page-betting-games-slots .step-image {
        max-width: 100%;
    }

    .page-betting-games-slots .tips-list {
        grid-template-columns: 1fr;
    }

    .page-betting-games-slots .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-betting-games-slots .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-betting-games-slots .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-betting-games-slots .hero-image {
        max-width: 100%;
    }
}