/* style/lottery-poker-ticket.css */

.page-lottery-poker-ticket {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E5E5E5; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
}

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

.page-lottery-poker-ticket__section {
    padding: 60px 0;
    text-align: center;
}

.page-lottery-poker-ticket__section:nth-child(even) {
    background-color: #2a3342; /* Slightly lighter dark background for contrast */
}

.page-lottery-poker-ticket__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475e 100%); /* Gradient background for hero */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-lottery-poker-ticket__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-poker-ticket__hero-description {
    font-size: 1.3em;
    color: #E5E5E5;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-lottery-poker-ticket__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15; /* Subtle background image */
}

.page-lottery-poker-ticket__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-lottery-poker-ticket__hero-section .page-lottery-poker-ticket__container {
    position: relative;
    z-index: 1;
}

.page-lottery-poker-ticket__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-lottery-poker-ticket__text-content {
    font-size: 1.1em;
    color: #CCCCCC; /* Lighter grey for body text */
    margin-bottom: 20px;
    text-align: left;
}

.page-lottery-poker-ticket__image-row {
    margin-top: 40px;
}

.page-lottery-poker-ticket__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

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

.page-lottery-poker-ticket__feature-item,
.page-lottery-poker-ticket__step-item {
    background-color: #2a3342; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-poker-ticket__feature-item:hover,
.page-lottery-poker-ticket__step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-lottery-poker-ticket__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-lottery-poker-ticket__feature-description {
    font-size: 1em;
    color: #CCCCCC;
}

.page-lottery-poker-ticket__step-number {
    font-size: 2.5em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: #1A202C;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #FFD700;
}

.page-lottery-poker-ticket__step-title {
    font-size: 1.8em;
    color: #E5E5E5;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-lottery-poker-ticket__step-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-lottery-poker-ticket__step-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-top: 15px;
    border-radius: 8px;
}

.page-lottery-poker-ticket__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
}

.page-lottery-poker-ticket__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-lottery-poker-ticket__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

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

.page-lottery-poker-ticket__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-lottery-poker-ticket__btn--app {
    background-color: #333;
    color: #E5E5E5;
    border: 1px solid #555;
    display: inline-flex;
    align-items: center;
    margin: 10px;
}

.page-lottery-poker-ticket__btn--app:hover {
    background-color: #555;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-lottery-poker-ticket__app-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Ensure icons are visible on dark background */
}

.page-lottery-poker-ticket__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-lottery-poker-ticket__feature-list,
.page-lottery-poker-ticket__strategy-list,
.page-lottery-poker-ticket__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-lottery-poker-ticket__feature-list li,
.page-lottery-poker-ticket__strategy-list li,
.page-lottery-poker-ticket__promo-list li {
    background-color: #2a3342;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #CCCCCC;
    display: flex;
    align-items: flex-start;
}

.page-lottery-poker-ticket__feature-list li::before,
.page-lottery-poker-ticket__strategy-list li::before,
.page-lottery-poker-ticket__promo-list li::before {
    content: '✅'; /* Checkmark icon */
    margin-right: 15px;
    font-size: 1.2em;
    color: #FFD700;
    line-height: 1;
}

.page-lottery-poker-ticket__promo-list strong {
    color: #FFD700;
}

.page-lottery-poker-ticket__app-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.page-lottery-poker-ticket__app-image {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-lottery-poker-ticket__hero-title {
        font-size: 2.5em;
    }

    .page-lottery-poker-ticket__hero-description {
        font-size: 1em;
    }

    .page-lottery-poker-ticket__section-title {
        font-size: 2em;
    }

    .page-lottery-poker-ticket__features-grid,
    .page-lottery-poker-ticket__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-lottery-poker-ticket__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-lottery-poker-ticket__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-lottery-poker-ticket__hero-title {
        font-size: 2em;
    }

    .page-lottery-poker-ticket__section-title {
        font-size: 1.8em;
    }

    .page-lottery-poker-ticket__feature-title,
    .page-lottery-poker-ticket__step-title {
        font-size: 1.4em;
    }

    .page-lottery-poker-ticket__hero-section {
        padding: 80px 0;
    }
}