/* style/resources-2king88-latest-link.css */
.page-resources-2king88-latest-link {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A202C;
    line-height: 1.6;
}

.page-resources-2king88-latest-link .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-2king88-latest-link__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-2king88-latest-link__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-2king88-latest-link__section:nth-of-type(even) {
    background-color: #2a3340;
}

.page-resources-2king88-latest-link__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-resources-2king88-latest-link__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-resources-2king88-latest-link__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-resources-2king88-latest-link__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-resources-2king88-latest-link__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-2king88-latest-link__btn--secondary {
    background-color: #3a4552;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-2king88-latest-link__btn--secondary:hover {
    background-color: #4a5563;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-resources-2king88-latest-link__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-resources-2king88-latest-link__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-resources-2king88-latest-link__btn--inline {
    margin-top: 20px;
}

/* Hero Section */
.page-resources-2king88-latest-link__hero-section {
    background: linear-gradient(135deg, #1A202C, #3a4552);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.page-resources-2king88-latest-link__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_pattern,geometric,dark_luxury]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-2king88-latest-link__hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-right: 50px;
}

.page-resources-2king88-latest-link__hero-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-resources-2king88-latest-link__hero-subtitle {
    font-size: 1.4em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-resources-2king88-latest-link__hero-actions .page-resources-2king88-latest-link__btn {
    margin-right: 15px;
}

.page-resources-2king88-latest-link__hero-image-wrapper {
    position: relative;
    z-index: 1;
    width: 450px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-2king88-latest-link__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Grid */
.page-resources-2king88-latest-link__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 40px;
}

.page-resources-2king88-latest-link__content-grid--reverse {
    grid-template-areas: "image text";
}

.page-resources-2king88-latest-link__content-grid--reverse .page-resources-2king88-latest-link__image-wrapper {
    grid-area: image;
}

.page-resources-2king88-latest-link__content-grid--reverse .page-resources-2king88-latest-link__text-content {
    grid-area: text;
}

.page-resources-2king88-latest-link__text-content h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-2king88-latest-link__text-content p {
    margin-bottom: 15px;
    color: #D0D0D0;
}

.page-resources-2king88-latest-link__text-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-2king88-latest-link__text-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #D0D0D0;
}

.page-resources-2king88-latest-link__text-content ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
}

.page-resources-2king88-latest-link__text-content ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    counter-reset: my-counter;
}

.page-resources-2king88-latest-link__text-content ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    color: #D0D0D0;
}

.page-resources-2king88-latest-link__text-content ol li::before {
    counter-increment: my-counter;
    content: counter(my-counter) ". ";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-2king88-latest-link__image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-2king88-latest-link__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.page-resources-2king88-latest-link__image:hover {
    transform: scale(1.02);
}

/* Download Section */
.page-resources-2king88-latest-link__download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.page-resources-2king88-latest-link__download-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-2king88-latest-link__download-item:hover {
    transform: translateY(-5px);
}

.page-resources-2king88-latest-link__download-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-2king88-latest-link__download-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-resources-2king88-latest-link__download-item p {
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-resources-2king88-latest-link__image-wrapper--mobile {
    grid-column: span 2; /* Occupy 2 columns on larger screens */
    max-width: 400px;
    margin: 20px auto;
}

.page-resources-2king88-latest-link__app-note {
    margin-top: 30px;
    font-style: italic;
    color: #B0B0B0;
}

/* Promotions Section */
.page-resources-2king88-latest-link__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-2king88-latest-link__promo-card {
    background-color: #2a3340;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-resources-2king88-latest-link__promo-card:hover {
    transform: translateY(-5px);
}

.page-resources-2king88-latest-link__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-resources-2king88-latest-link__promo-card h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin: 20px 20px 10px 20px;
}

.page-resources-2king88-latest-link__promo-card p {
    color: #D0D0D0;
    margin: 0 20px 20px 20px;
}

.page-resources-2king88-latest-link__promo-card .page-resources-2king88-latest-link__btn {
    margin: 0 20px 20px 20px;
}

.page-resources-2king88-latest-link__promo-note {
    margin-top: 40px;
    font-style: italic;
    color: #B0B0B0;
}

/* FAQ Section */
.page-resources-2king88-latest-link__faq-item {
    background-color: #2a3340;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-2king88-latest-link__faq-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-resources-2king88-latest-link__faq-item p {
    color: #D0D0D0;
}

/* Call to Action Section */
.page-resources-2king88-latest-link__call-to-action {
    background-color: #1A202C;
    padding: 80px 0;
}

.page-resources-2king88-latest-link__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-2king88-latest-link__hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-resources-2king88-latest-link__hero-content {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .page-resources-2king88-latest-link__hero-title {
        font-size: 3em;
    }

    .page-resources-2king88-latest-link__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-2king88-latest-link__hero-image-wrapper {
        width: 100%;
        height: auto;
        max-width: 500px;
    }

    .page-resources-2king88-latest-link__content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .page-resources-2king88-latest-link__content-grid--reverse {
        grid-template-areas: unset;
    }

    .page-resources-2king88-latest-link__text-content {
        order: 2;
    }

    .page-resources-2king88-latest-link__image-wrapper {
        order: 1;
    }

    .page-resources-2king88-latest-link__text-content ul li::before,
    .page-resources-2king88-latest-link__text-content ol li::before {
        left: 50%;
        transform: translateX(-120%);
    }
    .page-resources-2king88-latest-link__text-content ul li,
    .page-resources-2king88-latest-link__text-content ol li {
        padding-left: 0;
        text-indent: -30px;
        margin-left: 30px;
    }

    .page-resources-2king88-latest-link__download-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-2king88-latest-link__image-wrapper--mobile {
        grid-column: span 1;
    }

    .page-resources-2king88-latest-link__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-2king88-latest-link__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-2king88-latest-link__cta-buttons .page-resources-2king88-latest-link__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-resources-2king88-latest-link__section-title {
        font-size: 2.2em;
    }

    .page-resources-2king88-latest-link__section-description {
        font-size: 1em;
    }

    .page-resources-2king88-latest-link__hero-title {
        font-size: 2.5em;
    }

    .page-resources-2king88-latest-link__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-2king88-latest-link__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-resources-2king88-latest-link__hero-title {
        font-size: 2em;
    }

    .page-resources-2king88-latest-link__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-2king88-latest-link__hero-actions .page-resources-2king88-latest-link__btn {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
}