/* style/app-download-android-installation-tutorial.css */

/* Base Styles for the page */
.page-app-download-android-installation-tutorial {
    font-family: 'Arial', sans-serif;
    color: #2C3E50; /* Deep Navy Blue for text */
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-app-download-android-installation-tutorial__hero {
    background: linear-gradient(135deg, #FFD700 0%, #2C3E50 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-app-download-android-installation-tutorial__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-app-download-android-installation-tutorial__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.page-app-download-android-installation-tutorial__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-android-installation-tutorial__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-app-download-android-installation-tutorial__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-app-download-android-installation-tutorial__section--dark {
    background-color: #2C3E50;
    color: #f8f8f8;
}

.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__section-title,
.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__step-heading,
.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__faq-heading {
    color: #FFD700;
}

.page-app-download-android-installation-tutorial__section-title {
    font-size: 2em;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-app-download-android-installation-tutorial__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-app-download-android-installation-tutorial__text-center {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.page-app-download-android-installation-tutorial__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-app-download-android-installation-tutorial__btn--primary {
    background-color: #FFD700;
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-android-installation-tutorial__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-app-download-android-installation-tutorial__btn--secondary {
    background-color: #2C3E50;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.page-app-download-android-installation-tutorial__btn--secondary:hover {
    background-color: #3f5872;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
}

.page-app-download-android-installation-tutorial__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-app-download-android-installation-tutorial__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-android-installation-tutorial__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-android-installation-tutorial__feature-heading {
    font-size: 1.4em;
    color: #2C3E50;
    margin-bottom: 15px;
}

.page-app-download-android-installation-tutorial__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-app-download-android-installation-tutorial__step-item {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__step-item {
    background-color: #3a5068; /* Slightly lighter navy for contrast */
    color: #f8f8f8;
}

.page-app-download-android-installation-tutorial__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFD700;
    color: #2C3E50;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
    border: 3px solid #fff;
}

.page-app-download-android-installation-tutorial__step-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2C3E50;
}

.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__step-heading {
    color: #FFD700;
}

.page-app-download-android-installation-tutorial__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-app-download-android-installation-tutorial__faq {
    margin-top: 40px;
}

.page-app-download-android-installation-tutorial__faq-item {
    background-color: #fefefe;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__faq-item {
    background-color: #3a5068;
    color: #f8f8f8;
}

.page-app-download-android-installation-tutorial__faq-heading {
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
}

.page-app-download-android-installation-tutorial__section--dark .page-app-download-android-installation-tutorial__faq-heading {
    color: #FFD700;
}

.page-app-download-android-installation-tutorial__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-app-download-android-installation-tutorial__cta-bottom p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-app-download-android-installation-tutorial__cta-final {
    background-color: #2C3E50;
    color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-app-download-android-installation-tutorial__cta-final .page-app-download-android-installation-tutorial__section-title {
    color: #FFD700;
}

.page-app-download-android-installation-tutorial__cta-final .page-app-download-android-installation-tutorial__section-title::after {
    background-color: #f8f8f8;
}

.page-app-download-android-installation-tutorial__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-app-download-android-installation-tutorial__cta-buttons .page-app-download-android-installation-tutorial__btn {
    min-width: 200px;
}

.page-app-download-android-installation-tutorial__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #FFD700;
    color: #2C3E50;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 1000;
    display: none; /* Hidden by default, shown by JS */
    animation: slideIn 0.5s forwards;
    border: 2px solid #2C3E50;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-app-download-android-installation-tutorial__floating-ad-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #2C3E50;
    cursor: pointer;
    line-height: 1;
}

.page-app-download-android-installation-tutorial__floating-ad-close:hover {
    color: #000;
}

.page-app-download-android-installation-tutorial__floating-ad-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #2C3E50;
}

.page-app-download-android-installation-tutorial__floating-ad-text {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: #2C3E50;
}

.page-app-download-android-installation-tutorial__floating-ad .page-app-download-android-installation-tutorial__btn {
    width: 100%;
    box-sizing: border-box;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-app-download-android-installation-tutorial__section--dark .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-app-download-android-installation-tutorial__title {
        font-size: 2.2em;
    }

    .page-app-download-android-installation-tutorial__subtitle {
        font-size: 1em;
    }

    .page-app-download-android-installation-tutorial__section-title {
        font-size: 1.8em;
    }

    .page-app-download-android-installation-tutorial__feature-grid,
    .page-app-download-android-installation-tutorial__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-app-download-android-installation-tutorial__floating-ad {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }

    .page-app-download-android-installation-tutorial__cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-app-download-android-installation-tutorial__title {
        font-size: 1.8em;
    }

    .page-app-download-android-installation-tutorial__section-title {
        font-size: 1.5em;
    }

    .page-app-download-android-installation-tutorial__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}