/* style/lottery-games-pceggs.css */

/* Variables for consistent styling */
:root {
    --primary-color: #003366; /* Deep Ocean Blue */
    --secondary-color: #FFCC00; /* Golden Yellow */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f4f7fa;
    --background-dark: #0a1e30; /* Slightly darker than primary for contrast */
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Base styles for the page content */
.page-lottery-games-pceggs {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
    padding-bottom: 50px; /* Space for footer */
}

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

/* Headings */
.page-lottery-games-pceggs h1,
.page-lottery-games-pceggs h2,
.page-lottery-games-pceggs h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-lottery-games-pceggs h1 {
    font-size: 2.8em;
    color: var(--text-color-light); /* For hero section */
}

.page-lottery-games-pceggs h2 {
    font-size: 2.2em;
    padding-top: 40px;
    margin-bottom: 30px;
}

.page-lottery-games-pceggs h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-lottery-games-pceggs p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-lottery-games-pceggs .highlight {
    color: var(--secondary-color);
}

/* Buttons */
.page-lottery-games-pceggs .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-lottery-games-pceggs .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Dark text on bright button */
    border: 2px solid var(--secondary-color);
}

.page-lottery-games-pceggs .btn-primary:hover {
    background-color: #e6b800; /* Slightly darker yellow */
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-lottery-games-pceggs .btn-secondary {
    background-color: transparent;
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
    margin-left: 15px;
}

.page-lottery-games-pceggs .btn-secondary:hover {
    background-color: var(--text-color-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-lottery-games-pceggs .btn-cta {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
}

.page-lottery-games-pceggs .btn-cta:hover {
    background-color: #002244; /* Darker blue */
    border-color: #002244;
    transform: translateY(-2px);
}

.page-lottery-games-pceggs .btn-large {
    padding: 15px 35px;
    font-size: 1.2em;
    margin-top: 30px;
}

/* Hero Section */
.page-lottery-games-pceggs .hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0a1e30); /* Darker gradient for hero */
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.page-lottery-games-pceggs .hero-section .container {
    position: relative;
    z-index: 2;
}

.page-lottery-games-pceggs .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lottery-games-pceggs .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-games-pceggs .hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%; /* Adjust as needed */
    max-width: 600px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

/* Sections General */
.page-lottery-games-pceggs section {
    padding: 60px 0;
}

.page-lottery-games-pceggs .section-title {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-lottery-games-pceggs .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-lottery-games-pceggs .about-pcegg-section,
.page-lottery-games-pceggs .how-to-play-section,
.page-lottery-games-pceggs .strategies-section,
.page-lottery-games-pceggs .faq-section {
    background-color: var(--text-color-light);
    color: var(--text-color-dark);
}

.page-lottery-games-pceggs .content-image {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Lists */
.page-lottery-games-pceggs ol,
.page-lottery-games-pceggs ul {
    margin: 20px 0;
    padding-left: 25px;
}

.page-lottery-games-pceggs ol li,
.page-lottery-games-pceggs ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.page-lottery-games-pceggs ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.page-lottery-games-pceggs ol li strong {
    color: var(--primary-color);
}

/* Advantages Section */
.page-lottery-games-pceggs .advantages-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
}

.page-lottery-games-pceggs .advantages-section .section-title {
    color: var(--text-color-light);
}

.page-lottery-games-pceggs .advantages-section .section-title::after {
    background-color: var(--secondary-color);
}

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

.page-lottery-games-pceggs .advantage-item {
    background-color: var(--background-dark); /* Slightly darker blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-lottery-games-pceggs .advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icons stand out */
}

.page-lottery-games-pceggs .advantage-item h3 {
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 1.4em;
}

.page-lottery-games-pceggs .advantage-item p {
    color: #cccccc;
    font-size: 1em;
}

/* Promotions CTA Section */
.page-lottery-games-pceggs .promotions-cta-section {
    background-color: var(--background-light);
    text-align: center;
}

.page-lottery-games-pceggs .promotions-cta-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-lottery-games-pceggs .cta-item {
    background-color: var(--text-color-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border-top: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.page-lottery-games-pceggs .cta-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.5em;
}

.page-lottery-games-pceggs .cta-item p {
    font-size: 1em;
    margin-bottom: 25px;
}

.page-lottery-games-pceggs .final-cta-text {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-lottery-games-pceggs .faq-item {
    background-color: var(--text-color-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-pceggs .faq-item h3 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-lottery-games-pceggs .faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-lottery-games-pceggs .faq-item h3.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-lottery-games-pceggs .faq-item p {
    margin-top: 0;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.page-lottery-games-pceggs .faq-item h3.active + p {
    display: block;
}


/* Links within content */
.page-lottery-games-pceggs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-lottery-games-pceggs a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-lottery-games-pceggs h1 {
        font-size: 2.2em;
    }

    .page-lottery-games-pceggs h2 {
        font-size: 1.8em;
    }

    .page-lottery-games-pceggs .hero-subtitle {
        font-size: 1.1em;
    }

    .page-lottery-games-pceggs .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-lottery-games-pceggs .btn {
        width: 80%;
        margin-left: 0 !important; /* Override margin for stacked buttons */
        margin-right: 0 !important;
    }

    .page-lottery-games-pceggs .hero-image {
        width: 80%;
        max-width: 400px;
    }

    .page-lottery-games-pceggs .advantage-grid,
    .page-lottery-games-pceggs .cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-pceggs h1 {
        font-size: 1.8em;
    }

    .page-lottery-games-pceggs h2 {
        font-size: 1.6em;
    }

    .page-lottery-games-pceggs .btn {
        width: 95%;
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-lottery-games-pceggs .hero-section {
        padding: 60px 0;
        min-height: 400px;
    }
}