/* style/games-lottery.css */
.page-games-lottery {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

.page-games-lottery__hero {
    background: linear-gradient(135deg, #1A202C, #2c3e50); /* Subtle gradient for hero */
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-games-lottery__hero-content {
    z-index: 2;
    max-width: 800px;
}

.page-games-lottery__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
}

.page-games-lottery__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-games-lottery__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
    font-weight: bold;
}

.page-games-lottery__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #CCCCCC;
}

.page-games-lottery__section {
    padding: 80px 0;
    background-color: #222831; /* Slightly lighter dark background for sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-games-lottery__section:nth-child(even) {
    background-color: #1A202C; /* Alternating background for visual separation */
}

.page-games-lottery__section-title {
    font-size: 2.5em;
    color: #E0B400; /* Accent color for main titles */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-games-lottery__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-games-lottery__text a {
    color: #E0B400;
    text-decoration: none;
}

.page-games-lottery__text a:hover {
    text-decoration: underline;
}

.page-games-lottery__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    text-align: center;
    border: none;
}

.page-games-lottery__btn--primary {
    background-color: #E0B400;
    color: #1A202C;
    margin-right: 20px;
}

.page-games-lottery__btn--primary:hover {
    background-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-games-lottery__btn--secondary {
    background-color: transparent;
    color: #E0B400;
    border: 2px solid #E0B400;
}

.page-games-lottery__btn--secondary:hover {
    background-color: #E0B400;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 180, 0, 0.4);
}

.page-games-lottery__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-games-lottery__cta-group {
    margin-top: 40px;
}

.page-games-lottery__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-games-lottery__about .page-games-lottery__text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-games-lottery__features-grid,
.page-games-lottery__game-grid,
.page-games-lottery__strategy-grid,
.page-games-lottery__safety-grid,
.page-games-lottery__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-games-lottery__feature-item,
.page-games-lottery__game-card,
.page-games-lottery__strategy-card,
.page-games-lottery__safety-item,
.page-games-lottery__promo-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery__feature-item:hover,
.page-games-lottery__game-card:hover,
.page-games-lottery__strategy-card:hover,
.page-games-lottery__safety-item:hover,
.page-games-lottery__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-games-lottery__feature-icon,
.page-games-lottery__safety-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(35deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-games-lottery__app-benefits li img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(35deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-games-lottery__feature-title,
.page-games-lottery__game-title,
.page-games-lottery__strategy-title,
.page-games-lottery__safety-title,
.page-games-lottery__promo-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-games-lottery__feature-description,
.page-games-lottery__game-description,
.page-games-lottery__strategy-description,
.page-games-lottery__safety-description,
.page-games-lottery__promo-description {
    font-size: 1em;
    color: #B0B0B0;
    text-align: justify;
}

.page-games-lottery__image-full-width {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-games-lottery__image-centered {
    display: block;
    margin: 60px auto 0 auto;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-games-lottery__guide-list {
    list-style: none;
    padding: 0;
    counter-reset: guide-step;
    margin-top: 40px;
}

.page-games-lottery__guide-list li {
    background-color: #1A202C;
    margin-bottom: 20px;
    padding: 25px 30px 25px 70px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-games-lottery__guide-list li::before {
    counter-increment: guide-step;
    content: counter(guide-step);
    position: absolute;
    left: 20px;
    top: 25px;
    background-color: #E0B400;
    color: #1A202C;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-games-lottery__guide-step-title {
    font-size: 1.3em;
    color: #E0B400;
    margin-bottom: 10px;
}

.page-games-lottery__app-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-games-lottery__app-content {
    flex: 1;
    min-width: 300px;
}

.page-games-lottery__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-games-lottery__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.page-games-lottery__app-benefits {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-games-lottery__app-benefits li {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-games-lottery__faq-item {
    background-color: #1A202C;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-games-lottery__faq-question {
    font-size: 1.2em;
    color: #E0B400;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-games-lottery__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-games-lottery__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-games-lottery__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-games-lottery__faq-answer.active {
    max-height: 200px; /* Adjust as needed, will be overridden by JS for scrollHeight */
    margin-top: 10px;
}

.page-games-lottery__conclusion {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #1A202C, #000000); /* Darker gradient for conclusion */
}

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

.page-games-lottery__conclusion .page-games-lottery__section-title {
    color: #E0B400;
}

.page-games-lottery__conclusion .page-games-lottery__text {
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #E0E0E0;
}

.highlight {
    color: #E0B400;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 992px) {
    .page-games-lottery__title {
        font-size: 2.8em;
    }
    .page-games-lottery__section-title {
        font-size: 2em;
    }
    .page-games-lottery__app-container {
        flex-direction: column;
        text-align: center;
    }
    .page-games-lottery__app-content,
    .page-games-lottery__app-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-games-lottery__app-benefits {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-games-lottery__hero {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-games-lottery__title {
        font-size: 2.2em;
    }
    .page-games-lottery__subtitle {
        font-size: 1em;
    }
    .page-games-lottery__section {
        padding: 60px 0;
    }
    .page-games-lottery__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-games-lottery__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .page-games-lottery__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-games-lottery__cta-group .page-games-lottery__btn {
        margin-right: 0;
        width: 80%;
        max-width: 300px;
    }
    .page-games-lottery__features-grid,
    .page-games-lottery__game-grid,
    .page-games-lottery__strategy-grid,
    .page-games-lottery__safety-grid,
    .page-games-lottery__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-games-lottery__image-centered {
        max-width: 95%;
    }
    .page-games-lottery__guide-list li {
        padding: 20px 25px 20px 60px;
    }
    .page-games-lottery__guide-list li::before {
        left: 15px;
        top: 20px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-games-lottery__title {
        font-size: 1.8em;
    }
    .page-games-lottery__section-title {
        font-size: 1.5em;
    }
    .page-games-lottery__btn {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-games-lottery__feature-title,
    .page-games-lottery__game-title,
    .page-games-lottery__strategy-title,
    .page-games-lottery__safety-title,
    .page-games-lottery__promo-title {
        font-size: 1.3em;
    }
    .page-games-lottery__faq-question {
        font-size: 1.1em;
    }
}