/* style/game-guides-lottery-games.css */

:root {
    --page-primary-color: #003366;
    --page-secondary-color: #FFCC00;
    --page-text-light: #ffffff;
    --page-text-dark: #333333;
    --page-text-darker: #001a33;
    --page-background-light: #f4f7f6;
    --page-background-dark: #002244;
    --page-accent-color: #ffaa00;
}

.page-game-guides-lottery-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-dark);
    background-color: var(--page-background-light);
}

.page-game-guides-lottery-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-guides-lottery-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-game-guides-lottery-games__section--intro,
.page-game-guides-lottery-games__section--security,
.page-game-guides-lottery-games__section--download {
    background-color: var(--page-text-light);
}

.page-game-guides-lottery-games__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-game-guides-lottery-games__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-text-darker);
}

/* Hero Section */
.page-game-guides-lottery-games__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #004d99 100%);
    color: var(--page-text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-game-guides-lottery-games__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: var(--page-secondary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-lottery-games__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-game-guides-lottery-games__hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-game-guides-lottery-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-game-guides-lottery-games__hero .page-game-guides-lottery-games__container {
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-game-guides-lottery-games__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-game-guides-lottery-games__button--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-game-guides-lottery-games__button--primary:hover {
    background-color: #ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-game-guides-lottery-games__button--secondary {
    background-color: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-game-guides-lottery-games__button--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    transform: translateY(-3px);
}

.page-game-guides-lottery-games__button--tertiary {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-game-guides-lottery-games__button--tertiary:hover {
    background-color: #004d99;
    transform: translateY(-2px);
}

.page-game-guides-lottery-games__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
}

.page-game-guides-lottery-games__button--small:hover {
    background-color: #004d99;
}

.page-game-guides-lottery-games__button--inline {
    margin-top: 15px;
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
}

.page-game-guides-lottery-games__button--inline:hover {
    background-color: #ffbb00;
}

/* Game Types Section */
.page-game-guides-lottery-games__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-lottery-games__game-card {
    background-color: var(--page-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-guides-lottery-games__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-guides-lottery-games__game-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-game-guides-lottery-games__game-card-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-game-guides-lottery-games__game-card-subtitle {
    font-size: 1.2em;
    color: var(--page-secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-game-guides-lottery-games__game-card-description {
    color: var(--page-text-darker);
    margin-bottom: 15px;
}

.page-game-guides-lottery-games__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--page-text-darker);
}

.page-game-guides-lottery-games__list li {
    margin-bottom: 8px;
}

/* Get Started Section */
.page-game-guides-lottery-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-lottery-games__step-card {
    background-color: var(--page-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    position: relative;
    padding-top: 70px; /* Space for number */
}

.page-game-guides-lottery-games__step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    background-color: var(--page-secondary-color);
    color: var(--page-primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

.page-game-guides-lottery-games__step-title {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-game-guides-lottery-games__step-description {
    color: var(--page-text-darker);
}

.page-game-guides-lottery-games__process-image {
    width: 100%;
    max-width: 900px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tips Section */
.page-game-guides-lottery-games__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides-lottery-games__tip-card {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-guides-lottery-games__tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #004d99;
}

.page-game-guides-lottery-games__tip-title {
    font-size: 1.5em;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
}

.page-game-guides-lottery-games__tip-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.page-game-guides-lottery-games__tips-image {
    width: 100%;
    max-width: 900px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Promotions Section */
.page-game-guides-lottery-games__section--promotions {
    background-color: var(--page-background-dark);
    color: var(--page-text-light);
}

.page-game-guides-lottery-games__section--promotions .page-game-guides-lottery-games__section-title {
    color: var(--page-secondary-color);
}

.page-game-guides-lottery-games__section--promotions .page-game-guides-lottery-games__text-content {
    color: rgba(255, 255, 255, 0.9);
}

.page-game-guides-lottery-games__promotion-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.page-game-guides-lottery-games__promotion-list li {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-text-light);
}

.page-game-guides-lottery-games__icon-star {
    color: var(--page-secondary-color);
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
}

.page-game-guides-lottery-games__icon-star::before {
    content: '\2605'; /* Unicode star character */
}

.page-game-guides-lottery-games__promo-image {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Security Section */
.page-game-guides-lottery-games__security-image {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Download Section */
.page-game-guides-lottery-games__app-image {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-game-guides-lottery-games__section--faq {
    background-color: var(--page-background-light);
}

.page-game-guides-lottery-games__faq-item {
    background-color: var(--page-text-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 30px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides-lottery-games__faq-question {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-game-guides-lottery-games__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-secondary-color);
    transition: transform 0.3s ease;
}

.page-game-guides-lottery-games__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-game-guides-lottery-games__faq-answer {
    font-size: 1.05em;
    color: var(--page-text-darker);
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-game-guides-lottery-games__faq-answer.active {
    display: block;
}

/* Final CTA Section */
.page-game-guides-lottery-games__section--cta-final {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    padding: 80px 0;
}

.page-game-guides-lottery-games__section--cta-final .page-game-guides-lottery-games__section-title {
    color: var(--page-secondary-color);
}

.page-game-guides-lottery-games__section--cta-final .page-game-guides-lottery-games__text-content {
    color: rgba(255, 255, 255, 0.9);
}

.page-game-guides-lottery-games__cta-final-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-guides-lottery-games__hero-title {
        font-size: 3em;
    }
    .page-game-guides-lottery-games__hero-subtitle {
        font-size: 1.3em;
    }
    .page-game-guides-lottery-games__section-title {
        font-size: 2em;
    }
    .page-game-guides-lottery-games__game-grid,
    .page-game-guides-lottery-games__steps-grid,
    .page-game-guides-lottery-games__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-game-guides-lottery-games__hero {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-game-guides-lottery-games__hero-title {
        font-size: 2.5em;
    }
    .page-game-guides-lottery-games__hero-subtitle {
        font-size: 1.1em;
    }
    .page-game-guides-lottery-games__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-guides-lottery-games__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-game-guides-lottery-games__section {
        padding: 40px 0;
    }
    .page-game-guides-lottery-games__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-lottery-games__text-content {
        font-size: 1em;
    }
    .page-game-guides-lottery-games__game-card,
    .page-game-guides-lottery-games__step-card,
    .page-game-guides-lottery-games__tip-card {
        padding: 25px;
    }
    .page-game-guides-lottery-games__step-card {
        padding-top: 60px;
    }
    .page-game-guides-lottery-games__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        top: 15px;
        left: 25px;
    }
    .page-game-guides-lottery-games__faq-question {
        font-size: 1.1em;
    }
    .page-game-guides-lottery-games__promotion-list {
        padding: 0 10px;
    }
    .page-game-guides-lottery-games__cta-final-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-guides-lottery-games__hero-title {
        font-size: 2em;
    }
    .page-game-guides-lottery-games__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-guides-lottery-games__section-title {
        font-size: 1.5em;
    }
    .page-game-guides-lottery-games__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-game-guides-lottery-games__game-card-title,
    .page-game-guides-lottery-games__step-title,
    .page-game-guides-lottery-games__tip-title {
        font-size: 1.3em;
    }
    .page-game-guides-lottery-games__faq-item {
        padding: 15px 20px;
    }
}