/* style/lottery-games-history-analysis.css */

/* Base Styles & Typography */
.page-lottery-games-history-analysis {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-lottery-games-history-analysis h1, .page-lottery-games-history-analysis h2, .page-lottery-games-history-analysis h3 {
    font-weight: bold;
    margin-bottom: 1em;
    color: #1E90FF; /* Dodger Blue for titles */
}

.page-lottery-games-history-analysis h1 {
    font-size: 2.8em;
    text-align: center;
    color: #FFD700; /* Gold for main H1 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-history-analysis h2 {
    font-size: 2.2em;
    text-align: center;
    color: #1E90FF;
    margin-top: 2em;
}

.page-lottery-games-history-analysis h3 {
    font-size: 1.6em;
    color: #1E90FF;
}

.page-lottery-games-history-analysis p {
    margin-bottom: 1em;
    color: #333;
}

.page-lottery-games-history-analysis .brand-keyword {
    font-weight: bold;
    color: #FFD700; /* Gold for keywords */
}

.page-lottery-games-history-analysis .highlight {
    color: #FFD700; /* Gold for specific highlights */
}

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

/* Hero Section */
.page-lottery-games-history-analysis__hero {
    background: linear-gradient(135deg, #1E90FF 0%, #003366 100%); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-history-analysis__hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.page-lottery-games-history-analysis__hero-title {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    color: #FFD700; /* Gold for main title */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-history-analysis__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 2em;
    color: #f0f0f0;
    line-height: 1.8;
}

.page-lottery-games-history-analysis__hero-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1a1a1a; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-history-analysis__hero-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-lottery-games-history-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

.page-lottery-games-history-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
    transform: scale(1.05);
}

/* General Section Styles */
.page-lottery-games-history-analysis__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-lottery-games-history-analysis__section--intro {
    background-color: #fcfcfc;
}

.page-lottery-games-history-analysis__section-title {
    margin-bottom: 1.5em;
}

.page-lottery-games-history-analysis__text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3em auto;
    font-size: 1.1em;
    color: #555;
}

/* Grid for Intro Section */
.page-lottery-games-history-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3em;
}

.page-lottery-games-history-analysis__grid-item {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700; /* Gold accent */
}

.page-lottery-games-history-analysis__grid-item:hover {
    transform: translateY(-5px);
}

.page-lottery-games-history-analysis__grid-title {
    font-size: 1.4em;
    color: #1E90FF;
    margin-bottom: 0.8em;
}

.page-lottery-games-history-analysis__grid-text {
    color: #666;
    font-size: 0.95em;
}

/* Data Types Section */
.page-lottery-games-history-analysis__data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3em;
}

.page-lottery-games-history-analysis__data-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #fcfcfc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-history-analysis__data-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5em;
    border-radius: 5px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-lottery-games-history-analysis__data-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin-bottom: 0.5em;
}

.page-lottery-games-history-analysis__data-description {
    color: #666;
}

/* Methods Section */
.page-lottery-games-history-analysis__section--methods {
    background-color: #eef7ff; /* Light blue background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-lottery-games-history-analysis__list {
    list-style: none;
    padding: 0;
    margin-top: 3em;
    max-width: 900px;
    counter-reset: method-counter;
}

.page-lottery-games-history-analysis__list li {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 70px; /* Space for counter */
}

.page-lottery-games-history-analysis__list li::before {
    counter-increment: method-counter;
    content: counter(method-counter);
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FFD700; /* Gold counter */
    color: #1a1a1a; /* Dark text for contrast */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-history-analysis__list-title {
    font-size: 1.4em;
    color: #1E90FF;
    margin-bottom: 0.5em;
    margin-top: 0;
}

.page-lottery-games-history-analysis__list-text {
    color: #555;
}

.page-lottery-games-history-analysis__illustration {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 4em;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
}

/* Applications Section */
.page-lottery-games-history-analysis__application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3em;
}

.page-lottery-games-history-analysis__application-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    border-left: 5px solid #1E90FF; /* Blue accent */
}

.page-lottery-games-history-analysis__application-title {
    font-size: 1.5em;
    color: #1E90FF;
    margin-bottom: 0.8em;
}

.page-lottery-games-history-analysis__application-text {
    color: #666;
}

/* Tips Section */
.page-lottery-games-history-analysis__section--tips {
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.page-lottery-games-history-analysis__bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 3em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-history-analysis__bullet-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-right: 4px solid #FFD700;
}

.page-lottery-games-history-analysis__bullet-list li:last-child {
    margin-bottom: 0;
}

.page-lottery-games-history-analysis__illustration--right {
    float: right;
    margin-left: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 400px; /* Smaller image for tips section */
    shape-outside: circle(50% at 50% 50%);
    shape-margin: 20px;
}

/* Call to Action */
.page-lottery-games-history-analysis__cta {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #1a1a1a; /* Dark text for contrast on gold */
}

.page-lottery-games-history-analysis__cta-title {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 0.8em;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-lottery-games-history-analysis__cta-text {
    font-size: 1.2em;
    margin-bottom: 2.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-lottery-games-history-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-lottery-games-history-analysis__cta-btn.btn--primary {
    background-color: #1E90FF; /* Dodger Blue */
    color: #fff;
}

.page-lottery-games-history-analysis__cta-btn.btn--primary:hover {
    background-color: #007bff; /* Darker blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-history-analysis__cta-btn.btn--secondary {
    background-color: #f0f0f0;
    color: #1E90FF; /* Dodger Blue text */
    border: 2px solid #1E90FF;
}

.page-lottery-games-history-analysis__cta-btn.btn--secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-lottery-games-history-analysis__hero-title {
        font-size: 3em;
    }
    .page-lottery-games-history-analysis h1 {
        font-size: 2.5em;
    }
    .page-lottery-games-history-analysis h2 {
        font-size: 1.8em;
    }
    .page-lottery-games-history-analysis h3 {
        font-size: 1.4em;
    }
    .page-lottery-games-history-analysis__illustration--right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-lottery-games-history-analysis__hero {
        padding: 80px 0;
    }
    .page-lottery-games-history-analysis__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-games-history-analysis__hero-subtitle {
        font-size: 1.1em;
    }
    .page-lottery-games-history-analysis h1 {
        font-size: 2em;
    }
    .page-lottery-games-history-analysis h2 {
        font-size: 1.6em;
    }
    .page-lottery-games-history-analysis h3 {
        font-size: 1.2em;
    }
    .page-lottery-games-history-analysis__grid,
    .page-lottery-games-history-analysis__data-grid,
    .page-lottery-games-history-analysis__application-grid {
        grid-template-columns: 1fr;
    }
    .page-lottery-games-history-analysis__list li {
        padding-left: 20px;
    }
    .page-lottery-games-history-analysis__list li::before {
        position: static;
        margin-bottom: 10px;
        display: block;
        width: auto;
        height: auto;
        border-radius: 0;
        background: none;
        color: #FFD700;
        font-size: 1.5em;
        text-align: left;
        box-shadow: none;
    }
    .page-lottery-games-history-analysis__cta-buttons {
        flex-direction: column;
    }
    .page-lottery-games-history-analysis__cta-btn {
        width: 80%;
        margin: 0 auto 15px auto;
    }
    .page-lottery-games-history-analysis__cta-btn:last-child {
        margin-bottom: 0;
    }
    .page-lottery-games-history-analysis__illustration--right {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-history-analysis__hero-title {
        font-size: 2em;
    }
    .page-lottery-games-history-analysis__hero-subtitle {
        font-size: 1em;
    }
    .page-lottery-games-history-analysis__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-lottery-games-history-analysis h1 {
        font-size: 1.8em;
    }
    .page-lottery-games-history-analysis h2 {
        font-size: 1.4em;
    }
    .page-lottery-games-history-analysis h3 {
        font-size: 1.1em;
    }
    .page-lottery-games-history-analysis__section {
        padding: 40px 0;
    }
    .page-lottery-games-history-analysis__cta-title {
        font-size: 2em;
    }
    .page-lottery-games-history-analysis__cta-text {
        font-size: 1em;
    }
    .page-lottery-games-history-analysis__cta-btn {
        width: 95%;
    }
}