/* style/lottery-games-k3-tips.css */

/* Base styles for the page content area */
.page-lottery-games-k3-tips {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text on dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

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

/* Typography */
.page-lottery-games-k3-tips h1,
.page-lottery-games-k3-tips h2,
.page-lottery-games-k3-tips h3 {
    color: #FFD700; /* Gold for headings */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-lottery-games-k3-tips h1 {
    font-size: 3.2em;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-lottery-games-k3-tips h2 {
    font-size: 2.5em;
    margin-top: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.page-lottery-games-k3-tips h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left; /* Adjust for list titles */
}

.page-lottery-games-k3-tips p {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: justify;
}

.page-lottery-games-k3-tips .highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Buttons */
.page-lottery-games-k3-tips .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-lottery-games-k3-tips .btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-lottery-games-k3-tips .btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-lottery-games-k3-tips .btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-lottery-games-k3-tips .btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

/* Hero Section */
.page-lottery-games-k3-tips__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px; /* Fixed height for hero */
    overflow: hidden;
    background-color: #0A2342;
    padding: 0 20px;
}

.page-lottery-games-k3-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Darken image for text contrast */
    z-index: 0;
}

.page-lottery-games-k3-tips__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    color: #f5f5f5;
}

.page-lottery-games-k3-tips__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-lottery-games-k3-tips__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-lottery-games-k3-tips__hero-btn {
    font-size: 1.2em;
    padding: 15px 35px;
}

/* General Section Styles */
.page-lottery-games-k3-tips__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-lottery-games-k3-tips__section:last-of-type {
    border-bottom: none;
}

.page-lottery-games-k3-tips__section-title {
    margin-bottom: 40px;
}

.page-lottery-games-k3-tips__image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-k3-tips__image-center {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Strategy Grid */
.page-lottery-games-k3-tips__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-k3-tips__strategy-card {
    background-color: #1A3A5D; /* Slightly lighter dark blue */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-lottery-games-k3-tips__strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-lottery-games-k3-tips__strategy-card .page-lottery-games-k3-tips__strategy-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    text-align: left;
}

.page-lottery-games-k3-tips__strategy-card p {
    font-size: 1em;
    color: #e0e0e0;
    flex-grow: 1;
}

.page-lottery-games-k3-tips__strategy-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Lists */
.page-lottery-games-k3-tips__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-lottery-games-k3-tips__list li {
    background-color: #1A3A5D;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.page-lottery-games-k3-tips__list li p {
    margin-bottom: 0;
    color: #e0e0e0;
}

.page-lottery-games-k3-tips__list-title {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
}

.page-lottery-games-k3-tips__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-lottery-games-k3-tips__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 30px 0;
}

.page-lottery-games-k3-tips__ordered-list li {
    margin-bottom: 15px;
    color: #f5f5f5;
    background-color: transparent; /* Override card background for ordered list */
    box-shadow: none;
    padding: 0;
    display: list-item; /* Ensure proper list item display */
}

.page-lottery-games-k3-tips__ordered-list li strong {
    color: #FFD700;
}


/* Benefits Grid */
.page-lottery-games-k3-tips__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-lottery-games-k3-tips__benefit-item {
    background-color: #1A3A5D;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 250px; /* Ensure consistent height */
}

.page-lottery-games-k3-tips__benefit-item .page-lottery-games-k3-tips__benefit-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
    text-align: center;
    margin-bottom: 15px;
}

.page-lottery-games-k3-tips__benefit-item p {
    color: #e0e0e0;
    font-size: 1.05em;
    flex-grow: 1;
}

.page-lottery-games-k3-tips__benefit-image {
    max-width: 100%;
    height: 150px; /* Fixed height for consistency */
    object-fit: contain; /* Ensure image fits without cropping */
    margin-top: 20px;
    border-radius: 8px;
}


/* Call to Action (CTA) */
.page-lottery-games-k3-tips__cta {
    background-color: #FFD700; /* Gold background for CTA */
    color: #0A2342; /* Dark blue text on gold */
    padding: 80px 0;
    text-align: center;
}

.page-lottery-games-k3-tips__cta-content {
    max-width: 800px;
}

.page-lottery-games-k3-tips__cta-title {
    font-size: 3em;
    color: #0A2342;
    margin-bottom: 20px;
}

.page-lottery-games-k3-tips__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #333; /* Slightly darker for better contrast on gold */
}

.page-lottery-games-k3-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-lottery-games-k3-tips__cta-btn {
    font-size: 1.2em;
    padding: 15px 40px;
    min-width: 200px;
}

.page-lottery-games-k3-tips__cta-btn.btn--primary {
    background-color: #0A2342;
    color: #FFD700;
    border-color: #0A2342;
}

.page-lottery-games-k3-tips__cta-btn.btn--primary:hover {
    background-color: #1A3A5D;
    border-color: #1A3A5D;
    color: #FFD700;
}

.page-lottery-games-k3-tips__cta-btn.btn--secondary {
    background-color: transparent;
    color: #0A2342;
    border-color: #0A2342;
}

.page-lottery-games-k3-tips__cta-btn.btn--secondary:hover {
    background-color: #0A2342;
    color: #FFD700;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-lottery-games-k3-tips__hero-title {
        font-size: 3em;
    }
    .page-lottery-games-k3-tips__hero-description {
        font-size: 1.2em;
    }
    .page-lottery-games-k3-tips h1 {
        font-size: 2.8em;
    }
    .page-lottery-games-k3-tips h2 {
        font-size: 2em;
    }
    .page-lottery-games-k3-tips h3 {
        font-size: 1.6em;
    }
    .page-lottery-games-k3-tips__strategy-grid,
    .page-lottery-games-k3-tips__benefits-grid,
    .page-lottery-games-k3-tips__list--columns {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-lottery-games-k3-tips__hero {
        height: 500px;
    }
    .page-lottery-games-k3-tips__hero-title {
        font-size: 2.5em;
    }
    .page-lottery-games-k3-tips__hero-description {
        font-size: 1.1em;
    }
    .page-lottery-games-k3-tips h1 {
        font-size: 2.2em;
    }
    .page-lottery-games-k3-tips h2 {
        font-size: 1.8em;
    }
    .page-lottery-games-k3-tips h3 {
        font-size: 1.4em;
    }
    .page-lottery-games-k3-tips p {
        font-size: 1em;
    }
    .page-lottery-games-k3-tips__section {
        padding: 40px 0;
    }
    .page-lottery-games-k3-tips__strategy-card,
    .page-lottery-games-k3-tips__benefit-item {
        padding: 20px;
    }
    .page-lottery-games-k3-tips__cta {
        padding: 60px 0;
    }
    .page-lottery-games-k3-tips__cta-title {
        font-size: 2.2em;
    }
    .page-lottery-games-k3-tips__cta-description {
        font-size: 1.1em;
    }
    .page-lottery-games-k3-tips__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-lottery-games-k3-tips__cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-lottery-games-k3-tips__hero {
        height: 400px;
    }
    .page-lottery-games-k3-tips__hero-title {
        font-size: 1.8em;
    }
    .page-lottery-games-k3-tips__hero-description {
        font-size: 0.95em;
    }
    .page-lottery-games-k3-tips h1 {
        font-size: 1.8em;
    }
    .page-lottery-games-k3-tips h2 {
        font-size: 1.5em;
    }
    .page-lottery-games-k3-tips h3 {
        font-size: 1.2em;
    }
    .page-lottery-games-k3-tips__hero-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-lottery-games-k3-tips__section {
        padding: 30px 0;
    }
    .page-lottery-games-k3-tips__cta-title {
        font-size: 1.8em;
    }
    .page-lottery-games-k3-tips__cta-description {
        font-size: 1em;
    }
}