:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-color-light: #F8F8F8;
    --text-color-dark: #333333;
    --background-light: #FFFFFF;
    --background-dark: #071C40; /* Slightly darker than primary for contrast */
    --border-color: #DCDCDC;
}

.page-game-lobby-lottery-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

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

.page-game-lobby-lottery-tips__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A3E8A 100%); /* Darker blue gradient */
    color: var(--text-color-light);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-game-lobby-lottery-tips__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-game-lobby-lottery-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-game-lobby-lottery-tips__hero-title .highlight {
    color: var(--secondary-color);
}

.page-game-lobby-lottery-tips__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-game-lobby-lottery-tips__hero-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    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-game-lobby-lottery-tips__hero-cta:hover {
    background-color: #FFC72C; /* Slightly brighter gold */
    transform: translateY(-3px);
}

.page-game-lobby-lottery-tips__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 600px;
    opacity: 0.2;
    z-index: 0;
}

.page-game-lobby-lottery-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-game-lobby-lottery-tips__section {
    padding: 60px 0;
}

.page-game-lobby-lottery-tips__section:nth-of-type(even) {
    background-color: #F9F9F9;
}

.page-game-lobby-lottery-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-lobby-lottery-tips__section-title .highlight {
    color: var(--secondary-color);
}

.page-game-lobby-lottery-tips__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-lobby-lottery-tips__text-block .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-game-lobby-lottery-tips__inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-game-lobby-lottery-tips__inline-link:hover {
    color: var(--secondary-color);
}

.page-game-lobby-lottery-tips__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-game-lobby-lottery-tips__card {
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-game-lobby-lottery-tips__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-lottery-tips__card-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-game-lobby-lottery-tips__card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-lobby-lottery-tips__card-text {
    font-size: 1em;
    color: var(--text-color-dark);
}

.page-game-lobby-lottery-tips__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-game-lobby-lottery-tips__list li {
    background-color: #E8F0FE; /* Light blue background for list items */
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--text-color-dark);
    position: relative;
    padding-left: 45px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-lottery-tips__list li:before {
    content: counter(list-item);
    counter-increment: list-item;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.page-game-lobby-lottery-tips__tip-card {
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-game-lobby-lottery-tips__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-lottery-tips__tip-card-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-game-lobby-lottery-tips__tip-card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-lobby-lottery-tips__tip-card-text {
    font-size: 0.95em;
    color: var(--text-color-dark);
}

.page-game-lobby-lottery-tips__responsible-gaming {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-game-lobby-lottery-tips__responsible-gaming .page-game-lobby-lottery-tips__section-title {
    color: var(--secondary-color);
}

.page-game-lobby-lottery-tips__responsible-gaming .page-game-lobby-lottery-tips__text-block {
    color: var(--text-color-light);
}

.page-game-lobby-lottery-tips__responsible-gaming .highlight {
    color: var(--secondary-color);
}

.page-game-lobby-lottery-tips__cta-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
    padding: 80px 0;
}

.page-game-lobby-lottery-tips__cta-title {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-lobby-lottery-tips__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-lobby-lottery-tips__cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-lottery-tips__cta-btn.primary-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-game-lobby-lottery-tips__cta-btn.primary-btn:hover {
    background-color: #FFC72C; /* Slightly brighter gold */
    transform: translateY(-3px);
}

.page-game-lobby-lottery-tips__cta-btn.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-game-lobby-lottery-tips__cta-btn.secondary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-game-lobby-lottery-tips__faq {
    background-color: #F0F5F9;
}

.page-game-lobby-lottery-tips__accordion {
    margin-top: 30px;
}

.page-game-lobby-lottery-tips__accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-game-lobby-lottery-tips__accordion-header {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.page-game-lobby-lottery-tips__accordion-header:hover {
    background-color: #1A3E8A;
}

.page-game-lobby-lottery-tips__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.page-game-lobby-lottery-tips__accordion-header.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-game-lobby-lottery-tips__accordion-body {
    padding: 0 25px;
    background-color: var(--background-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-lobby-lottery-tips__accordion-body.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-game-lobby-lottery-tips__accordion-body p {
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.page-game-lobby-lottery-tips__accordion-body .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-lobby-lottery-tips__hero-title {
        font-size: 2.8em;
    }

    .page-game-lobby-lottery-tips__hero-subtitle {
        font-size: 1.2em;
    }

    .page-game-lobby-lottery-tips__hero-image-wrapper {
        width: 50%;
        max-width: 500px;
    }

    .page-game-lobby-lottery-tips__section-title {
        font-size: 2em;
    }

    .page-game-lobby-lottery-tips__cta-title {
        font-size: 2.2em;
    }

    .page-game-lobby-lottery-tips__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-lottery-tips__hero {
        padding: 60px 0 20px;
        flex-direction: column-reverse;
    }

    .page-game-lobby-lottery-tips__hero-image-wrapper {
        position: relative;
        width: 70%;
        max-width: 400px;
        margin-bottom: 30px;
        opacity: 1;
    }

    .page-game-lobby-lottery-tips__hero-title {
        font-size: 2.2em;
    }

    .page-game-lobby-lottery-tips__hero-subtitle {
        font-size: 1em;
    }

    .page-game-lobby-lottery-tips__section {
        padding: 40px 0;
    }

    .page-game-lobby-lottery-tips__grid {
        grid-template-columns: 1fr;
    }

    .page-game-lobby-lottery-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-game-lobby-lottery-tips__cta-btn {
        width: 80%;
        max-width: 300px;
    }

    .page-game-lobby-lottery-tips__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-game-lobby-lottery-tips__accordion-header::after {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .page-game-lobby-lottery-tips__hero-title {
        font-size: 1.8em;
    }
    .page-game-lobby-lottery-tips__hero-subtitle {
        font-size: 0.9em;
    }
    .page-game-lobby-lottery-tips__section-title {
        font-size: 1.8em;
    }
    .page-game-lobby-lottery-tips__cta-title {
        font-size: 1.8em;
    }
    .page-game-lobby-lottery-tips__list li {
        font-size: 1em;
        padding-left: 40px;
    }
    .page-game-lobby-lottery-tips__list li:before {
        width: 25px;
        height: 25px;
        font-size: 0.8em;
        left: 8px;
    }
}