/* style/lottery-strategy.css */
.page-lottery-strategy {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #1A202C; /* Main dark background */
}

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

.page-lottery-strategy__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

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

.page-lottery-strategy__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-lottery-strategy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-lottery-strategy__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

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

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

.page-lottery-strategy__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

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

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

.page-lottery-strategy__intro-section, 
.page-lottery-strategy__strategy-section, 
.page-lottery-strategy__advanced-tips, 
.page-lottery-strategy__how-to-start, 
.page-lottery-strategy__cta-section {
    padding: 60px 0;
}

.page-lottery-strategy__bg-dark {
    background-color: #1A202C; /* Ensure consistent dark background */
}

.page-lottery-strategy__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-lottery-strategy__intro-section p, 
.page-lottery-strategy__strategy-section p, 
.page-lottery-strategy__advanced-tips p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-lottery-strategy__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

.page-lottery-strategy__strategy-item {
    background-color: #2A313C; /* Slightly lighter dark for content blocks */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-strategy__strategy-heading, 
.page-lottery-strategy__tip-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-lottery-strategy__strategy-item ul, 
.page-lottery-strategy__tip-item ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-lottery-strategy__strategy-item ul li, 
.page-lottery-strategy__tip-item ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-lottery-strategy__strategy-item strong {
    color: #FFD700;
}

.page-lottery-strategy__tip-item {
    background-color: #2A313C;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-strategy__steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-lottery-strategy__steps li {
    background-color: #2A313C;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-lottery-strategy__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A202C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #1A202C;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-lottery-strategy__steps h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-lottery-strategy__steps p {
    font-size: 1em;
    color: #E0E0E0;
}

.page-lottery-strategy__cta-section {
    text-align: center;
    background-color: #1A202C;
    padding: 80px 0;
    border-top: 5px solid #FFD700; /* Gold line to emphasize CTA */
}

.page-lottery-strategy__cta-section .page-lottery-strategy__section-title {
    color: #FFD700;
    margin-bottom: 25px;
}

.page-lottery-strategy__cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-lottery-strategy__cta-note {
    font-size: 1.1em;
    margin-top: 30px;
    color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-lottery-strategy__hero-subtitle {
        font-size: 1.3em;
    }
    .page-lottery-strategy__section-title {
        font-size: 2em;
    }
    .page-lottery-strategy__strategy-heading, 
    .page-lottery-strategy__tip-heading {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-lottery-strategy__hero {
        padding: 80px 0;
    }
    .page-lottery-strategy__hero-title {
        font-size: 2.2em;
    }
    .page-lottery-strategy__hero-subtitle {
        font-size: 1.1em;
    }
    .page-lottery-strategy__section-title {
        font-size: 1.8em;
    }
    .page-lottery-strategy__intro-section, 
    .page-lottery-strategy__strategy-section, 
    .page-lottery-strategy__advanced-tips, 
    .page-lottery-strategy__how-to-start, 
    .page-lottery-strategy__cta-section {
        padding: 40px 0;
    }
    .page-lottery-strategy__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-lottery-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-lottery-strategy__hero-subtitle {
        font-size: 1em;
    }
    .page-lottery-strategy__btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-lottery-strategy__section-title {
        font-size: 1.5em;
    }
    .page-lottery-strategy__strategy-heading, 
    .page-lottery-strategy__tip-heading {
        font-size: 1.4em;
    }
    .page-lottery-strategy__intro-section p, 
    .page-lottery-strategy__strategy-section p, 
    .page-lottery-strategy__advanced-tips p {
        font-size: 0.95em;
    }
    .page-lottery-strategy__steps li {
        padding: 60px 20px 30px;
    }
    .page-lottery-strategy__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
        top: -20px;
    }
}