/* style/download-center-android-apk.css */

.page-download-center-android-apk {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-download-center-android-apk__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-download-center-android-apk__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    position: relative;
    z-index: 1;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-android-apk__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-download-center-android-apk__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-download-center-android-apk__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-download-center-android-apk__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue text on gold */
}

.page-download-center-android-apk__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-download-center-android-apk__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-download-center-android-apk__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-download-center-android-apk__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue for titles */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-download-center-android-apk__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-download-center-android-apk__features-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.page-download-center-android-apk__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-download-center-android-apk__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #003366;
}

.page-download-center-android-apk__feature-item:hover {
    transform: translateY(-10px);
}

.page-download-center-android-apk__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 51, 102, 0.3));
}

.page-download-center-android-apk__feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center-android-apk__feature-text {
    color: #555;
}

.page-download-center-android-apk__how-to-download {
    padding: 80px 0;
    background-color: #fff;
}

.page-download-center-android-apk__text-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    color: #444;
}

.page-download-center-android-apk__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-download-center-android-apk__step-item {
    background-color: #fdfdfd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    border: 1px solid #eee;
}

.page-download-center-android-apk__step-number {
    background-color: #003366; /* Dark blue background */
    color: #FFD700; /* Gold number */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: -55px auto 25px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-download-center-android-apk__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-download-center-android-apk__step-text {
    color: #555;
    margin-bottom: 20px;
}

.page-download-center-android-apk__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-android-apk__btn--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-download-center-android-apk__faq-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.page-download-center-android-apk__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-download-center-android-apk__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-download-center-android-apk__faq-question {
    background-color: #003366;
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-download-center-android-apk__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-download-center-android-apk__faq-question.active::after {
    transform: rotate(45deg);
}

.page-download-center-android-apk__faq-answer {
    padding: 20px 25px;
    color: #555;
    background-color: #fff;
    display: none;
    border-top: 1px solid #eee;
}

.page-download-center-android-apk__faq-question.active + .page-download-center-android-apk__faq-answer {
    display: block;
}

.page-download-center-android-apk__cta-section {
    background: linear-gradient(45deg, #003366, #004488);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-android-apk__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-download-center-android-apk__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-android-apk__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-download-center-android-apk__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-download-center-android-apk__hero-title {
        font-size: 2.8em;
    }
    .page-download-center-android-apk__hero-description {
        font-size: 1.2em;
    }
    .page-download-center-android-apk__section-title {
        font-size: 2em;
    }
    .page-download-center-android-apk__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-download-center-android-apk__hero-section {
        padding: 80px 0;
    }
    .page-download-center-android-apk__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-android-apk__hero-description {
        font-size: 1em;
    }
    .page-download-center-android-apk__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-android-apk__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-download-center-android-apk__features-grid,
    .page-download-center-android-apk__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-download-center-android-apk__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-download-center-android-apk__feature-item,
    .page-download-center-android-apk__step-item {
        padding: 25px;
    }
    .page-download-center-android-apk__step-number {
        margin: -45px auto 20px;
    }
    .page-download-center-android-apk__cta-title {
        font-size: 1.8em;
    }
    .page-download-center-android-apk__cta-description {
        font-size: 1.1em;
    }
    .page-download-center-android-apk__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-download-center-android-apk__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-download-center-android-apk__hero-section {
        padding: 60px 0;
    }
    .page-download-center-android-apk__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-android-apk__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-download-center-android-apk__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-download-center-android-apk__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-download-center-android-apk__feature-title {
        font-size: 1.3em;
    }
    .page-download-center-android-apk__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        margin: -40px auto 15px;
    }
    .page-download-center-android-apk__step-title {
        font-size: 1.4em;
    }
    .page-download-center-android-apk__cta-title {
        font-size: 1.6em;
    }
    .page-download-center-android-apk__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}