/* style/games-lottery.css */
.page-games-lottery {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

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

.page-games-lottery__hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #3A5070 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-games-lottery__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-games-lottery__hero-section .page-games-lottery__container {
    position: relative;
    z-index: 1;
}

.page-games-lottery__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.page-games-lottery__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-games-lottery__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-games-lottery__button--primary {
    background-color: #FFD700;
    color: #1A2B4C;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-lottery__button--primary:hover {
    background-color: #e0b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-games-lottery__button--secondary {
    background-color: #1A2B4C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-games-lottery__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-lottery__button--tertiary {
    background-color: transparent;
    color: #1A2B4C;
    border: 2px solid #1A2B4C;
}

.page-games-lottery__button--tertiary:hover {
    background-color: #1A2B4C;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-games-lottery__section {
    padding: 80px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-games-lottery__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-games-lottery__section-title {
    font-size: 2.5em;
    color: #1A2B4C;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-games-lottery__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 50px auto;
    color: #555;
}

.page-games-lottery__intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-games-lottery__intro-content p {
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
    color: #444;
}

.page-games-lottery__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-games-lottery__image--left {
    flex: 1;
    min-width: 300px;
    order: 2;
}

.page-games-lottery__intro-content p:first-of-type {
    order: 1;
}

.page-games-lottery__grid {
    display: grid;
    gap: 30px;
}

.page-games-lottery__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-games-lottery__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-games-lottery__card, .page-games-lottery__offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.page-games-lottery__card:hover, .page-games-lottery__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-games-lottery__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-games-lottery__card-title, .page-games-lottery__offer-title {
    font-size: 1.6em;
    color: #1A2B4C;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-games-lottery__card-description, .page-games-lottery__offer-description {
    color: #555;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-games-lottery__step {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-games-lottery__step-icon {
    width: 60px;
    height: 60px;
    background-color: #1A2B4C;
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-games-lottery__step-title {
    font-size: 1.4em;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.page-games-lottery__step p {
    color: #666;
    margin-bottom: 20px;
}

.page-games-lottery__strategy .page-games-lottery__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-games-lottery__strategy .page-games-lottery__image--right {
    flex: 1;
    min-width: 350px;
    order: 2;
}

.page-games-lottery__strategy .page-games-lottery__text-content {
    flex: 2;
    min-width: 350px;
    order: 1;
}

.page-games-lottery__subtitle {
    font-size: 1.5em;
    color: #1A2B4C;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-games-lottery__subtitle:first-of-type {
    margin-top: 0;
}

.page-games-lottery__strategy p {
    color: #444;
    margin-bottom: 15px;
}

.page-games-lottery__app-download {
    text-align: center;
    background-color: #1A2B4C;
    color: #ffffff;
}

.page-games-lottery__app-download .page-games-lottery__section-title {
    color: #ffffff;
}

.page-games-lottery__app-download .page-games-lottery__section-title::after {
    background-color: #FFD700;
}

.page-games-lottery__app-download .page-games-lottery__section-description {
    color: #e0e0e0;
}

.page-games-lottery__image--center {
    max-width: 300px;
    margin: 40px auto;
    display: block;
}

.page-games-lottery__accordion {
    margin-top: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.page-games-lottery__accordion-item {
    border-bottom: 1px solid #eee;
}

.page-games-lottery__accordion-item:last-child {
    border-bottom: none;
}

.page-games-lottery__accordion-header {
    background-color: #f9f9f9;
    color: #1A2B4C;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-games-lottery__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-games-lottery__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-lottery__accordion-header:hover {
    background-color: #f0f0f0;
}

.page-games-lottery__accordion-content {
    padding: 0 30px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-games-lottery__accordion-content p {
    padding: 20px 0;
    color: #555;
    font-size: 1.05em;
}

.page-games-lottery__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 0;
    padding-bottom: 20px;
}

.page-games-lottery__cta-bottom {
    background: linear-gradient(135deg, #FFD700 0%, #e0b800 100%);
    color: #1A2B4C;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-games-lottery__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2B4C;
}

.page-games-lottery__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-games-lottery__cta-buttons .page-games-lottery__button {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-games-lottery__hero-title {
        font-size: 2.8em;
    }
    .page-games-lottery__hero-description {
        font-size: 1.1em;
    }
    .page-games-lottery__section-title {
        font-size: 2em;
    }
    .page-games-lottery__intro-content, .page-games-lottery__strategy .page-games-lottery__content-block {
        flex-direction: column;
    }
    .page-games-lottery__image--left, .page-games-lottery__strategy .page-games-lottery__image--right {
        order: initial;
    }
    .page-games-lottery__strategy .page-games-lottery__text-content {
        order: initial;
    }
    .page-games-lottery__grid--3-cols, .page-games-lottery__grid--2-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-games-lottery__hero-section, .page-games-lottery__section, .page-games-lottery__cta-bottom {
        padding: 60px 0;
    }
    .page-games-lottery__hero-title {
        font-size: 2.2em;
    }
    .page-games-lottery__section-title {
        font-size: 1.8em;
    }
    .page-games-lottery__cta-title {
        font-size: 2.2em;
    }
    .page-games-lottery__cta-buttons .page-games-lottery__button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    .page-games-lottery__card, .page-games-lottery__offer-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .page-games-lottery__hero-title {
        font-size: 1.8em;
    }
    .page-games-lottery__hero-description {
        font-size: 1em;
    }
    .page-games-lottery__section-title {
        font-size: 1.5em;
    }
    .page-games-lottery__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-games-lottery__steps {
        grid-template-columns: 1fr;
    }
    .page-games-lottery__cta-title {
        font-size: 1.8em;
    }
    .page-games-lottery__cta-description {
        font-size: 1em;
    }
    .page-games-lottery__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}