/* style/lottery-official-lottery.css */
.page-lottery-official-lottery {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
}

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

.page-lottery-official-lottery__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-official-lottery__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%); /* Subtle gold radial gradient */
    animation: rotateBackground 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-lottery-official-lottery__hero > .page-lottery-official-lottery__container {
    position: relative;
    z-index: 1;
}

.page-lottery-official-lottery__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-lottery-official-lottery__subtitle {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-lottery-official-lottery__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-official-lottery__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-lottery-official-lottery__button--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0A192F; /* Dark blue text on gold */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-official-lottery__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-lottery-official-lottery__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark blue background */
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-lottery-official-lottery__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-lottery-official-lottery__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
}

.page-lottery-official-lottery__button--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

.page-lottery-official-lottery__section {
    padding: 80px 0;
    text-align: center;
}

.page-lottery-official-lottery__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.page-lottery-official-lottery__section-description {
    font-size: 1.15em;
    color: #B0B0B0;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-lottery-official-lottery__section-title--light {
    color: #0A192F; /* Dark blue for titles on light background */
}

.page-lottery-official-lottery__section-description--light {
    color: #333; /* Dark gray for description on light background */
}

/* Why Choose Section */
.page-lottery-official-lottery__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-lottery-official-lottery__feature-item {
    background-color: #1a2a47; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-official-lottery__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-official-lottery__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-official-lottery__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-lottery-official-lottery__feature-text {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

/* Game Types Section */
.page-lottery-official-lottery__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-lottery-official-lottery__game-card {
    background-color: #1a2a47;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.page-lottery-official-lottery__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-official-lottery__game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-lottery-official-lottery__game-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 20px;
}

.page-lottery-official-lottery__game-text {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.5;
    padding: 0 20px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-lottery-official-lottery__game-card .page-lottery-official-lottery__button {
    margin-top: auto;
    align-self: center;
}

/* How To Play Section */
.page-lottery-official-lottery__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-lottery-official-lottery__step-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-lottery-official-lottery__step-number {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-lottery-official-lottery__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-lottery-official-lottery__step-text {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Promotions Section */
.page-lottery-official-lottery__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-lottery-official-lottery__promotion-card {
    background-color: #1a2a47;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-official-lottery__promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-official-lottery__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-lottery-official-lottery__promotion-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 0 20px;
}

.page-lottery-official-lottery__promotion-text {
    font-size: 0.95em;
    color: #B0B0B0;
    line-height: 1.5;
    padding: 0 20px 20px 20px;
}

/* App Download Section */
.page-lottery-official-lottery__app-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    flex-wrap: wrap;
}

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

.page-lottery-official-lottery__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-lottery-official-lottery__app-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-lottery-official-lottery__app-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

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

.page-lottery-official-lottery__list-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Responsible Gambling Section */
.page-lottery-official-lottery__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-lottery-official-lottery__info-item {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-lottery-official-lottery__info-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-lottery-official-lottery__info-text {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
}

/* FAQ Section */
.page-lottery-official-lottery__faq-list {
    margin-top: 50px;
    text-align: left;
}

.page-lottery-official-lottery__faq-item {
    background-color: #1a2a47;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-official-lottery__faq-question {
    font-size: 1.25em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-lottery-official-lottery__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

.page-lottery-official-lottery__faq-answer.active {
    max-height: 300px; /* Adjust based on expected content length */
    padding-top: 15px;
}

/* Call to Action Section at the bottom */
.page-lottery-official-lottery__call-to-action {
    background-color: #FFD700; /* Gold background */
    padding: 80px 0;
    text-align: center;
}

.page-lottery-official-lottery__call-to-action .page-lottery-official-lottery__section-title {
    color: #0A192F; /* Dark blue text on gold */
    text-shadow: none;
}

.page-lottery-official-lottery__call-to-action .page-lottery-official-lottery__section-description {
    color: #333; /* Dark gray text on gold */
}

.page-lottery-official-lottery__call-to-action .page-lottery-official-lottery__button--primary {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #0A192F;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.4);
}

.page-lottery-official-lottery__call-to-action .page-lottery-official-lottery__button--primary:hover {
    background-color: #1a2a47;
    border-color: #1a2a47;
    box-shadow: 0 6px 20px rgba(10, 25, 47, 0.6);
}

.page-lottery-official-lottery__call-to-action .page-lottery-official-lottery__button--secondary {
    background-color: transparent;
    color: #0A192F;
    border-color: #0A192F;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.2);
}

.page-lottery-official-lottery__call-to-action .page-lottery-official-lottery__button--secondary:hover {
    background-color: #0A192F;
    color: #FFD700;
    box-shadow: 0 6px 20px rgba(10, 25, 47, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-official-lottery__title {
        font-size: 2.8em;
    }
    .page-lottery-official-lottery__section-title {
        font-size: 2em;
    }
    .page-lottery-official-lottery__app-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-lottery-official-lottery__app-content,
    .page-lottery-official-lottery__app-image-wrapper {
        min-width: unset;
        width: 100%;
    }
    .page-lottery-official-lottery__app-features {
        padding-left: 20px;
    }
    .page-lottery-official-lottery__app-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-lottery-official-lottery__hero {
        padding: 80px 0;
    }
    .page-lottery-official-lottery__title {
        font-size: 2.2em;
    }
    .page-lottery-official-lottery__subtitle {
        font-size: 1.2em;
    }
    .page-lottery-official-lottery__section {
        padding: 60px 0;
    }
    .page-lottery-official-lottery__section-title {
        font-size: 1.8em;
    }
    .page-lottery-official-lottery__section-description {
        font-size: 1em;
    }
    .page-lottery-official-lottery__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery-official-lottery__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-official-lottery__features-grid,
    .page-lottery-official-lottery__game-grid,
    .page-lottery-official-lottery__steps-grid,
    .page-lottery-official-lottery__promotion-cards,
    .page-lottery-official-lottery__info-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-official-lottery__feature-item,
    .page-lottery-official-lottery__game-card,
    .page-lottery-official-lottery__step-item,
    .page-lottery-official-lottery__promotion-card,
    .page-lottery-official-lottery__info-item {
        padding: 25px;
    }
    .page-lottery-official-lottery__faq-item {
        padding: 20px 25px;
    }
    .page-lottery-official-lottery__faq-question {
        font-size: 1.1em;
    }
    .page-lottery-official-lottery__call-to-action {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-lottery-official-lottery__title {
        font-size: 1.8em;
    }
    .page-lottery-official-lottery__subtitle {
        font-size: 1em;
    }
    .page-lottery-official-lottery__section-title {
        font-size: 1.6em;
    }
    .page-lottery-official-lottery__feature-title,
    .page-lottery-official-lottery__game-title,
    .page-lottery-official-lottery__step-title,
    .page-lottery-official-lottery__promotion-title,
    .page-lottery-official-lottery__info-title {
        font-size: 1.2em;
    }
    .page-lottery-official-lottery__button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}