/* style/lottery-games-security-fairness.css */
.page-lottery-games-security-fairness {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A2342; /* Main background color */
}

.page-lottery-games-security-fairness__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-lottery-games-security-fairness__hero {
    background: linear-gradient(135deg, #0A2342 0%, #304C70 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.page-lottery-games-security-fairness__hero-content {
    max-width: 600px;
    text-align: left;
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for emphasis */
}

.page-lottery-games-security-fairness__hero-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly off-white for better contrast with gold */
}

.page-lottery-games-security-fairness__hero-image-wrapper {
    flex-shrink: 0;
}

.page-lottery-games-security-fairness__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-security-fairness__section {
    padding: 60px 0;
    text-align: center;
}

.page-lottery-games-security-fairness__section--why-debet {
    background-color: #0A2342;
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__section--randomness {
    background-color: #1A3A5E; /* Slightly lighter dark blue */
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__section--data-protection {
    background-color: #0A2342;
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__section--transparency {
    background-color: #1A3A5E;
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__section--social-responsibility {
    background-color: #0A2342;
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__section--lottery-variety {
    background-color: #1A3A5E;
    color: #FFFFFF;
}

.page-lottery-games-security-fairness__section--conclusion {
    background-color: #FFD700; /* Gold background for conclusion */
    color: #0A2342; /* Dark blue text on gold */
    padding: 80px 0;
}

.page-lottery-games-security-fairness__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for titles on dark backgrounds */
}

.page-lottery-games-security-fairness__section--conclusion .page-lottery-games-security-fairness__section-title {
    color: #0A2342; /* Dark blue title on gold background */
}

.page-lottery-games-security-fairness__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for sub-titles on dark backgrounds */
}

.page-lottery-games-security-fairness__section--conclusion .page-lottery-games-security-fairness__sub-title {
    color: #0A2342;
}

.page-lottery-games-security-fairness__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0; /* Slightly off-white for better contrast */
}

.page-lottery-games-security-fairness__section--conclusion .page-lottery-games-security-fairness__text {
    color: #0A2342;
}

.page-lottery-games-security-fairness__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-security-fairness__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-lottery-games-security-fairness__feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-lottery-games-security-fairness__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-lottery-games-security-fairness__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-lottery-games-security-fairness__list li {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-security-fairness__list li:last-child {
    margin-bottom: 0;
}

.page-lottery-games-security-fairness__content-block {
    text-align: left;
    margin-top: 40px;
}

.page-lottery-games-security-fairness__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-lottery-games-security-fairness__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-lottery-games-security-fairness__btn--primary:hover {
    background-color: #E0B500;
    color: #000000;
}

.page-lottery-games-security-fairness__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-games-security-fairness__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-lottery-games-security-fairness__inline-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-lottery-games-security-fairness__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-lottery-games-security-fairness__hero-content {
        max-width: 100%;
        text-align: center;
    }

    .page-lottery-games-security-fairness__hero-title {
        font-size: 2.5em;
    }

    .page-lottery-games-security-fairness__hero-image {
        max-width: 80%;
    }

    .page-lottery-games-security-fairness__section-title {
        font-size: 2em;
    }

    .page-lottery-games-security-fairness__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-security-fairness__hero {
        padding: 60px 20px;
    }

    .page-lottery-games-security-fairness__hero-title {
        font-size: 2em;
    }

    .page-lottery-games-security-fairness__hero-subtitle {
        font-size: 1em;
    }

    .page-lottery-games-security-fairness__section {
        padding: 40px 0;
    }

    .page-lottery-games-security-fairness__section-title {
        font-size: 1.8em;
    }

    .page-lottery-games-security-fairness__sub-title {
        font-size: 1.3em;
    }

    .page-lottery-games-security-fairness__text {
        font-size: 0.95em;
    }

    .page-lottery-games-security-fairness__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-security-fairness__hero-title {
        font-size: 1.8em;
    }

    .page-lottery-games-security-fairness__hero-subtitle {
        font-size: 0.9em;
    }

    .page-lottery-games-security-fairness__section-title {
        font-size: 1.5em;
    }

    .page-lottery-games-security-fairness__sub-title {
        font-size: 1.2em;
    }

    .page-lottery-games-security-fairness__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}