/* style/download-center-mobile-web.css */
.page-download-center-mobile-web {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-download-center-mobile-web__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-download-center-mobile-web__hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-download-center-mobile-web__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-download-center-mobile-web__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-download-center-mobile-web__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-download-center-mobile-web__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-download-center-mobile-web__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-download-center-mobile-web__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
}

.page-download-center-mobile-web__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-download-center-mobile-web__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-download-center-mobile-web__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-download-center-mobile-web__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-download-center-mobile-web__hero-image-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.page-download-center-mobile-web__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-web__section {
    padding: 60px 0;
}

.page-download-center-mobile-web__section--alt-bg {
    background-color: #f8f8f8;
}

.page-download-center-mobile-web__section--faq-bg {
    background-color: #003366;
    color: #fff;
}

.page-download-center-mobile-web__section-title {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-download-center-mobile-web__section--faq-bg .page-download-center-mobile-web__section-title {
    color: #FFCC00;
}

.page-download-center-mobile-web__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 50px;
    color: #555;
}

.page-download-center-mobile-web__section--faq-bg .page-download-center-mobile-web__section-intro {
    color: #eee;
}

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

.page-download-center-mobile-web__feature-card,
.page-download-center-mobile-web__info-card,
.page-download-center-mobile-web__game-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-download-center-mobile-web__feature-card:hover,
.page-download-center-mobile-web__info-card:hover,
.page-download-center-mobile-web__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-mobile-web__feature-title,
.page-download-center-mobile-web__info-title,
.page-download-center-mobile-web__game-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-mobile-web__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-download-center-mobile-web__step-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
}

.page-download-center-mobile-web__step-number {
    background-color: #FFCC00;
    color: #003366;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 20px;
    border: 3px solid #003366;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-download-center-mobile-web__step-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-download-center-mobile-web__text-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-download-center-mobile-web__text-link:hover {
    color: #FFCC00;
}

.page-download-center-mobile-web__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-download-center-mobile-web__list li {
    background-color: #fff;
    border-left: 5px solid #003366;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-web__list-item-title {
    font-size: 1.3em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center-mobile-web__game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-download-center-mobile-web__game-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-download-center-mobile-web__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-download-center-mobile-web__faq-question {
    font-size: 1.3em;
    color: #FFCC00;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-download-center-mobile-web__faq-answer {
    color: #fff;
}

.page-download-center-mobile-web__cta-section {
    background: #FFCC00;
    padding: 80px 0;
    text-align: center;
    color: #003366;
}

.page-download-center-mobile-web__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-download-center-mobile-web__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-download-center-mobile-web__image-full-width {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-web__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFCC00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.page-download-center-mobile-web__floating-ad:hover {
    transform: translateY(-5px) scale(1.05);
}

.page-download-center-mobile-web__floating-ad a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}

.page-download-center-mobile-web__floating-ad-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-download-center-mobile-web__hero-title {
        font-size: 2.2em;
    }
    .page-download-center-mobile-web__section-title {
        font-size: 1.8em;
    }
    .page-download-center-mobile-web__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-download-center-mobile-web__hero {
        padding: 60px 0;
    }
    .page-download-center-mobile-web__hero-title {
        font-size: 1.8em;
    }
    .page-download-center-mobile-web__hero-description {
        font-size: 1em;
    }
    .page-download-center-mobile-web__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-download-center-mobile-web__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-download-center-mobile-web__section {
        padding: 40px 0;
    }
    .page-download-center-mobile-web__section-title {
        font-size: 1.6em;
    }
    .page-download-center-mobile-web__section-intro {
        font-size: 0.95em;
    }
    .page-download-center-mobile-web__feature-title,
    .page-download-center-mobile-web__info-title,
    .page-download-center-mobile-web__game-title,
    .page-download-center-mobile-web__step-title,
    .page-download-center-mobile-web__list-item-title,
    .page-download-center-mobile-web__faq-question {
        font-size: 1.2em;
    }
    .page-download-center-mobile-web__cta-title {
        font-size: 1.8em;
    }
    .page-download-center-mobile-web__cta-description {
        font-size: 1em;
    }
    .page-download-center-mobile-web__floating-ad {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }
    .page-download-center-mobile-web__floating-ad-icon {
        width: 25px;
        height: 25px;
    }
    .page-download-center-mobile-web__floating-ad-text {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-download-center-mobile-web__hero-title {
        font-size: 1.5em;
    }
    .page-download-center-mobile-web__btn {
        width: 90%;
        padding: 10px 20px;
    }
    .page-download-center-mobile-web__section-title {
        font-size: 1.4em;
    }
    .page-download-center-mobile-web__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
        margin-top: -45px;
    }
    .page-download-center-mobile-web__cta-title {
        font-size: 1.5em;
    }
    .page-download-center-mobile-web__floating-ad {
        bottom: 10px;
        right: 10px;
        padding: 5px 10px;
    }
    .page-download-center-mobile-web__floating-ad-icon {
        width: 20px;
        height: 20px;
    }
    .page-download-center-mobile-web__floating-ad-text {
        font-size: 0.8em;
    }
}