/* style/app-download-android-guide.css */
/* 页面完整样式代码 - 注意：所有选择器必须添加页面前缀 */

/* General styles for the page content area */
.page-app-download-android-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A2239; /* Primary dark background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Hero Section */
.page-app-download-android-guide__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure sufficient height */
}

.page-app-download-android-guide__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: 0;
    width: 40%; /* Adjust size */
    max-width: 500px;
    opacity: 0.7;
    z-index: 0;
    display: none; /* Hidden by default, show on larger screens */
}

.page-app-download-android-guide__hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .page-app-download-android-guide__hero-image-wrapper {
        display: block;
    }
    .page-app-download-android-guide__hero .page-app-download-android-guide__container {
        position: relative;
        z-index: 1;
        text-align: left;
        max-width: 600px; /* Content takes less width */
        margin-right: auto;
        margin-left: 10%; /* Push content to left */
    }
}


.page-app-download-android-guide__hero-title {
    font-size: 3em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-app-download-android-guide__hero-subtitle {
    font-size: 1.2em;
    color: #C0C0C0; /* Lighter grey for subtitle */
    margin-bottom: 40px;
}

/* Section general styles */
.page-app-download-android-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-app-download-android-guide__section:nth-of-type(even) {
    background-color: #071a2b; /* Slightly lighter dark blue for contrast */
}

.page-app-download-android-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-app-download-android-guide__section-description {
    font-size: 1.1em;
    color: #B0B0B0; /* Light grey for descriptions */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}