/* style/lottery.css */
.page-lottery {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-lottery__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-lottery__section:nth-child(even) {
    background-color: #fcfcfc;
}

.page-lottery__section-title {
    font-size: 2.5em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

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

.page-lottery__section-intro {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-lottery__hero {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-lottery__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.page-lottery__hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-lottery__hero-image {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 400px;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(15deg);
}

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

.page-lottery__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

.page-lottery__btn--primary {
    background-color: #FFC107;
    color: #333;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-lottery__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-lottery__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

.page-lottery__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery__feature-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-lottery__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-lottery__feature-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-lottery__feature-description {
    color: #666;
    font-size: 1em;
}

.page-lottery__game-type-card {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-lottery__game-type-card--reverse {
    flex-direction: row-reverse;
}

.page-lottery__game-type-image {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.page-lottery__game-type-content {
    width: 60%;
    padding: 40px;
}

.page-lottery__game-type-title {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-lottery__game-type-description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.page-lottery__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery__step-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #007BFF;
}

.page-lottery__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFC107;
    color: #333;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.page-lottery__step-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-lottery__step-description {
    color: #666;
    margin-bottom: 20px;
}

.page-lottery__section-footer {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
    font-style: italic;
}

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

.page-lottery__promo-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery__promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-lottery__promo-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-lottery__promo-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-lottery__promo-description {
    color: #666;
    margin-bottom: 20px;
}

.page-lottery__app-download {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
}

.page-lottery__app-download .page-lottery__section-title {
    color: #fff;
}

.page-lottery__app-download .page-lottery__section-title::after {
    background-color: #FFC107;
}

.page-lottery__app-download .page-lottery__section-intro {
    color: #e0e0e0;
}

.page-lottery__app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-lottery__app-image {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery__app-details {
    text-align: left;
    max-width: 450px;
}

.page-lottery__app-subtitle {
    font-size: 1.8em;
    color: #FFC107;
    margin-bottom: 20px;
}

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

.page-lottery__app-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.page-lottery__app-list li i {
    color: #FFC107;
    margin-right: 10px;
}

.page-lottery__faqs {
    background-color: #fff;
}

.page-lottery__faq-list {
    margin-top: 40px;
}

.page-lottery__faq-item {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 30px;
}

.page-lottery__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

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

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

.page-lottery__faq-answer {
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0;
}

.page-lottery__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-lottery__final-cta {
    background-color: #fff;
    padding: 80px 0;
}

.page-lottery__text-center {
    text-align: center;
}

.page-lottery__mt-20 {
    margin-top: 20px;
}

.page-lottery__mt-40 {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery__hero-title {
        font-size: 2.8em;
    }
    .page-lottery__hero-description {
        font-size: 1.1em;
    }
    .page-lottery__game-type-card {
        flex-direction: column;
    }
    .page-lottery__game-type-card--reverse {
        flex-direction: column;
    }
    .page-lottery__game-type-image,
    .page-lottery__game-type-content {
        width: 100%;
    }
    .page-lottery__game-type-image {
        height: 250px;
    }
    .page-lottery__app-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-lottery__app-details {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-lottery__hero-title {
        font-size: 2.2em;
    }
    .page-lottery__section-title {
        font-size: 2em;
    }
    .page-lottery__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-lottery__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-lottery__section {
        padding: 40px 0;
    }
    .page-lottery__hero {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .page-lottery__hero-title {
        font-size: 1.8em;
    }
    .page-lottery__section-title {
        font-size: 1.8em;
    }
    .page-lottery__hero-description {
        font-size: 1em;
    }
    .page-lottery__btn {
        width: 100%;
        text-align: center;
    }
    .page-lottery__game-type-content {
        padding: 25px;
    }
    .page-lottery__feature-item, .page-lottery__step-item, .page-lottery__promo-item, .page-lottery__faq-item {
        padding: 20px;
    }
}