/* style/popular-games-jackpot-winners.css */

/* Biến CSS */
:root {
    --page-popular-games-jackpot-winners-primary-color: #003366;
    --page-popular-games-jackpot-winners-secondary-color: #FFD700;
    --page-popular-games-jackpot-winners-accent-color: #CC0000;
    --page-popular-games-jackpot-winners-text-dark: #1a1a1a;
    --page-popular-games-jackpot-winners-text-light: #ffffff;
    --page-popular-games-jackpot-winners-bg-light: #f9f9f9;
    --page-popular-games-jackpot-winners-card-bg: #ffffff;
    --page-popular-games-jackpot-winners-border-color: #e0e0e0;
}

.page-popular-games-jackpot-winners {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-popular-games-jackpot-winners-text-dark);
    background-color: var(--page-popular-games-jackpot-winners-bg-light);
}

.page-popular-games-jackpot-winners__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-popular-games-jackpot-winners__hero-section {
    background: linear-gradient(135deg, var(--page-popular-games-jackpot-winners-primary-color), #004d99);
    color: var(--page-popular-games-jackpot-winners-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-popular-games-jackpot-winners__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-popular-games-jackpot-winners-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-popular-games-jackpot-winners__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Đảm bảo độ tương phản */
}

/* Buttons */
.page-popular-games-jackpot-winners__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-popular-games-jackot-winners__btn--primary {
    background-color: var(--page-popular-games-jackpot-winners-secondary-color);
    color: var(--page-popular-games-jackpot-winners-primary-color);
}

.page-popular-games-jackpot-winners__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-popular-games-jackpot-winners__btn--secondary {
    background-color: var(--page-popular-games-jackpot-winners-primary-color);
    color: var(--page-popular-games-jackpot-winners-secondary-color);
    border: 2px solid var(--page-popular-games-jackpot-winners-secondary-color);
    margin-right: 15px;
}

.page-popular-games-jackpot-winners__btn--secondary:hover {
    background-color: var(--page-popular-games-jackpot-winners-secondary-color);
    color: var(--page-popular-games-jackpot-winners-primary-color);
    transform: translateY(-3px);
}

.page-popular-games-jackpot-winners__btn--ghost {
    background-color: transparent;
    color: var(--page-popular-games-jackpot-winners-primary-color);
    border: 2px solid var(--page-popular-games-jackpot-winners-primary-color);
}

.page-popular-games-jackpot-winners__btn--ghost:hover {
    background-color: var(--page-popular-games-jackpot-winners-primary-color);
    color: var(--page-popular-games-jackpot-winners-text-light);
    transform: translateY(-3px);
}

.page-popular-games-jackpot-winners__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: var(--page-popular-games-jackpot-winners-primary-color);
    color: var(--page-popular-games-jackpot-winners-secondary-color);
    border: 1px solid var(--page-popular-games-jackpot-winners-secondary-color);
}

.page-popular-games-jackpot-winners__btn--small:hover {
    background-color: var(--page-popular-games-jackpot-winners-secondary-color);
    color: var(--page-popular-games-jackpot-winners-primary-color);
}

/* Section Titles */
.page-popular-games-jackpot-winners__section-title {
    font-size: 2.5em;
    color: var(--page-popular-games-jackpot-winners-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-popular-games-jackpot-winners__section-title--red {
    color: var(--page-popular-games-jackpot-winners-accent-color);
}

.page-popular-games-jackpot-winners__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--page-popular-games-jackpot-winners-text-dark);
}

/* Recent Winners Section */
.page-popular-games-jackpot-winners__recent-winners {
    padding: 80px 0;
    background-color: var(--page-popular-games-jackpot-winners-bg-light);
}

.page-popular-games-jackpot-winners__winner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-popular-games-jackpot-winners__winner-card {
    background-color: var(--page-popular-games-jackpot-winners-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-popular-games-jackpot-winners__winner-card:hover {
    transform: translateY(-5px);
}

.page-popular-games-jackpot-winners__winner-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--page-popular-games-jackpot-winners-secondary-color);
}

.page-popular-games-jackpot-winners__winner-name {
    font-size: 1.8em;
    color: var(--page-popular-games-jackpot-winners-primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-popular-games-jackpot-winners__winner-detail {
    font-size: 1.1em;
    color: var(--page-popular-games-jackpot-winners-text-dark);
    margin-bottom: 5px;
}

.page-popular-games-jackpot-winners__highlight {
    color: var(--page-popular-games-jackpot-winners-accent-color);
    font-weight: bold;
}

/* Featured Games Section */
.page-popular-games-jackpot-winners__featured-games {
    padding: 80px 0;
    background-color: var(--page-popular-games-jackpot-winners-primary-color);
    color: var(--page-popular-games-jackpot-winners-text-light);
}

.page-popular-games-jackpot-winners__featured-games .page-popular-games-jackpot-winners__section-title,
.page-popular-games-jackpot-winners__featured-games .page-popular-games-jackpot-winners__section-description {
    color: var(--page-popular-games-jackpot-winners-text-light);
}

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

.page-popular-games-jackpot-winners__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--page-popular-games-jackpot-winners-text-light);
}

.page-popular-games-jackpot-winners__game-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-popular-games-jackpot-winners__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--page-popular-games-jackpot-winners-secondary-color);
}

.page-popular-games-jackpot-winners__game-title {
    font-size: 2em;
    color: var(--page-popular-games-jackpot-winners-secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-popular-games-jackpot-winners__game-info {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-popular-games-jackpot-winners__game-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.page-popular-games-jackpot-winners__featured-games .page-popular-games-jackpot-winners__highlight {
    color: var(--page-popular-games-jackpot-winners-secondary-color);
}

/* Success Stories Section */
.page-popular-games-jackpot-winners__success-stories {
    padding: 80px 0;
    background-color: var(--page-popular-games-jackpot-winners-bg-light);
}

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

.page-popular-games-jackpot-winners__story-card {
    background-color: var(--page-popular-games-jackpot-winners-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-popular-games-jackpot-winners__story-card:hover {
    transform: translateY(-5px);
}

.page-popular-games-jackpot-winners__story-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--page-popular-games-jackpot-winners-primary-color);
}

.page-popular-games-jackpot-winners__story-quote {
    font-style: italic;
    font-size: 1.1em;
    color: var(--page-popular-games-jackpot-winners-text-dark);
    margin-bottom: 15px;
}

.page-popular-games-jackpot-winners__story-quote p {
    margin-bottom: 10px;
}

.page-popular-games-jackpot-winners__story-quote cite {
    display: block;
    font-weight: bold;
    color: var(--page-popular-games-jackpot-winners-primary-color);
    font-style: normal;
}

/* Why goo88d Section */
.page-popular-games-jackpot-winners__why-goo88d {
    padding: 80px 0;
    background-color: var(--page-popular-games-jackpot-winners-primary-color);
    color: var(--page-popular-games-jackpot-winners-text-light);
}

.page-popular-games-jackpot-winners__why-goo88d .page-popular-games-jackpot-winners__section-title,
.page-popular-games-jackpot-winners__why-goo88d .page-popular-games-jackpot-winners__section-description {
    color: var(--page-popular-games-jackpot-winners-text-light);
}

.page-popular-games-jackpot-winners__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-popular-games-jackpot-winners__feature-list li {
    background-color: rgba(255, 255, 255, 0.1);
    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-popular-games-jackpot-winners__feature-list li:hover {
    transform: translateY(-5px);
}

.page-popular-games-jackpot-winners__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(287deg) brightness(100%) contrast(100%); /* Makes icons white */
}

.page-popular-games-jackpot-winners__feature-list h3 {
    font-size: 1.8em;
    color: var(--page-popular-games-jackpot-winners-secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-popular-games-jackpot-winners__feature-list p {
    font-size: 1em;
    color: #c0c0c0;
}

/* Responsible Gambling Section */
.page-popular-games-jackpot-winners__responsible-gambling {
    padding: 80px 0;
    background-color: var(--page-popular-games-jackpot-winners-bg-light);
}

.page-popular-games-jackpot-winners__responsible-gambling .page-popular-games-jackpot-winners__section-description {
    color: var(--page-popular-games-jackpot-winners-text-dark);
}

.page-popular-games-jackpot-winners__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-popular-games-jackpot-winners__tips-list li {
    background-color: var(--page-popular-games-jackpot-winners-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: var(--page-popular-games-jackpot-winners-text-dark);
    border-left: 5px solid var(--page-popular-games-jackpot-winners-accent-color);
}

.page-popular-games-jackpot-winners__tip-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(87%) saturate(7500%) hue-rotate(352deg) brightness(88%) contrast(110%); /* Makes icons red */
}

.page-popular-games-jackpot-winners__responsible-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    color: var(--page-popular-games-jackpot-winners-primary-color);
    font-weight: bold;
}

/* CTA Blocks */
.page-popular-games-jackpot-winners__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(0, 51, 102, 0.05); /* Light primary color tint */
    border-radius: 10px;
}

.page-popular-games-jackpot-winners__cta-block--alt {
    background-color: rgba(255, 215, 0, 0.1);
}

.page-popular-games-jackpot-winners__cta-block p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-popular-games-jackpot-winners-primary-color);
    font-weight: 500;
}

.page-popular-games-jackpot-winners__cta-block--alt p {
    color: var(--page-popular-games-jackpot-winners-text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-popular-games-jackpot-winners__hero-title {
        font-size: 2.8em;
    }

    .page-popular-games-jackpot-winners__hero-subtitle {
        font-size: 1.3em;
    }

    .page-popular-games-jackpot-winners__section-title {
        font-size: 2em;
    }

    .page-popular-games-jackpot-winners__section-description {
        font-size: 1em;
    }

    .page-popular-games-jackpot-winners__winner-grid,
    .page-popular-games-jackpot-winners__game-grid,
    .page-popular-games-jackpot-winners__story-carousel,
    .page-popular-games-jackpot-winners__feature-list,
    .page-popular-games-jackpot-winners__tips-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-popular-games-jackpot-winners__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-popular-games-jackpot-winners__hero-section {
        padding: 80px 0;
    }

    .page-popular-games-jackpot-winners__hero-title {
        font-size: 2.2em;
    }

    .page-popular-games-jackpot-winners__hero-subtitle {
        font-size: 1.1em;
    }

    .page-popular-games-jackpot-winners__section-title {
        font-size: 1.8em;
    }

    .page-popular-games-jackpot-winners__btn {
        display: block;
        margin: 15px auto;
        width: fit-content;
    }

    .page-popular-games-jackpot-winners__btn--secondary {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-popular-games-jackpot-winners__hero-section {
        padding: 60px 0;
    }

    .page-popular-games-jackpot-winners__hero-title {
        font-size: 1.8em;
    }

    .page-popular-games-jackpot-winners__hero-subtitle {
        font-size: 0.9em;
    }

    .page-popular-games-jackpot-winners__section-title {
        font-size: 1.5em;
    }

    .page-popular-games-jackpot-winners__winner-grid,
    .page-popular-games-jackpot-winners__game-grid,
    .page-popular-games-jackpot-winners__story-carousel,
    .page-popular-games-jackpot-winners__feature-list,
    .page-popular-games-jackpot-winners__tips-list {
        grid-template-columns: 1fr;
    }

    .page-popular-games-jackpot-winners__cta-block {
        padding: 30px 20px;
    }

    .page-popular-games-jackpot-winners__cta-block p {
        font-size: 1.1em;
    }
}