/* Main CTA Button below title */
.mobile-roadmap-main-cta {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 32px;
    padding: 16px 24px;
    border: none;
    border-radius: 65px;
    border: 1px solid #4D4D6E;
    background: linear-gradient(135deg, #FF7700 0%, #FF7200 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-roadmap-main-cta i {
    font-size: 24px;
}

.mobile-roadmap-main-cta:hover {
    box-shadow: 0 6px 20px rgba(33, 70, 220, 0.5);
    transform: translateY(-2px);
}

.mobile-roadmap-main-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Load More Button - centered with border and box */
.mobile-load-more-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 32px 0;
}

.mobile-load-more-btn {
    padding: 10px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-load-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.mobile-load-more-btn:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-load-more-btn i {
    font-size: 16px;
}

/* Sparkle Icon */
.sparkle-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url('/m_common/img/humbleicon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-ai-coach-header .sparkle-icon {
    width: 20px;
    height: 20px;
}

/* Fallback if SVG not found - use emoji */
.sparkle-icon:empty::before {
    content: '✨';
    font-size: 20px;
    display: block;
    line-height: 24px;
}

