/* style/resources-suncity888-app-download-guide.css */

:root {
    --suncity888-gold: #FFD700;
    --suncity888-dark-blue: #1A202C;
    --suncity888-text-light: #F8F8F8;
    --suncity888-text-dark: #1A202C;
    --suncity888-bg-light: #F0F2F5;
    --suncity888-bg-dark: #1A202C;
}

.page-resources-suncity888-app-download-guide {
    font-family: 'Arial', sans-serif;
    color: var(--suncity888-text-dark);
    line-height: 1.6;
    background-color: var(--suncity888-bg-light);
}

.page-resources-suncity888-app-download-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-suncity888-app-download-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-suncity888-app-download-guide__section:nth-of-type(even) {
    background-color: #e6e8eb; /* Slightly darker light background */
}

.page-resources-suncity888-app-download-guide__section-title {
    font-size: 2.8em;
    color: var(--suncity888-dark-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-suncity888-app-download-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--suncity888-gold);
    border-radius: 2px;
}

.page-resources-suncity888-app-download-guide__section-intro {
    font-size: 1.1em;
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-resources-suncity888-app-download-guide__hero-section {
    background: linear-gradient(135deg, var(--suncity888-dark-blue), #0f131a);
    color: var(--suncity888-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-suncity888-app-download-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,luxury,dark_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-suncity888-app-download-guide__hero-section .page-resources-suncity888-app-download-guide__container {
    position: relative;
    z-index: 1;
}

.page-resources-suncity888-app-download-guide__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    color: var(--suncity888-gold);
    line-height: 1.2;
}

.page-resources-suncity888-app-download-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-resources-suncity888-app-download-guide__hero-buttons .page-resources-suncity888-app-download-guide__btn {
    margin: 10px;
}

.page-resources-suncity888-app-download-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-resources-suncity888-app-download-guide__btn--primary {
    background-color: var(--suncity888-gold);
    color: var(--suncity888-dark-blue);
    border: 2px solid var(--suncity888-gold);
}

.page-resources-suncity888-app-download-guide__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-suncity888-app-download-guide__btn--secondary {
    background-color: transparent;
    color: var(--suncity888-gold);
    border: 2px solid var(--suncity888-gold);
}

.page-resources-suncity888-app-download-guide__btn--secondary:hover {
    background-color: var(--suncity888-gold);
    color: var(--suncity888-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-suncity888-app-download-guide__hero-image {
    margin-top: 50px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Download Section */
.page-resources-suncity888-app-download-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-resources-suncity888-app-download-guide__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-suncity888-app-download-guide__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-suncity888-app-download-guide__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-resources-suncity888-app-download-guide__feature-title {
    font-size: 1.5em;
    color: var(--suncity888-dark-blue);
    margin-bottom: 15px;
}

.page-resources-suncity888-app-download-guide__feature-text {
    font-size: 1em;
    color: #555;
}

/* Download Guide Section */
.page-resources-suncity888-app-download-guide__download-guide {
    background-color: var(--suncity888-bg-dark);
    color: var(--suncity888-text-light);
}

.page-resources-suncity888-app-download-guide__download-guide .page-resources-suncity888-app-download-guide__section-title,
.page-resources-suncity888-app-download-guide__download-guide .page-resources-suncity888-app-download-guide__section-intro {
    color: var(--suncity888-text-light);
}

.page-resources-suncity888-app-download-guide__download-guide .page-resources-suncity888-app-download-guide__section-title::after {
    background-color: var(--suncity888-gold);
}

.page-resources-suncity888-app-download-guide__platform-guide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 40px;
    text-align: left;
}

.page-resources-suncity888-app-download-guide__platform-guide--reverse {
    flex-direction: row-reverse;
}

.page-resources-suncity888-app-download-guide__platform-guide--reverse .page-resources-suncity888-app-download-guide__guide-steps {
    text-align: right;
}

.page-resources-suncity888-app-download-guide__platform-title {
    font-size: 2em;
    color: var(--suncity888-gold);
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.page-resources-suncity888-app-download-guide__guide-steps {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-resources-suncity888-app-download-guide__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.page-resources-suncity888-app-download-guide__platform-guide--reverse .page-resources-suncity888-app-download-guide__step-item {
    flex-direction: row-reverse;
}

.page-resources-suncity888-app-download-guide__step-number {
    background-color: var(--suncity888-gold);
    color: var(--suncity888-dark-blue);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    margin-right: 15px;
}

.page-resources-suncity888-app-download-guide__platform-guide--reverse .page-resources-suncity888-app-download-guide__step-number {
    margin-left: 15px;
    margin-right: 0;
}

.page-resources-suncity888-app-download-guide__step-text {
    font-size: 1.1em;
    color: var(--suncity888-text-light);
}

.page-resources-suncity888-app-download-guide__step-text strong {
    color: var(--suncity888-gold);
}

.page-resources-suncity888-app-download-guide__link {
    color: var(--suncity888-gold);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-suncity888-app-download-guide__link:hover {
    text-decoration: underline;
}

.page-resources-suncity888-app-download-guide__platform-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-suncity888-app-download-guide__download-cta {
    margin-top: 80px;
    padding: 40px;
    background-color: var(--suncity888-gold);
    border-radius: 10px;
    color: var(--suncity888-dark-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-resources-suncity888-app-download-guide__download-cta-text {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 0;
}

.page-resources-suncity888-app-download-guide__download-cta .page-resources-suncity888-app-download-guide__btn--primary {
    background-color: var(--suncity888-dark-blue);
    color: var(--suncity888-gold);
    border-color: var(--suncity888-dark-blue);
}

.page-resources-suncity888-app-download-guide__download-cta .page-resources-suncity888-app-download-guide__btn--primary:hover {
    background-color: #0f131a;
    border-color: #0f131a;
}

/* FAQ Section */
.page-resources-suncity888-app-download-guide__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.page-resources-suncity888-app-download-guide__faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-suncity888-app-download-guide__faq-question {
    font-size: 1.4em;
    color: var(--suncity888-dark-blue);
    margin-bottom: 10px;
}

.page-resources-suncity888-app-download-guide__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-resources-suncity888-app-download-guide__support-cta {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--suncity888-dark-blue);
    border-radius: 10px;
    color: var(--suncity888-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-resources-suncity888-app-download-guide__support-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.page-resources-suncity888-app-download-guide__support-text {
    font-size: 1.2em;
    color: var(--suncity888-text-light);
    margin-bottom: 0;
}

.page-resources-suncity888-app-download-guide__support-cta .page-resources-suncity888-app-download-guide__btn--secondary {
    background-color: var(--suncity888-gold);
    color: var(--suncity888-dark-blue);
    border-color: var(--suncity888-gold);
}

.page-resources-suncity888-app-download-guide__support-cta .page-resources-suncity888-app-download-guide__btn--secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Tips Section */
.page-resources-suncity888-app-download-guide__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-resources-suncity888-app-download-guide__tips-list li {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-resources-suncity888-app-download-guide__tips-heading {
    font-size: 1.3em;
    color: var(--suncity888-dark-blue);
    margin-bottom: 10px;
}

.page-resources-suncity888-app-download-guide__tips-heading + p {
    color: #555;
}

.page-resources-suncity888-app-download-guide__tips-image {
    margin-top: 40px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Registration CTA Section */
.page-resources-suncity888-app-download-guide__registration-cta {
    background-color: var(--suncity888-dark-blue);
    color: var(--suncity888-text-light);
}

.page-resources-suncity888-app-download-guide__registration-cta .page-resources-suncity888-app-download-guide__section-title,
.page-resources-suncity888-app-download-guide__registration-cta .page-resources-suncity888-app-download-guide__section-intro {
    color: var(--suncity888-text-light);
}

.page-resources-suncity888-app-download-guide__registration-cta .page-resources-suncity888-app-download-guide__section-title::after {
    background-color: var(--suncity888-gold);
}

.page-resources-suncity888-app-download-guide__registration-cta .page-resources-suncity888-app-download-guide__btn--primary {
    background-color: var(--suncity888-gold);
    color: var(--suncity888-dark-blue);
    border-color: var(--suncity888-gold);
    margin-top: 30px;
}

.page-resources-suncity888-app-download-guide__registration-image {
    margin-top: 40px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Conclusion Section */
.page-resources-suncity888-app-download-guide__conclusion .page-resources-suncity888-app-download-guide__btn--primary {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-suncity888-app-download-guide__hero-title {
        font-size: 3em;
    }
    .page-resources-suncity888-app-download-guide__section-title {
        font-size: 2.2em;
    }
    .page-resources-suncity888-app-download-guide__platform-guide {
        flex-direction: column;
    }
    .page-resources-suncity888-app-download-guide__platform-guide--reverse {
        flex-direction: column;
    }
    .page-resources-suncity888-app-download-guide__platform-guide--reverse .page-resources-suncity888-app-download-guide__guide-steps {
        text-align: left;
    }
    .page-resources-suncity888-app-download-guide__platform-guide--reverse .page-resources-suncity888-app-download-guide__step-item {
        flex-direction: row;
    }
    .page-resources-suncity888-app-download-guide__platform-guide--reverse .page-resources-suncity888-app-download-guide__step-number {
        margin-right: 15px;
        margin-left: 0;
    }
    .page-resources-suncity888-app-download-guide__tips-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-resources-suncity888-app-download-guide__hero-title {
        font-size: 2.5em;
    }
    .page-resources-suncity888-app-download-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-suncity888-app-download-guide__section {
        padding: 40px 0;
    }
    .page-resources-suncity888-app-download-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-suncity888-app-download-guide__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-suncity888-app-download-guide__download-cta-text {
        font-size: 1.5em;
    }
    .page-resources-suncity888-app-download-guide__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-suncity888-app-download-guide__hero-title {
        font-size: 2em;
    }
    .page-resources-suncity888-app-download-guide__hero-buttons {
        flex-direction: column;
    }
    .page-resources-suncity888-app-download-guide__btn {
        width: 100%;
        max-width: 250px;
    }
    .page-resources-suncity888-app-download-guide__download-cta-text {
        font-size: 1.2em;
    }
    .page-resources-suncity888-app-download-guide__platform-image {
        min-width: unset;
        width: 100%;
    }
}