/* style/lottery-betting-tips.css */
.page-lottery-betting-tips {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A192F;
}

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

.page-lottery-betting-tips__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A304F 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-betting-tips__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-betting-tips__hero-subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-lottery-betting-tips__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-betting-tips__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-lottery-betting-tips__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-lottery-betting-tips__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-betting-tips__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-lottery-betting-tips__section {
    padding: 80px 0;
    position: relative;
}

.page-lottery-betting-tips__section--intro {
    background-color: #0A192F;
}

.page-lottery-betting-tips__section--strategies {
    background-color: #1A304F;
}

.page-lottery-betting-tips__section--tips {
    background-color: #0A192F;
}

.page-lottery-betting-tips__section--cta-download {
    background-color: #1A304F;
    padding: 100px 0;
}

.page-lottery-betting-tips__section--faq {
    background-color: #0A192F;
}

.page-lottery-betting-tips__section--final-cta {
    background-color: #1A304F;
    text-align: center;
    padding: 80px 0;
}

.page-lottery-betting-tips__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.page-lottery-betting-tips__section-description {
    font-size: 1.2em;
    color: #e0e0e0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.page-lottery-betting-tips__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-lottery-betting-tips__content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-lottery-betting-tips__text-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-lottery-betting-tips__text-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-lottery-betting-tips__text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-lottery-betting-tips__text-content ul li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: #e0e0e0;
}

.page-lottery-betting-tips__text-content ul li strong {
    color: #FFD700;
}

.page-lottery-betting-tips__text-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-lottery-betting-tips__image-wrapper {
    text-align: center;
}

.page-lottery-betting-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-betting-tips__btn--accent {
    background-color: #FFD700;
    color: #0A192F;
    border: none;
    margin-top: 20px;
}

.page-lottery-betting-tips__btn--accent:hover {
    background-color: #e6c200;
}

.page-lottery-betting-tips__strategy-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .page-lottery-betting-tips__strategy-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.page-lottery-betting-tips__card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-betting-tips__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-lottery-betting-tips__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-lottery-betting-tips__card-text {
    font-size: 1.05em;
    line-height: 1.6;
    color: #cccccc;
}

.page-lottery-betting-tips__tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .page-lottery-betting-tips__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.page-lottery-betting-tips__tip-item {
    background-color: #1A304F;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-lottery-betting-tips__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.page-lottery-betting-tips__tip-item h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-lottery-betting-tips__tip-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

.page-lottery-betting-tips__cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .page-lottery-betting-tips__cta-content {
        grid-template-columns: 0.8fr 1.2fr;
        text-align: left;
    }
    .page-lottery-betting-tips__image-wrapper--app {
        order: 2;
    }
    .page-lottery-betting-tips__text-content {
        order: 1;
    }
}

.page-lottery-betting-tips__app-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-lottery-betting-tips__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-lottery-betting-tips__cta-description {
    font-size: 1.2em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-lottery-betting-tips__faq-item {
    background-color: #1A304F;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-lottery-betting-tips__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-lottery-betting-tips__faq-answer {
    font-size: 1.1em;
    line-height: 1.6;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-lottery-betting-tips__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding-top: 15px;
}

.page-lottery-betting-tips__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-lottery-betting-tips__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-lottery-betting-tips__hero-title {
        font-size: 3em;
    }
    .page-lottery-betting-tips__hero-subtitle {
        font-size: 1.3em;
    }
    .page-lottery-betting-tips__section-title {
        font-size: 2.4em;
    }
    .page-lottery-betting-tips__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 767px) {
    .page-lottery-betting-tips__hero {
        padding: 80px 0;
    }
    .page-lottery-betting-tips__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-betting-tips__hero-subtitle {
        font-size: 1.1em;
    }
    .page-lottery-betting-tips__btn {
        margin: 10px 0;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .page-lottery-betting-tips__section {
        padding: 60px 0;
    }
    .page-lottery-betting-tips__section-title {
        font-size: 2em;
    }
    .page-lottery-betting-tips__section-description {
        font-size: 1em;
    }
    .page-lottery-betting-tips__text-content h3 {
        font-size: 1.5em;
    }
    .page-lottery-betting-tips__text-content p, .page-lottery-betting-tips__text-content ul li {
        font-size: 0.95em;
    }
    .page-lottery-betting-tips__card-title {
        font-size: 1.4em;
    }
    .page-lottery-betting-tips__card-text, .page-lottery-betting-tips__tip-item p {
        font-size: 0.9em;
    }
    .page-lottery-betting-tips__cta-title {
        font-size: 2em;
    }
    .page-lottery-betting-tips__cta-description {
        font-size: 1em;
    }
    .page-lottery-betting-tips__faq-question {
        font-size: 1.3em;
    }
    .page-lottery-betting-tips__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-lottery-betting-tips__hero-title {
        font-size: 2em;
    }
    .page-lottery-betting-tips__section-title {
        font-size: 1.8em;
    }
    .page-lottery-betting-tips__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}